@charset "utf-8";

/*-------------------------------------------
 全体
-------------------------------------------*/

* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, sans-serif;
  color: #414141;
  margin: 0;
  padding-top: 50px;
}

a {
  color: #181818;
  text-decoration: none;
}

h1,h2,h3 {
  text-align: center;
  letter-spacing: 0.15em;
}

h2 {
  margin: 0;
  font-size: 23px;  
}

.h2-headline {
  max-width: 180px; 
  margin: 0 auto;
}

h3 {
  margin: 10px 0px 30px 0px ;
  font-size: 17px;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;  
}

p {
  margin: 10px 0;
  text-align: justify;
}

ul {
  list-style: none;
  color: #000;
}

dd {
  padding: 0px 10px 15px 0px ;
  margin: 0;
  border-bottom: 1px dotted #cccccc;
}

dt {
  padding: 15px 0px 10px 0px ;
  font-weight: 600;
}


@media screen and (max-width:470px)  {

dt,dd {
  font-size: 0.9em;
}

h2 {
  font-size: 20px;  
}
  
h3 {
  font-size: 14px;
}
  
p {
  padding: 0;
  font-size: 0.9em;
 }
}
  
@media screen and (min-width:1050px) {
   
body {
  padding-top: 0px;
 }
}

/*-------------------------------------------
 ヘッダー関連
-------------------------------------------*/

.header-area {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 10px 0px 10px 0px;
  background: #ffffff;
}
    
.header-width {
  max-width: 1400px;
  margin: 0 auto;
}

.header-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-logo {  
  padding: 0px 7px 0px 7px ;
}

.header-logo img {  
  width: 100%;
}


@media screen and (min-width:470px) and (max-width:767px) {

.header-logo img {  
   width: 90%;
 }
}

@media screen and (min-width:768px) {

.header-logo img {  
   width: 70%;
 }
}

  
/*-------------------------------------------
 ヘッダー大
-------------------------------------------*/

.headerNav_pc {  
  display: none;
}


/* メニューを改行させない・横にはみ出したらスクロールさせる */
.list_navHeader_pc {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* 改行させない */
  overflow-x: auto; /* 必要なら横スクロール */
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  gap: 4px; /* アイテム間の微調整（padding と併用可） */
}


/* 各メニューの文言を折り返さない */
.list_navHeader_pc li {
  white-space: nowrap;
  flex: 0 1 auto; /* 自動で縮むが改行はしない */
  padding: 18px 12px; /* 横パディングを少し減らす */
  font-size: 1.15em;
  font-weight: bold;
}

.listSub_pc{
  cursor: pointer; 
}

.listSub_pc:hover {
  opacity: 0.2;
  transition: 0.5s;  
}

.listBtn_pc:hover {
  opacity: 1;
}

.subList_pc {
  display: block;
  position: relative;
}

.pc_detail {
  position: absolute;
  display: none;
  padding: 10px 12px 10px 7px;
  background-color: rgba(235,235,235,90%); 
}

.pc_detail li {
  padding: 5px;
  text-align: left;
  font-weight: bolder;
  font-size: 1.0em;  
}

.pc_detail a {
  color: #5a5a5a;
 }

.pc_detail li:hover {
  opacity: 0.2;
  transition: 0.5s;
}

.listBtn_pc {
  text-align: center;
}

.listBtn_pc:hover .pc_detail {
  display: block;  
  transition: 0.9s;
}

.btn_minus.open {
  display: block;
}

/*-------------------------------------------
 ヘッダー小
-------------------------------------------*/

.headerNav_sp {  
  align-items: center
}

.headerNav_sp p {
  font-size: 0.8em;
  font-weight: bold; 
  text-align: center;
  padding: 3px 0px 0px 0px;
  margin: 0;
}

.menu-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 5px 0px;  
}

.menu-btn {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0px 10px 0px 10px;
  cursor: pointer;   
}

.menu-btn span {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 30px;
  height: 3px;
  background-color: #000; 
  border-radius: 2px;
  transform: translate(-50%, -50%); 
}

.menu-btn span:nth-child(2) {
  margin-top: 10px;
}

.menu-btn span:last-child {
  margin-top: 20px;
}

.menu-btn.open span {
  top: 46%;
  left: 9%;
  width: 34px;
  transition: all 0.3s ease; 
}

