@charset "utf-8";
/* CSS Document */
/*--------------------------------------
 * 以下PC時のCSS↓
 *
----------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
}
html {
	font-size: 62.5%;
}
body {
	color: #1D1D1D;
	font-size: 1.6rem;
	font-family:  "Montserrat","Zen Kaku Gothic New", sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.025em;
	line-height: 1.5;
}
a {
	color: #0000ff;
	transition: all 0.4s;
}
a:hover {
	opacity: .5;
}
img {
	max-width: 100%;
	height: auto;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*--------------------------------------
 *utility
 
----------------------------------------*/
.wrapper {
	padding: 0 40px;
	margin: 0 auto;
	max-width: 1100px;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.wh-text {
	color: #fff;
}
.bl-text {
	color: #0000ff;
}
.bold {
	font-weight: bold;
}
.br-sp {
	display: none;
}
.br-pc {
	display: block;
}
.img-pc {
	display: block;
}
.img-sp {
	display: none;
}
.flex { 
	display: flex; 
}
.flex.row-reverse {
	flex-direction :row-reverse;
}
.image-wrapper {
  overflow: hidden;
	margin-top: 25px;
}
.loop-image {
	width: 100%;
}
.loop-image-right {
  animation: loop-right 10s infinite linear 0.5s both;
}
.loop-image-left {
  animation: loop-left 10s infinite linear 0.5s both;
}
.loop-image img {
	width: 81px;
}
@keyframes loop-right {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-10%);
	}
}
@keyframes loop-left {
	0% {
		transform: translateX(-10%);
	}
	to {
		transform: translateX(100%);
	}
}
.zoomIn{
	animation-name:zoomInAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}
@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}
/*--------------------------------------
 *ページトップ
 *
----------------------------------------*/
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	width: 64px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size:1.2rem;
	font-weight: bold;
	transition:all 0.3s;
	position: relative;
}
#page-top a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f077';
	font-weight: 900;
	font-size: 16px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	margin: auto;
	text-align: center;
}
#page-top a:hover{
	transform: translateY(-15%);
	opacity: 1;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*--------------------------------------
 *sns
 *
