@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: #000;
  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: 200px; 
  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 7% 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: 350px;
  object-fit: cover;
}

.slider-subtxt {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,0%);
  color: #ffffff;
  font-weight: 900;  
  font-size: 2.0em;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  text-shadow:  3px  3px 8px #3d3d3d ,
               -3px  3px 8px #3d3d3d ,
                3px -3px 8px #3d3d3d ,
               -3px -3px 8px #3d3d3d;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);    
} 


/* アニメーションを一時的に無効化 */

.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 {
  top: 40%;
  left: 50%;
  height: 400px;
 }
} 

@media screen and (min-width:769px) {

.slider img {
  height: 500px;
}

.slider-txt,.slider-subtxt {
  font-size: 2.2em;
  top: 50%;
  left: 50%;
 }
} 



/*-------------------------------------------
 パンくずリスト
-------------------------------------------*/

.a-bread {
  display: none;
}

.a-bread ul {
  display: flex;
  list-style-type: none;
}

.a-bread li a {
  padding: 5px;
  color: #000000;
  text-decoration: none;
}

.a-bread li a:hover {
  color: #f8f8ff;
  color: rgba(0, 0, 0, 0.25);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.a-bread li:after {
  content: '\003e';
  margin-left: 7px;
  margin-right: 7px;
 }

.a-bread li:last-child {
  font-weight: bold;
}
 
.a-bread li:last-child:after {
  content: ""; 
  font-weight: bold;
}

@media screen and (min-width:470px) {

.a-bread {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3px 15px 0px 15px ;
 }
}


/*-------------------------------------------
 業務フロー説明
-------------------------------------------*/

.intro-area {
  background-color:#ffffff;
}

.intro-area-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px 20px 15px;
}

.intro-title {
  padding: 30px 0px 20px 0px;
  font-size: 22px;
  text-align: center;
}

.intro-txt {
  margin: 0 auto;
  padding: 20px 0px 20px 0px;
  text-align: justify;
}
  

@media screen and (min-width:470px) {

.intro-area {
  padding: 20px 0px 0px 0px ;   
 }
  
.intro-area-width{
  padding: 20px 30px;
}

.intro-title {
  padding: 0px 0px 20px 0px;
  font-size: 1.4em;
 }

.intro-txt {
  width: calc(100% / 1.2);  
 }
}

@media screen and (min-width:1050px) {

.intro-txt {
  width: calc(100% / 1.);  
 }
}

/*-------------------------------------------
 業務フロー順番
-------------------------------------------*/

.description-area {
  padding: 40px 0px 40px 0px; 
  background-image: url(../img/IMG_business-flow000.jpg);
  background-position: center center;
  background-size: cover;
  background-color:#ffffff;
}

.description-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

ul {
 padding: 0;
}

.description-flex {
  display: flex;
  flex-direction: column;
  align-items: center
}

.description-list_01 {
  width: calc(100% / 1);
  text-align: center;
}

.description-list_02 {
  width: calc(100% / 1);
  padding: 0px 0px 30px 0px;
  text-align: center;
}

.description-list_01 img {
  max-width: 35%;
}

.description-txt_01 {
  text-align: center;
  text-shadow: 2px 2px 3px #333;
  letter-spacing: 0.3em;
}

.txt_color_01 {
  background: #f93906;
  color: #fff;
  border: 5px solid #f93906;
}

.txt_color_02 {
  background: #f95006;
  color: #fff;
  border: 5px solid #f95006;
}

.txt_color_03 {
  background:  #f97e06;
  color: #fff;
  border: 5px solid  #f97e06;
}

.txt_color_04 {
  background:  #f9b106;
  color: #fff;
  border: 5px solid  #f9b106;
}

.txt_color_05 {
  background:  #f9c806;
  color: #fff;
  border: 5px solid  #f9c806;
}

.txt_color_06 {
  background:  #8af906;
  color: #fff;
  border: 5px solid  #8af906;
}

.description-txt_02 {
  padding: 10px;
  text-align: left;
  color: #666;
  border: 2px solid #666;
  background: #fff;
  line-height: 1.5;
}


@media screen and (max-width:479px) {

.description-area {
  padding: 20px 0px 20px 0px; 
}

.description-list_01 img {
  max-width: 55%;
 }
}

@media screen and (min-width:768px) {

.description-flex {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.description-list_01 {
  padding: 20px 0px;
}

.description-list_02 {
  padding: 20px 0px;
}

.description-txt_02 {
  font-size: 0.9em;
 }
}

@media screen and (min-width:768px) and (max-width:1049px) {

.description-list_01 {
  width: calc(100% / 2);
  text-align: center;
  padding: 20px 0px 0px 0px ; 
}

.description-list_02 {
  width: calc(100% / 2);
  text-align: center;
  padding: 0px 0px 15px 0px ; 
}

.description-list_01 img {
  max-width: 50%;
 }
}

@media screen and (min-width:1050px) {

.description-list_01 {
  width: calc(100% / 4);
  padding: 20px 0px;
  margin: 0 auto;  
}

.description-list_02 {
  width: calc(100% / 4);
  padding: 20px 0px;
  margin: 0 auto;  
}

.description-list_01 img {
  max-width: 80%;
  text-align: center;
 }
}



/*-------------------------------------------
 ページトップ
-------------------------------------------*/

.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;
 }
}