.menu-btn.open span:first-child {
  transform: rotate(45deg);
  margin: 0; 
}

.menu-btn.open span:nth-child(2) {
  display: none;
}

.menu-btn.open span:last-child {
  transform: rotate(-45deg);
  margin: 0; 
}

.menu-txt {  
 font-size: 0.9em;
}

.close-txt {
  display: none;
  font-size: 0.9em;
}

.menuList_sp {
  display: none;
  position: fixed;
  left: 0;
  width: 100vw;
  background-color: transparent; 
  height: 88vh;
  overflow-y: scroll; 
 }

.sp_list {
  max-width: 1000px;
  margin: 0 auto;
}

.sp_title {
  position: relative;
  z-index: 1;
  padding: 20px 5%;
  background-color: #f7f7f7;
  color: #555555;
  border-top: 0.5px dotted #7b90cb;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.2s;
}

.sp_title a {
  color: #555555;
}

.title_link {
  display: block;
  max-width: 900px;
}

.sp_icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.sp_icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.sp_title.open 
.sp_icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);  
}

.sp_icon:before, .sp_icon:after {
  display: flex;
  content: '';
  background-color: #000000;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}

.sp_icon:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.sp_title.open 
.sp_icon_wrap .sp_icon:before {
  content: none;
}

.sp_title.open 
.sp_icon_wrap .sp_icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sp_inner {
  display: none;
  padding: 0px 10px 10px 30px ;
  box-sizing: border-box;
  background-color: #f7f7f7;
}

.sp_detail {  
  display: block;
  margin: 0;
  padding: 0;
}

.sp_detail li {
  padding: 10px 0px 10px 30px;
  border-bottom: initial;
  cursor: pointer; 
}

.sp_detail a {
  display: block;
}

.sp_line {
  border-bottom: 0.5px dotted #7b90cb;
}

@media screen and (max-width: 767px) {

.sp_title {
  padding: 15px 15px 15px 15px; 
  font-size: 16px;
  text-align: left;
}

.sp_icon_wrap {
  width: 30px;
  height: 30px;
  margin: -15px 0px 0px 0px;
 }
}

@media screen and (max-width: 1049px) {

.header-toiawase {  
  display: none;
}
 
.sp_title {
  font-size: 18px;
}

.sp_icon_wrap {
  width: 30px;
  height: 30px;
  margin: -15px 0px 0px 0px;
 }
}


@media screen and (min-width:1050px) {

.headerNav_pc {  
  display: block;
}

.headerNav_sp {  
  display: none;
 }
}

  
/*-------------------------------------------
  ローディング
-------------------------------------------*/
 
#loader-bg {
  background: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 300;
}

.bouncing-loader {  
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}

.bouncing-loader > div {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: hsl(221, 82%, 56%);
  border-radius: 50%;
  animation: bouncing-loader 0.25s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
  animation-delay: 0.1s;
}

.bouncing-loader > div:nth-child(3) {
  animation-delay: 0.15s;
}

.bouncing-loader > div {
  margin: 0 10px;
}

.loader-txt {
  text-align: center;
  font-weight: bold;   
  font-size: 1.3em;
  color: rgb(148, 148, 148);
}

@keyframes bouncing-loader {
   to {
      opacity: 0.2;
      transform: translate3d(0, -30px, 0);
 }
}

/*-------------------------------------------
 スライダー
-------------------------------------------*/ 

.slider {
  overflow: hidden;
  position: relative;
}

.slider img {
  height: 400px;
  object-fit: cover;
}

.slider-txt,.slider-subtxt {
  display: block;
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%,0%);
  color: #ffffff;
  font-weight:bold;  
  font-size: 1.5em;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  text-shadow:  3px  3px 8px #000000 ,
               -3px  3px 8px #000000 ,
                3px -3px 8px #000000,
               -3px -3px 8px #000000;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);    
} 

.slider-subtxt {
  display: none;
  top: 55%;
  transform: translate(-50%,0%);
  font-size: 2.0em;
} 


/* アニメーションを一時的に無効化 */

.slick-active,
.slick-slide:has(+ .slick-active),
.slick-slide:last-child {
  animation: zoom-in 20s ease-out infinite;  
}

.slick-active + .slick-slide:last-child {
  animation: none;
}