----------------------------------------*/
.sns {
	position: fixed;
	top: 50%;
	right: 32px;
	transform: translateY(-50%);
	z-index: 1;
}
.sns li {
	width: 20px;
}
.sns li:nth-of-type(2) {
	padding: 16px 4px;
}
/*--------------------------------------
 *main-visual
 *
----------------------------------------*/
.main-visual {
	height: 100vh;
	background-image: url("../images/back-image/top-image_pc.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.top-nav {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	min-width: 740px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	text-align: center;
}
.top-nav li.nav-item{
	width: 150px;
}
.top-nav li a{
	display: block;
	text-decoration: none;
	color: #fff;
	transition: all 0.4s;
}
.top-nav li a:hover{
	opacity: 0.5;	
}
.top-nav li a p {
	font-weight: bold;
}
.top-nav li.nav-item span{
	display: none;
}
.top-nav li.nav-item a img{
	width: 40px;
	margin: 0 auto 8px;
	display: block;
	filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(1%) hue-rotate(125deg) brightness(106%) contrast(100%);
}
.top-nav .logo_white{
	padding-bottom: 16px;
	width: 224px;
}
/*--------------------------------------
 *header/g-nav
 *
----------------------------------------*/
.g-nav {
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position:fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top:0;
	right: -120%;
	width:100%;
	height: 100vh;/*ナビの高さ*/
	background: rgba(0,0,255,0.7);
	/*動き*/
	transition: all 0.6s;
}
.g-nav.panelactive{
	right: 0;
}
.g-nav .g-nav-list{
	background-color: #fff;
	min-width: 514px;
	height: 100vh;
	right: 0;
	position: absolute;
	background-image: url("../images/back-image/kyoto_sp.png");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	text-align: left;
	padding: 80px;
}
.g-nav ul .logo-nav {
	width: 240px;
	margin: 0 auto 80px;
} 
.g-nav ul.tel-nav {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	justify-content: center;
	font-size: 1.8rem;
}
.g-nav ul.tel-nav li:first-of-type {
	width: 50%;
	text-align: right;
	padding-right: 6%;
}
.g-nav ul.tel-nav li:nth-of-type(2) {
	width: 50%;
	padding-left: 6%;
}
.g-nav ul.tel-nav .btn-mail {
	line-height: 3;
}
.g-nav li a {
	font-weight: bold;
}
.g-nav li a p{
	font-weight: bold;
}
.g-nav ul.tel-nav li a img{
	filter: invert(8%) sepia(100%) saturate(7139%) hue-rotate(248deg) brightness(103%) contrast(143%);
	width: 20px;
	vertical-align: sub;
	margin-right: 8px;
}
.g-nav ul li.nav-item {
	padding-bottom: 32px;
}
.g-nav ul li.nav-item a {
	display: flex;
}
.g-nav ul li.nav-item p span{
	display: block;
	color: #d2e6f8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 2.8rem;
}
.g-nav ul li.nav-item a img{
	filter: invert(8%) sepia(100%) saturate(7139%) hue-rotate(248deg) brightness(103%) contrast(143%);
	display: inline-block;
	margin: 0 24px 0 0;
	width: 40px;
}
.g-nav ul li.nav-item.current a img {
	filter: invert(37%) sepia(91%) saturate(6714%) hue-rotate(350deg) brightness(93%) contrast(93%);
}
.g-nav li a{
	color: #0000FF;
	font-size: 1.8rem;
}
.g-nav li.nav-item.current a{
	color: #E62525;
}
.g-nav li.nav-item.current p span {
	color: #F9CBCB;
}
/*--------------------------------------
 *hanburger menu
 *
----------------------------------------*/
.openbtn{
	position: fixed;
	top:10px;
	right: 10px;
	z-index: 999;
	/*ボタンの形状*/
	width: 50px;
	height:50px;
	cursor: pointer;
	color:#0000FF;
}	
/*ボタン内側*/
.openbtn .menu{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 8px;
	height: 4px;
	background-color: #0000FF;
}
.openbtn .menu1 {
	top: 20px;	
	width: 70%;
}
.openbtn .menu2 {
	top: 30px;
	width: 50%;
}
.openbtn .menu-text {
	position: absolute;
	top: 36px;
	font-size: 1.2rem;
	font-weight: 600;
	left: 50%;
	transform: translateX(-50%);
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active .menu1 {
	top: 20px;
	left: 8px;
	transform: translateY(6px) rotate(-45deg);
	width: 50%;
}
.openbtn.active .menu2 {
	top: 32px;
	left: 8px;
	transform: translateY(-6px) rotate(45deg);
	width: 50%;
}
/*--------------------------------------
 *header-button
 *
----------------------------------------*/
.header-button {
	position: fixed;
	justify-content: space-between;
	align-items: center;
	top: 0;
	padding: 16px 72px 24px 24px;
	width: 100%;
	z-index: 1;
	background: linear-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0));
}
.btn-logo {
	width: 180px; 
}
.btn-contact {
	width: 172px;
	padding: 8px 0;
	background-color: #0000FF;
	box-shadow: 6px 6px 0 rgba(0, 0, 255, 0.5);
	transition: all .4s;
}
.btn-contact:hover {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
  box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
}
.btn-contact a:hover {
	opacity: 1;
}
.btn-contact img {
	display: inline-block;
	width: 16px;
	filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(1%) hue-rotate(125deg) brightness(106%) contrast(100%);
	margin-right: 8px;
	vertical-align: sub;
}
.btn-contact a {
	color: #fff;
	font-weight: bold;
	font-size: 1.4rem;
}
/*--------------------------------------
 *section
 *
----------------------------------------*/
main { 
	background-color: #75BDFF;
}
section{
	padding-top: 80px;
}
section .stripe {
	background: url("../images/back-image/stripe.png") repeat 0 0;
	height: 10px;
}
.section-header{
	margin: 0 auto 80px;
}
.section-title{
	position: relative;
	height: 70px;
	animation-name:rotateYAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes rotateYAnime{
	from{
		transform: rotateY(0);
		}
	to{
		transform: rotateY(-360deg);
		}
}

.section-title .ja {
	font-size: 2.0rem;
	font-weight: bold;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.section-title .en {
	font-weight: bold;
	font-size: 5.7rem;
	text-transform: uppercase;
	color: rgba(0,0,255,0.15);
}
.section-body {
	margin-bottom: 40px;
}
section .section-body:last-of-type {
	margin-bottom: 0;
}
/*--------------------------------------
 *introduction
 *
----------------------------------------*/
.introduction .flex {
	justify-content: space-between;
	align-items: center;
}
.ojisan {
	width: 167px;
	transform: scale(-1, 1);
}
.intro-text p {
	text-align: center;
}
.intro-text p:first-of-type {
	font-weight: bold;
	font-size: 2.2rem;
	margin-bottom: 24px;
}
.btn-company {
	width: 172px;
	padding: 8px 0;
	background-color: #fff;
	box-shadow: 6px 6px 0 rgba(0, 0, 255, 0.5);
	transition: all .4s;
	font-weight: bold;
	border: 4px solid #0000ff;
	position: relative;
}
.btn-company:hover {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
  box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
}
.btn-company a:hover{
	opacity: 1;
}
.btn-company img {
	display: inline-block;
	width: 20px;
	margin-left: 8px;
	vertical-align: sub;
}
/*--------------------------------------
 *service
 *
----------------------------------------*/
.service {
	max-width: 930px;
}
.service .flex{
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
.service .flex:last-of-type {
	margin-bottom: 0;
}
.service-title {
	font-weight: bold;
	color: #0000ff;
	font-size: 1.8rem;
	margin-bottom: 16px;
	padding-left: 64px;
	position: relative;
}
.service-title::before {
	content: "";
	position: absolute;
	width: 56px;
	height: 31px;
	background-image: url("../images/common/truck_blue.png");
	background-size: contain;
	background-repeat: no-repeat;
	left: 0;
}
.service-contents {
	padding-left: 64px;
}
.btn-service {
	width: 230px;
	height: 182px;
	background: #fff;
	border: 4px solid #0000ff;
	position: relative;
	box-shadow: 6px 6px 0 rgba(0, 0, 255, 0.5);
	transition: all .4s;
}
.btn-service:hover {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
	box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
}
.btn-service a:hover {
	opacity: 1;
}
.btn-service img {
	position: absolute;
	height: 90px;
	top: 38%;
	left: 50%;
	transform: translate3d(-50%,-50%,0);
}
.btn-service p {
	font-weight: bold;
	font-size: 1.5rem;
	position: absolute;
	left: 50%;
	bottom: 5%;
	transform: translateX(-50%);
	width: 178px;
}
.btn-service p span {
	display: block;
	font-weight: bold;
	font-size: 1.2rem;
}
.btn-service-text::after {
	content:"";
	position: absolute;
	background-image: url("../images/common/arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	margin-left: 12px;
}
/*--------------------------------------
 *estimate/contact
 *
----------------------------------------*/
.section-flex {
	justify-content: center;
	align-items: flex-start;
	position: relative;
}
.section-flex .section-body {
	padding-bottom: 80px;
}
.line {
	height: 380px;
	width: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.section-flex section {
	width: 49%;
}
.section-body.estimate p {
	margin-bottom: 40px;
	padding: 0 40px;
	text-align: left;
	display: inline-block;
}
.section-body.contact p {
	margin-bottom: 40px;
	text-align: left;
	display: inline-block;
	padding: 0 40px;
}
.btn-download {
	width: 204px;
	padding: 8px 0;
	background-color: #fff;
	box-shadow: 6px 6px 0 rgba(0, 0, 255, 0.5);
	transition: all .4s;
	font-weight: bold;
	border: 4px solid #0000ff;
	position: relative;
	margin: 0 auto;
}
.btn-download:hover {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
  box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
}
.btn-download a:hover {
	opacity: 1;
}
.btn-download img {
	display: inline-block;
	width: 20px;
	margin-left: 8px;
	vertical-align: sub;
}
.btn-tel.flex {
	justify-content: center;
	margin-bottom: 16px;
}
.btn-tel.flex div:first-of-type {
	margin-right: 40px;
}
.btn-tel div a {
	font-weight: bold;
}
.btn-tel img{
	width: 20px;
	vertical-align: sub;
	margin-right: 8px;
}
.btn-mail.flex {
	justify-content: center;
	font-weight: bold;
}
.btn-mail img{
	width: 20px;
	vertical-align: sub;
	margin-right: 8px;
}
/*--------------------------------------
 *footer
 *
----------------------------------------*/
footer{
	background: #fff;
	background-image: url("../images/back-image/kyoto_pc.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom 80px right 0;
}
.logo-footer {
	width: 278px;
	margin: 80px 0 40px 10%;
}
.footer-container {
	padding: 0 10% 80px;
	justify-content: space-between;
}
.info p:first-of-type {
	margin-bottom: 40px;
}
.info p:nth-of-type(2) {
	margin-bottom: 24px;
}
footer .btn-tel.flex {
	justify-content: flex-start;
	margin-bottom: 8px;
}
footer .btn-mail.flex {
	justify-content: flex-start;
	margin-bottom: 8px;
}
footer .btn-web {
	font-weight: bold;
}
.btn-web img {
	width: 20px;
	vertical-align: sub;
	margin-right: 8px;
}
.map p {
	font-size: 1.4rem;
}
.map p:first-of-type {
	padding-top: 16px;
}
.map a img{
	width: 450px;
	border: 4px solid #0000ff;
	box-shadow: 6px 6px 0 rgba(0, 0, 255, 0.5);
	transition: all .4s;
}
.map a img:hover {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
  box-shadow: 0 0 0 rgba(0, 0, 255, 0.5);
}
.map a:hover {
	opacity: 1;
}
small{
	background-color: #75BDFF;
	font-size: 1.2rem;
	height: 80px;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}
small span {
	font-weight: 600;
}
/*--------------------------------------
 *company-page
 *
----------------------------------------*/
.page-top {
	height: 530px;
	background-image: url("../images/back-image/top-company.jpg");
	background-size: cover;
	background-position: center center;
	position: relative;
}
.page-title {
	position: absolute;
	top: 50%;
	right: 64px;
	transform: translateY(-50%);
}
.page-title img {
	filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(1%) hue-rotate(125deg) brightness(106%) contrast(100%);
	width: 60px;
	display: inline-block;
	margin-right: 32px;
}
.page-title p {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 600;
}
.page-title p span {
	font-size: 5.2rem;
	opacity: 0.3;
	font-weight: bold;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
/*社是*/
.integrity p {
	margin-bottom: 24px;
}
.integrity p:last-of-type {
	margin-bottom: 0;
}
.integrity p:first-of-type {
	font-weight: bold;
	font-size: 2.2rem;
}
.integrity p:nth-of-type(2) {
	position: relative;
}
.integrity p:nth-of-type(2) .en{
	font-weight: bold;
	font-size: 5.7rem;
	text-transform: uppercase;
	color: rgba(0, 0, 255, 0.15);
}
.integrity p:nth-of-type(2) .ja {
	color: #0000FF;
	font-size: 3.2rem;
	font-weight: bold;
	position: absolute;
	left: 50%;
	bottom: 13px;
	transform: translateX(-50%);
}
.integrity img {
	width: 132px;
  margin-bottom: 24px;
}
/*安全運輸マネジメント*/
#safety .section-title {
	height: 140px;
}
#safety .section-title .ja {
	top: 59%;
	transform: translate3d( -50%, -50%, 0);
}
#safety .section-title .en {
	line-height: 1.2;
}
.safety-policy img {
	width: 83px;
	transform: scale(-1, 1);
}
.safety > p:first-of-type {
	font-weight: bold;
	color: #0000ff;
	margin-bottom: 40px;
}
.safety > p:nth-of-type(2) {
	display: inline-block;
	text-align: left;
	margin-bottom: 40px;
}
.safety-policy {
	background: #fff;
	border: 4px solid #0000ff;
	padding: 32px;
	position: relative;
	z-index: auto;
}
.safety-policy::after {
	content: "";
	background-image: url("../images/back-image/stripe_blue.png");
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.safety-policy div:first-child {
	justify-content: space-around;
	align-items: center;
	margin-bottom: 16px;
}
.safety-policy div:nth-child(2) {
	justify-content: space-around;
	align-items: flex-start;
}
.safety-policy-box > p {
	width: 83px;
	font-weight: bold;
}
.safety-policy-content {
	text-align: left;
	width: 689px;
}
.safety-policy-content p span.number {
	font-weight: bold;
	padding-right: 12px;
}
/*会社概要*/
.overview {
	max-width: 800px;
}
.info-item {
	display: flex;
	margin-bottom: 40px;
	padding: 0 40px 40px;
	border-bottom: 2px solid #0000ff;
}
.info-title {
	width: 152px;
	margin-right: 64px;
	text-align: right;
	font-size: 1.8rem;
	padding-bottom: 0;
	font-weight: bold;
}
/*沿革*/
.timeline {
	padding: 0;
	width: 690px;
	margin: 0 auto;
}
.timeline li {
	padding: 0 0 32px 0;
	position: relative;
	list-style: none;
}
.timeline li:last-of-type {
	padding: 0;
}
.timeline li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	background: #0000ff;
	border-radius: 50%;
	margin: 3px;
}
.timeline dl {
	margin: 0 0 16px 4em;
	display: flex;
}
.timeline dl:last-of-type {
	margin: 0 0 0 4em;
}
.timeline dt {
	width: 110px;
	font-weight: 600;
	color: #0000ff;
}
.border-line {
	position: absolute;
	left: 0.7em;
	top: 0;
	width: 1px;
	height: 0; 
	background: #0000ff;
}
/*--------------------------------------
 *INSTRUMENT DELIVERY-page
 *
----------------------------------------*/
#instrument .page-top {
	background-image: url("../images/back-image/top-instrument.jpg");
}
#instrument .page-title {
	left: 64px;
	transform: translateY(-50%);
}
.instrument-delivery > div{
	margin-bottom: 64px;
	justify-content: space-between;
}
.instrument-delivery > div:first-child {
	align-items: center;
}
.instrument-delivery > div:first-child img{
	width: 172px;
	transform: scale(-1, 1);
}
.instrument-delivery > div:nth-child(2) {
	align-items: center;
	max-width: 850px;
	margin-right: auto;
	margin-left: auto;
}
.instrument-delivery > div:nth-child(2) img{
	width: 110px;
}
.instrument-delivery > div:nth-child(3) {
	align-items: flex-start;
	max-width: 850px;
	margin-right: auto;
	margin-left: auto;
}
.instrument-delivery > div:nth-child(3) .contrabass{
	margin-right: 40px;
}
.instrument-delivery > div:nth-child(3) img{
	height: 90px;
	transform: scale(-1, 1);
}
.instrument-header {
	margin-bottom: 24px;
}
.instrument-delivery > div:first-child .instrument-header {
	font-size: 2.2rem;
}
.piano-delivery {
	background: #fff;
	border: 4px solid #0000ff;
	padding: 32px;
	justify-content: space-around;
}
.piano-delivery > p {
	font-size: 1.8rem;
	min-width: 166px;
	margin-right: 8px;
}
.piano-delivery div p:first-of-type {
	margin-bottom: 24px;
}
/*--------------------------------------
 *luggage DELIVERY-page
 *
----------------------------------------*/
#luggage .page-top {
	background-image: url("../images/back-image/top-luggage.jpg");
	background-position: left bottom;
}
#luggage .page-title {
	transform: translateY(-50%);
}
.luggage-delivery > div{
	margin-bottom: 64px;
	justify-content: space-between;
}
.luggage-delivery > div:first-child {
	align-items: center;
}
.luggage-delivery > div:first-child img{
	width: 172px;
	transform: scale(-1, 1);
}
.luggage-delivery > div:first-child div {
	margin-left: 40px;
}
.luggage-header {
	margin-bottom: 24px;
}
.luggage-delivery > div:first-child .luggage-header {
	font-size: 2.2rem;
}
.luggage-delivery > div:nth-child(2) {
	align-items: flex-start;
	max-width: 850px;
	margin-right: auto;
	margin-left: auto;
}
.luggage-delivery > div:nth-child(2) img{
	width: 80px;
	transform: scale(-1,1);
}
/*--------------------------------------
 *RELOCATION & MORE-page
 *
----------------------------------------*/
#relocation .page-top {
	background-image: url("../images/back-image/top-other.jpg");
}
#relocation .page-title {
	left: 64px;
	transform: translateY(-50%);
}
.other-delivery > div{
	margin-bottom: 64px;
	justify-content: space-between;
}
.other-delivery > div:first-child {
	align-items: center;
}
.other-delivery > div:first-child img:first-of-type{
	width: 164px;
}
.other-delivery > div:first-child img:nth-of-type(2){
	width: 94px;
}
.other-delivery > div:first-child div {
	margin: 0 40px;
}
.other-delivery > div:nth-child(2) {
	align-items: flex-start;
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}
.other-delivery > div:nth-child(2) img{
	width: 186px;
}
.other-header {
	margin-bottom: 24px;
}
.other-delivery > div:first-child .other-header {
	font-size: 2.2rem;
}

