@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;
 }
}

/*-------------------------------------------
 ヘッダー関連
-------------------------------------------*/

.header-area {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding-top: 10px;
  margin-bottom: 10px;
  background: #ffffff;
}
    
.header-logo-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}
    
.logo-area_01 {
  width: 350px;
  margin: 0;
  padding-bottom: 10px;
  text-align: left;
}


/*画面サイズ大(パソコン)*/

@media screen and (min-width:960px) {
   
.logo-area_01 {
  padding: 0px 0px 0px 0px ;
 }
}

@media screen and (min-width:768px) {
   
.logo-area_01 {
  width: 450px;
 }
}

/*-------------------------------------------
 イメージ画像
-------------------------------------------*/

.main-image-area {    
  background-size: cover;
  padding: 0px 0px 0px 0px;  
}

.main-image img {
  height: 250px;
  object-fit: cover;
}

.main-image {
  padding: 0;
}

.main-image-list{
  position: relative;
}

.main-image-txt {
  position: absolute;
  top: 38%;
  left: 50%;
  z-index: 10;
  width: 300px;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-5%);
  color: #000000;
  font-weight: bold;  
  font-size: 1.6em;
  font-family: 'Shippori Mincho', serif;
  text-align: center;
}

@media screen and (min-width:768px) {

.main-image-area {    
  padding: 0px 0px 0px 0px ;
}

.main-image img {
  height: 300px;
}

.main-image-txt {
  top: 45%;
  width: 500px;
  font-size: 1.9em ;
 }
}

/*-------------------------------------------
 パンくずリスト
-------------------------------------------*/

.a-bread {
  display: none;
}

.a-bread ul {
  display: flex;
  list-style-type: none;
  padding: 0;
}

.a-bread li {
 font-size: 1.0em;
}

.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: 1220px;
  margin: 0 auto;
  padding: 3px 15px 0px 15px ;
 }
}


 /*-------------------------------------------
  メールでのお問い合わせ
-------------------------------------------*/

.toiawase-area {
  position: relative;
  padding: 40px 0px 20px 0px ;
  background-color: #ffffff;
}

.toiawase-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 15px 0px 15px;
}

.toiawase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0px 20px 0px;
}

.h2-txt {
  text-align: left;
  border-left: solid #373737 8px;
  padding: 7px 0px 7px 0px;
  font-size: 1.3em;
  letter-spacing: 0.1em;
  border-bottom: solid 1.5px #ccc;
}

.h2-txt span {
  padding-left: 10px;
}

.toiawase p {
  padding: 40px 0px 0px 0px;
}

.toiawase-list { 
  max-width: 100%;
  padding: 10px 0px 10px 0px;
  font-size: 0.9em;
}    

table {
  width: 100%;
}

.detail-list-flex {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
}

.detail-list_01_top {
  padding: 30px 0px 30px 20px;
  text-align: left;
  font-weight:normal;
  background-color: #f7f7f7;
  border-top: 1px solid #ccc;
  border-bottom: 0px solid #ccc;  
}

.detail-list_02_top {
  padding: 30px 0px 30px 10px;
  background-color: #fff;
  border-top: 1px solid #ccc;
}

input {
  width: 100%;
  padding: 5px;
  border: 1px solid #d2d2d2;
}

.example-txt {
  display: block; 
  padding: 10px 0px 10px 10px;
}

.required-txt {
  float: right;
  background-color: #373737;
  color: #FFF;
  font-size: 0.9em;
  font-weight:normal;
  margin: 0px 15px 0px 0px ;
  padding: 2px 14px;
}

.detail-list_011 {
  width: 100%;
  padding: 30px 0px 30px 20px;
  font-weight:normal;
  text-align: left;
  background-color: #f7f7f7;
  border-top: 1px solid #ccc; 
  border-bottom: 1px solid #ccc;
}

.detail-list_021 {
  padding: 30px 0px 30px 0px;
  font-weight:normal;
  background-color: #fff;
  font-weight: 300;
}