@keyframes zoom-in {
  100% {
    transform: scale(1.15);
  }
}
*/

/* ドットのスタイル */
.slick-dots {
  z-index: 100;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  transition: background-color 0.3s ease;
}

.slick-dots li.slick-active button {
  background-color: #f5f3f3;
}


@media screen and (min-width:470px) and (max-width:768px) {

.slider img {
  height: 550px;
 }

.slider-txt,.slider-subtxt {
  top: 33%;
  left: 50%;   
 }  
} 

@media screen and (min-width:769px) {

.slider img {
  height: 700px;
}

.slider-txt,.slider-subtxt {
  display: block;
  font-size: 1.7em;
  top: 39%;
  left: 50%;
  transform: translate(-50%,0%);
 }

.slider-subtxt {
  display: block;
  top: 59%;
  transform: translate(-50%,0%);
  font-size: 2.3em;
 } 
} 


/*-------------------------------------------
 特徴について
-------------------------------------------*/

.features-area {
  text-align: center;
}

.features-width {
  max-width: 1250px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 0px 10px 0px 10px;
}

.h2-features {
  font-size: 30px;  
  padding: 40px 0px 20px 0px;  
}

.features-flex {
  display: flex;
  flex-direction: column;
  align-items: stretch; 
}

.features-list {
  padding: 10px 10px 10px 10px;
  flex: 1; 
}

.features-list img {
  max-width: 30%;
  padding: 10px 0px 10px 0px;
}

.features-list p {
  padding: 0px 10px 0px 10px;
  text-align: center;
}

/*@media screen and (min-width:768px) and (max-width:1049px) {
  
.adress-flex {
  flex-direction: row;
  max-width: 70%;
 }
}
*/

@media screen and (min-width:469px) and (max-width:768px) {
  
.features-list img {
  max-width: 20%;
 }
} 

@media screen and (min-width:769px) {

.h2-features {
  font-size: 36px;  
}

.features-flex {
  flex-direction: row;
 }
}
 

/*-------------------------------------------
 サービス
-------------------------------------------*/

.service-area {
  background-color: #f8f9f9;
}

.service-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 50px 10px;
}

.h2-service {
  font-size: 36px;  
  padding: 0px 0px 20px 0px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.service-flex {
  display: flex;
  flex-direction: row;
}

.service-list {
  padding: 0px 10px 0px 10px;
  flex: 1; 
}

.detail-flex {
  display: flex;
  flex-direction: row;
}

.service-list h2 {
  padding: 15px 10px 0px 10px;
}

.service-list img {
  max-width: 300px;
  padding: 5px 5px 5px 5px;
}

.service-list p {
  padding: 0px 10px 0px 20px;
}

h3 {
  margin: 0 ;
  padding: 10px 0px 0px 0px;
  font-size: 1.1em;
  font-weight: bold;
}


/*-------------------------------------------
  所在地 
-------------------------------------------*/

.location-area {
  text-align: center;
}

.location-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 40px 10px;
}

.h2-location {
  font-size: 36px;  
  padding: 0px 0px 20px 0px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.location-flex {
  display: flex;
  flex-direction: column;
  align-items: stretch; 
}

.location-list {
  padding: 0px 10px 0px 10px;
  flex: 1; 
}

.location-list h2 {
  padding: 15px 10px 0px 10px;
}

.location-list img {
  max-width: 100%;
  padding: 0px 0px 0px 0px;
}

.location-list p {
  padding: 0px 10px 0px 10px;
  text-align: center;
  line-height: 2.0em;
}

.txt-strong {
  color: #03c4eb;
  font-weight: bold;
}

.txt-strong:hover {
  opacity: 0.3;
  transition: .3s ease-in-out;
}


h3 {
  margin: 0 ;
  padding: 10px 0px 0px 0px;
  font-size: 1.1em;
  font-weight: bold;
}


@media screen and (min-width:469px) and (max-width:768px) {
  
.location-list img {
  max-width: 80%;
 }
}

@media screen and (min-width:769px) {

.location-flex {
  flex-direction: row;
}

.location-list img {
  max-width: 100%;
 }
}
 

/*-------------------------------------------
 関連企業
-------------------------------------------*/

.group-area {
  background-color: #f8f9f9;
}

.group-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 50px 10px;
}