/*--------------------------------------
 *tablet時css
 *
----------------------------------------*/
@media (max-width: 1024px){
	body {
		font-size: 1.4rem; 
	}
	.wrapper {
    padding: 0 24px;
	}
	/*--------------------------------------
	 *section
	 *
	----------------------------------------*/
	section{
		padding-top: 56px;
	}
	.section-header{
		margin: 0 auto 56px;
	}
	.section-title{
		height: 58px;
	}
	.section-title .ja {
		font-size: 1.4rem;
	}
	.section-title .en {
		font-size: 4.8rem;
	}
	.section-body {
		margin-bottom: 32px;
	}
	.footer-container {
    padding: 0 24px 56px;
	}
	.main-visual {
		background-position: 72% center;
	}
	.section-flex {
		display: block;
	}
	.section-flex section {
    width: 100%;
	}
	.section-flex .section-body {
    padding-bottom: 56px;
	}
	.line {
    height: 2px;
    width: 85%;
    top: inherit;
		left: 50%;
    transform: translateX(-50%);
	}
	.top-nav li.nav-item{
		width: 130px;
	}
	.top-nav li.nav-item a img {
		width: 38px;
	}
	.instrument-delivery > div:first-child img {
    width: 150px;
	}
	.luggage-delivery > div:first-child img {
    width: 150px;
	}
	.other-delivery > div:first-child img:first-of-type {
		width: 138px;
	}
	.other-delivery > div:first-child img:nth-of-type(2) {
    width: 80px;
	}
	.other-delivery > div:first-child div {
    margin: 0 16px;
	}
	.other-delivery > div:nth-child(2) img {
    width: 172px;
	}
}
	/*--------------------------------------
	 *sp時css
	 *
	----------------------------------------*/