select {
  width: 100%;
  padding: 5px;
}

.detail-list_01 {
  padding: 30px 0px 30px 20px;
  text-align: left;
  font-weight:normal;
  background-color: #f7f7f7;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.detail-list_02 {
  padding: 30px 0px 10px 10px;
  font-weight:normal;
  background-color: #fff;
  font-weight: 300;
}

textarea {
 width: 100%;
}

.button {
  border-radius: 3px;   
  margin: 20px 20px 0px 0px  ;   
  padding: 20px 20px 20px 20px ;
  transition: all 0.5s;
}

.button:hover {
   background:  #373737;
   color: #fff;
}

@media screen and (min-width:501px) and (max-width:959px) {

.toiawase-list { 
  font-size: 1.0em;
} 

select {
  width: 400Px;
}

textarea {
  width: 100%;
 }

.sousin-txt {
  padding: 0px 0px 20px 0px ;
  text-align: center;
}

.button {
  width: 80%;
  border-radius: 3px;   
  margin: 30px 20px 0px 0px  ;   
  padding: 20px 20px 20px 20px ;
  transition: all 0.5s;
 }
} 

@media screen and (min-width:960px) {

.toiawase-list { 
  padding: 20px 0px 30px 0px;
  font-size: 1.0em;
} 

.detail-list-flex {
  flex-direction: row;
  flex-wrap: wrap
}

.detail-list_01_top {
  flex-basis: 35%;
  border-bottom: 1px solid #ccc;
}

.detail-list_02_top {
  flex-basis: 65%;
  padding: 30px 20px 30px 30px;
  border-bottom: 1px solid #ccc;
}

input { 
  width: 400px;
}

.required-txt {
  float: right;
  background-color: #373737;
  color: #FFF;
  font-size: 0.9em;
  font-weight:normal;
  margin: 0px 20px 0px 0px ;
  padding: 2px 14px;
}

.detail-list_011 {
  flex-basis: 35%;
  border-top: 0px solid #ccc;
}

.detail-list_021 {
  flex-basis: 65%;
  padding: 30px 20px 30px 30px;
  border-top: 0px solid #ccc;
  border-bottom: 1px solid #ccc;
}

select {
  width: 400Px
}

.detail-list_01 {
  flex-basis: 35%;
  border-top: 0px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.detail-list_02 {
  flex-basis: 65%;
  padding: 30px 20px 30px 30px;
  border-bottom: 1px solid #ccc;
  border-top: 0px solid #ccc;
 }

textarea {
  width: 100%;
}

.sousin-txt {
  padding: 20px 0px 20px 0px ;
}

.button {
  margin: 30px 20px 0px 0px  ;   
 }
}


/*-------------------------------------------
  ページトップ
-------------------------------------------*/

.page-top {
  position: fixed;
  right: 8% ;
  bottom: 5% ;
  width: 50px;
  height: 50px;
  font-size: 2.5em;
}

.page-txt {
  font-size: 0.2em;
  position: absolute;
  top: -20%;
  left: 40%;
  transform: translate(-50%,0%);
  font-weight: bold;
  width: 100px;
  text-align: center;
} 

@media screen and (min-width:768px) {
 
 .page-top {
  font-size: 3em;
}
 
.page-txt {
  left: 50%;
  font-size: 0.25em;
} 

.page-top a::after {
  width: 60px;
  height: 60px;
 }
}
   
/*-------------------------------------------
 フッター
-------------------------------------------*/

.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: 12px;
}

.foot-bottom_copy_02 {
  display: none;
  color: rgb(255, 255, 255);
}

.space-text {
  margin: 0px 50px 0px 0px ;
}
.yamato-top {
  color: rgb(255, 255, 255);
}  

@media screen and (min-width:768px) {

.foot-bottom_copy_01 {
  display: none;
}  

.foot-bottom_copy_02 {
  display: block;
  color: rgb(255, 255, 255);
 }

}