.h2-group {
  font-size: 36px;  
  padding: 0px 0px 20px 0px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.group-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch; 
}

.group-list {
  padding: 0px 1px 0px 1px;
  flex: 1; 
}

.group-list img {
  max-width: 100%;
  padding: 0px 0px 0px 0px;
}

.group-list p {
  padding: 0px 10px 0px 10px;
  text-align: center;
  line-height: 2.0em;
  font-size: 0.75em;
}

.group-list a:hover {
  opacity: 0.5;
  transition: .3s ease-in-out;
}


/*-------------------------------------------
 関連企業
-------------------------------------------*/

.group-area {
  background-color: #f8f9f9;
}

.group-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 50px 10px;
}

.h2-group {
  font-size: 36px;  
  padding: 0px 0px 20px 0px;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}


.group {
  display: flex;
  flex-direction: column;
  flex: 1; 
}

.group-flex {
  display: flex;
  flex-direction: column;
  align-items: stretch; 
}

.group-list {
  padding: 0px 1px 0px 1px;
  flex: 1; 
}

.group-list img {
  max-width: 100%;
  padding: 0px 0px 0px 0px;
}

.group-list p {
  padding: 0px 10px 0px 10px;
  text-align: center;
  line-height: 2.0em;
  font-size: 0.75em;
}

.group-list a:hover {
  opacity: 0.5;
  transition: .3s ease-in-out;
}

@media screen and (min-width:530px) and (max-width:868px) {
  
.group {
  flex-direction: column;
 }

.group-flex {
  flex-direction: row;
 }
}
 

@media screen and (min-width:869px) {

.group {
  flex-direction: row;
 }

.group-flex {
  flex-direction: row;
 }
}
 

/*-------------------------------------------
 お問い合わせ
-------------------------------------------*/ 

.contact-area {
  padding: 40px 0px 50px 0px;
  background-image: url(../img/telephone.jpg);
  background-position: center center;
  background-size: cover;
  background-color:#f5f5f5;
}