@media(max-width:767px){
	
	/*--------------------------------------
	 *utility

	----------------------------------------*/
	.br-sp {
		display: block;
	}
	.br-pc {
		display: none;
	}
	.img-pc {
		display: none;
	}
	.img-sp {
		display: block;
	}
	.loop-image img {
		width: 45px;
	}
	.text-left_sp {
		text-align: left;
	}
	.sns {
    right: 8px;
	}
	.header-button {
		padding: 24px;
	}
	.btn-logo {
		width: 132px;
	}
	.btn-contact {
		display: none;
	}
	.page-top {
    height: 240px;
	}
	.page-title {
    right: 24px;
		text-shadow: .5px .5px 0 rgba(0,0,255,0.8);
	}
	.page-title img {
    width: 40px;
    margin-right: 16px;
}
	.page-title p span {
    font-size: 2.2rem;
	}
	.page-title p {
    font-size: 1.6rem;
	}
	.top-nav {
		display: none;
	}
	.g-nav ul .logo-nav {
		width: 200px;
	}
	.g-nav li a {
    font-size: 1.6rem;
	}
	.g-nav ul li.nav-item p span {
		font-size: 2.2rem;
		letter-spacing: 0.05em;
	}
	.g-nav .g-nav-list{
		min-width: inherit;
		width: 100%;
		padding: 80px 16px;
	}
	.g-nav ul li.nav-item a img {
    width: 36px;
	}
	.main-visual {
		width: 100%;
		height: auto;
		background-image: url("../images/back-image/top-image_sp.jpg");
	}
	.introduction .flex {
		display: block;
	}
	.ojisan {
		width: 115px;
		margin: 0 auto 24px;
	}
	.intro-text p:first-of-type {
    font-size: 1.6rem;
	}
	.btn-company {
		margin: 24px auto 0;
	}
	.service .flex {
		display: block;
	}
	.service-title {
    font-size: 1.6rem;
		width: 232px;
		margin: 0 auto 24px;
	}
	.service-title.other {
		width: 288px;
	}
	.service-contents {
    padding-left: 0;
		margin-bottom: 24px;
	}
	.btn-service {
		margin: 0 auto;
	}
	.logo-footer {
    width: 220px;
    margin: 56px auto 40px;
	}
	.logo {
		text-align: center;
	}
	footer {
    background-image: url(../images/back-image/kyoto_sp.png);
	}
	.footer-container {
		display: block;
	}
	.info p:first-of-type {
    margin-bottom: 24px;
	}
	footer .btn-tel.flex {
    justify-content: center;
    margin-bottom: 8px;
	}
	footer .btn-mail.flex {
    justify-content: center;
    margin-bottom: 4px;
	}
	footer .btn-mail.flex a{
		width: 246px;
	}
	footer .btn-web.flex {
    justify-content: center;
		margin-bottom: 24px;
	}
	/*--------------------------------------
	 *company-page
	 *
	----------------------------------------*/
	.integrity p:first-of-type {
    font-size: 1.6rem;
	}
	.integrity p:nth-of-type(2) .en {
    font-size: 4.8rem;
	}
	.integrity p:nth-of-type(2) .ja {
    font-size: 2.8rem;
    bottom: 13px;
	}
	.integrity p:last-of-type {
		text-align: left;
	}
	.integrity img {
    width: 100px;
	}
	#safety .section-title {
    height: 150px;
	}
	#safety .section-title .ja {
    top: 60%;
	}
	#safety .section-title .en {
    line-height: 1.0;
		letter-spacing: 0.01em;
	}
	.safety-policy {
    padding: 16px;
	}
	.safety-policy img {
    margin-bottom: 24px;
	}
	.safety-policy div:first-child {
		display: block;
	}
	.safety-policy div:first-child p {
		text-align: left;
	}
	.safety-policy div:nth-child(2) {
		display: block;
	}
	.safety-policy-box > p {
    width: 64px;
		margin-bottom: 8px;
	}
	.timeline {
    padding: 0;
    width: inherit;
    margin: 0 auto;
}
	.timeline dl {
		display: block;
	}
	.safety-policy-content {
		width: inherit;
	}
	.safety-policy-content p{
		margin-bottom: 4px;
		font-size: 1.2rem;
	}
	.info-item {
    display: block;
    margin-bottom: 24px;
    padding: 0 16px 8px;
	}
	.info-title {
    width: inherit;
    margin-right: 0;
    text-align: left;
    font-size: 1.6rem;
		margin-bottom: 8px;
	}
	/*--------------------------------------
	 *INSTRUMENT DELIVERY-page
	 *
	----------------------------------------*/
	#instrument .page-title {
    left: 24px;
	}
	.instrument-header {
    margin-bottom: 8px;
	}
	.instrument-delivery > div {
		display: block;
		text-align: center;
		margin-bottom: 40px;
	}
	.instrument-delivery > div:first-child img {
    width: 140px;
		margin-bottom: 24px;
	}
	.instrument-delivery > div:first-child .instrument-header {
    font-size: 1.8rem;
	}
	.instrument-delivery > div:nth-child(2) img {
    width: 88px;
		margin-bottom: 24px;
	}
	.instrument-delivery > div:nth-child(3) img {
		height: 76px;
		margin-bottom: 24px;
	}
	.instrument-delivery > div:nth-child(3) .contrabass {
		margin-right: 0;
		margin-bottom: 16px;
	}
	.instrument-delivery > div:nth-child(3) .text-left_sp{
		display: inline-block;
		width: 230px;
	}
	.piano-delivery {
		display: block;
		padding: 16px;
	}
	.piano-delivery > p {
    font-size: 1.6rem;
    min-width: inherit;
    margin-right: 0;
		margin-bottom: 16px;
	}
	.piano-delivery div p:first-of-type {
    margin-bottom: 8px;
	}
	#luggage .page-title {
		left: 24px;
	}
	.luggage-delivery > div {
    display: block;
		text-align: center;
		margin-bottom: 40px;
	}
	.luggage-delivery > div:first-child div {
    margin-left: 0;
	}
	.luggage-delivery > div:first-child img {
    width: 120px;
		margin-bottom: 24px;
	}
	.luggage-delivery > div:first-child .luggage-header {
    font-size: 1.8rem;
	}
	.luggage-delivery > div:nth-child(2) .text-left_sp {
		display: inline-block;
		width: 331px;
	}
	.luggage-delivery > div:nth-child(2) .cardboard {
		margin-bottom: 16px;
	}
	.luggage-delivery > div:nth-child(2) img {
    width: 64px;
		margin-bottom: 24px;
	}
	.luggage-header {
    margin-bottom: 8px;
	}
	#relocation .page-title {
    left: 24px;
	}
	.other-delivery > div {
    margin-bottom: 40px;
		display: block;
		text-align: center;
	}
	.other-delivery > div.flex.row-reverse {
		display: block;
		text-align: center;
	}
	.other-delivery > div:first-child img:first-of-type {
    width: 124px;
		margin-bottom: 24px;
	}
	.other-delivery > div:first-child .other-header {
    font-size: 1.8rem;
	}
	.other-delivery > div:first-child div {
    margin: 0;
	}
	.other-delivery > div:first-child div p.text-left_sp{
    margin: 24px;
	}
	.other-delivery > div:first-child img:nth-of-type(2) {
    width: 72px;
	}
	.other-delivery > div:nth-child(2) img {
    width: 148px;
		margin: 0 auto;
	}
	.other-delivery > div:nth-child(2) .text-left_sp {
		display: inline-block;
		width: 246px;
	}
	.other-delivery > div:nth-child(2) .refrigerator {
    margin-bottom: 16px;
	}
}