.contact-width {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-flex {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-list {
  flex: 1;
}

.contact-detail_01 span { 
  display: inline-block;
}
 
.contact-tex_01 {
  padding: 0px 15px 0px 15px;
  text-align: center;
}

.contact-detail_02 { 
  padding: 10px 25px 10px 25px ; 
  font-size: 1.0em;
}

.contact-tex_02 { 
  position: relative;
  margin: 0 auto;
  padding: 15px 0px 15px 35px;
  color: rgb(7, 7, 7);
  font-weight: 600;
  font-size: 1.4em; 
  line-height: 1.3em;
}

.contact-tex_02:before {  
  position: absolute;
  width: 30px;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  content: url(../img/ymt_telephone.svg);
}

.contact-detail_03 {
  display: flex;
  flex-direction: row;
  align-items: center;  
  justify-content: center;
  width: 230px;
  margin: 0 auto;
  padding: 0;
  border-radius: 5px; 
  background-color: #346dc0;
  color: white;
  font-size: 1.4em; 
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.4s;
}

.ymt_mail {
  display: block;
  width: 24px;
}

.contact-detail_03:hover {
  background: #5991e4;
  color: #fff;
}

.contact-detail_03_txt p {
  padding: 0px 0px 0px 10px;
}

@media screen and (min-width:1050px) {

.contact-width {
  padding: 0 20px;
  margin: 0 auto;
}

.contact-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  max-width: 100%;
 }

.contact-detail_02{ 
  padding: 15px 0px 15px 0px ; 
 }
}

@media screen and (max-width:470px)  {

.contact-tex_02 {
  font-size: 1.0em; 
  letter-spacing: 0em;
}

.contact-tex_03 {
  font-size: 1.1em; 
 }
}


/*-------------------------------------------
 会社紹介
-------------------------------------------*/ 

  /*-------------------------------------------
     (2) 会社住所
   -------------------------------------------*/ 

.yamato-company-area {
  padding: 0;  
  background-color: #ffffff;
}

.yamato-company-width {
  max-width: 1300px;
  margin: 0 auto;
}

.yamato-company-list {
  display: flex;
  flex-direction: row;
}

.yamato-company-content_01,.yamato-company-content_02 {
  flex: 0.5;
}

.yamato-company-content_01 {
  max-width: 100%;
  padding: 30px 0px 30px 0px;
}    

.logo-area_02 {
  max-width: 70%;
  margin: 0 auto;
}

.adress-txt {
  max-width: 260px;
  margin: 0 auto;
  padding: 15px 0px 0px 0px;
}

.yamato-company-list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.adress-flex {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
}

.adress-txt p {
  text-align: left;
  margin: 4px 0px ;
}

@media screen and (min-width:1050px) {

.adress-flex {
  flex-direction: row;
  max-width: 100%;
 }
}
 
@media screen and (min-width:768px) and (max-width:1049px) {
  
.adress-flex {
  flex-direction: row;
  max-width: 70%;
 }
}
 
/*-------------------------------------------
  (3) 業務内容・その他
 -------------------------------------------*/   

.yamato-company-content_02 {
  position: relative;
 }

.company-content-list {
  margin: 0;
  padding: 20px 0px 40px 0px;
  font-size: 1em; 
  line-height: 2.0em;  
}

.company-content-flex {
  display: flex;
  justify-content: space-around;
  padding: 10px 0px 0px 0px;
}

.yamato-company-detail {
  padding: 0px 2px 0px 2px;
}

.yamato-company-txt {
  margin-left : 0px;
  color: rgb(77, 77, 77);
  font-size: 1.0em; 
}

.yamato-company-txt:hover {
  color: #f8f8ff;
  color: rgba(0,0,0,0.3);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.yamato-company-space-txt {
  margin-left : 20px;
}

.logo-area_02 {
  width: 400px;
}


@media screen and (max-width:500px) {

.logo-area_02 {
  max-width: 100%;
  padding: 0px 10px 0px 10px;
  margin: 0 auto;
 }

.yamato-company-content_02 {
  display: none;
 }
}


@media screen and (min-width:501px) and (max-width:767px) {
  
.yamato-company-txt {
  margin-left : 0px;
  font-size: 0.9em; 
 }

.yamato-company-txt span {
  font-size: 16px; 
 }
}


@media screen and (min-width:768px) and (max-width:1049px) {

.company-content-flex {
  max-width: 70%;
  margin: 0 auto;
 }
}


@media screen and (min-width:768px) {

.logo-area_02 {
  max-width: 100%;
  margin: 0 auto;
 }
}

@media screen and (min-width:1050px) {
   
.yamato-company-list {
  flex-direction: row;
}

.yamato-company-content_01 { 
  padding: 20px 0px 40px 0px;
}    

.company-content-flex {
  padding: 30px 0px 0px 0px;
}

.logo-area_02{
  padding-top: 5px;
 }
}

/*-------------------------------------------
 ページトップ
-------------------------------------------*/

.page-top {
  position: fixed;
  right: 7% ;
  bottom: 8% ;
  height: 50px;
  font-size: 2.6em;
  cursor: pointer;
}

.page-top-detail {
  display: relative;
} 

.page-txt {
  margin: 0;
  padding: 0px 0px 5px 0px ;
  font-size: 0.25em;
}

.ymt_up {  
  display: block;
  margin: 0 auto;
  width: 45px;
}

@media screen and (min-width:768px) {
 
 .page-top {
  font-size: 3.2em;
}
 
.page-txt {
  left: 50%;
  font-size: 0.25em;
 } 
}

/*-------------------------------------------
 フッター
-------------------------------------------*/

.foot-bottom {
  background-color: rgb(0, 0, 0);
  color: #fff;
  text-align: center;
}

.foot-bottom_copy_01,.foot-bottom_copy_02 {
  display: inline-block;
  width: 100%;
  padding: 8px 0px 8px 0px   ;
  color: white;
  font-size: 14px;
}

.foot-bottom_copy_02 {
  display: none;
  color: rgb(255, 255, 255);
}

.space-text {
  margin: 0px 10px 0px 0px ;
}
.yamato-top {
  color: rgb(255, 255, 255);
}  

.foot-bottom_copy_01 {
  display: none;
}  

.foot-bottom_copy_02 {
  display: block;  
}

.space-text {
  display: block;
}


@media screen and (min-width:768px) {

.foot-bottom_copy_01 {
  display: block;
}  

.foot-bottom_copy_02 {
  display: none;
 }
}


