@charset "UTF-8";

  :root{
    --main-color: #707070;
    --sub-color: #F2D719;
    --base-color: #2c2e33;
    --point-color: #ffc93c;
  }

  body {
    max-width: 1500px;
    margin: auto;
    background-color: #f8f9fa!important;
    position: inherit;
  }

  @media (max-width: 768px) {
    .container{
      width: 90%!important;
    }
  }

  header {
    max-width: 1500px;
    margin: auto;
  }
  
  header h1 {
    font-size: 13px;
    font-weight:normal;
    color:white;
    background-color: var(--main-color);
    padding: 10px 30px;
  }
  
  .headerimgsmall {
    display:none;
  }
  
  .headerimgbig {
    width: 100%;
    height: 100%;
    padding-left: 10%;
    padding-right: 10%;
    max-width: 800px;
    margin: auto;
  }
 
nav {
  padding: 0;
  background-color: var(--base-color);
  font-size: 15px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* ナビゲーション全体に対して相対位置を設定 */
  z-index: 100;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  margin-left: 30px;
}

.nav-links li {
  padding: 15px 0;
  width: 150px;
  height: 45px;
  background-color: var(--base-color);
  font-weight: bold;
  color: white;
}

.nav-links li a {
  display: block;
}

.nav-links li:hover {
  border-bottom: solid 3px var(--main-color);
  background-color: var(--sub-color);
  color: white;
}

/* ハンバーガーメニューアイコン */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
}

.hamburger-menu span {
  background: white;
  height: 3px;
  width: 100%;
  margin: 4px 0;
  transition: 0.4s;
}

/* スマホ画面（幅768px以下）でのスタイル */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: var(--base-color);
    width: 100%;
    flex-direction: column;
    align-items: center;
    z-index: 100;
  }
  .nav-links li{
    border-bottom: 1px solid #f8f9fa;
    width: 100%;
  }

  .hamburger-menu {
    display: flex;
    margin-right: 5%;
  }

  /* ハンバーガーメニューがクリックされた時のスタイル */
  .nav-links.active {
    display: flex;
    z-index: 99;
  }
}


  .logo img {
    height: 50px;                   /* ロゴ画像のサイズ */
    padding: 5px;
  }
  
  .company_name{
    display: flex;
    justify-content: flex-start;
    text-align:center;
  }

  .home {
    width: 70px;
  }

  .home:hover {
    border-bottom: solid 3px white;
  }

  .nowmanu {
    color:var(--main-color);
    background-color: var(--sub-color);
  }

  .nowmanu:hover {
    border-bottom: solid 3px var(--main-color);
  }
  .nowmanu a:hover {
    color:white!important;
  }

  .gohome {
    width: 70px;
    background-color:var(--point-color);
    color: var(--main-color);
  }

  .gohome:hover {
    border-bottom: solid 3px var(--main-color);
  }


/*  information-CSS */

 main {
   margin-top: 20px;
 }
  
  .acd-check{
    display: none;
  }
  .acd-label{
    background: var(--sub-color);
    color: var(--main-color);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    padding: 10px;
  }
  .acd-content{
    border: none;
    height: 0;
    opacity: 0;
    transition: .5s;
    visibility: hidden;
  }
  .acd-check:checked + .acd-label + .acd-content{
    height: auto;
    margin: 5px 20px;
    opacity: 1;
    visibility: visible;
  }

  .acd-content ul li h1 {
    padding: 10px;
    margin-right: 20px;
    border-left: solid 8px var(--point-color);
    border-bottom: solid 1px var(--point-color);
 /*    background-color: #EEE; */
    font-weight: bold;
  }

  .acd-content ul li p {
    padding: 10px;
    margin-right: 20px;
  }

  .add {
    font-size: 12px;
    padding: 0 0 10px 0;
  }

  .acd-content table {
    /*border: solid 2px var(--main-color);*/
    margin:10px;
    max-width: 800px;
    border-collapse:  collapse;
    text-align: center;
  }

  .acd-content th,td  {
    /*border: solid 1px var(--main-color);*/
    padding:10px;
    text-align: center;
    vertical-align: middle;
  }

  .acd-content .th1,.th3  {
    width:  10%;  
  }

  .acd-content .th2 {
    width:  20%;  
  }
  .acd-content th{
  background-color: #EEE;
  }
  

/* =============================================
- FOOTER
================================================ */
/*-----------------------------------------------------------------
	footer
----------------------------------------------------------------- */
#footer {
  padding: 30px 10px;
  background-color: #696969;
  color: #fff;
}
#footer h5{
  margin-top: 20px;
  font-size: large;
  font-weight: bold;
  position: relative;
  padding: 0 0 0 16px;
}
#footer h5::before{
  content: "";
  position: absolute;
  top: 50%;   /* 縦軸をセンタリングする */ 
  left: 0;
  transform: translateY(-50%);   /* 縦軸をセンタリングする */  
  border: 5px solid transparent;
  border-left: 8px solid #FFFFFF;   /* 好みで色を変えてください */  
}
#footer:hover,
#footer:active,
#footer:focus {
  color: white;
}
#footer .f-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#footer .f-nav li a {
  color: #fff;
}
#footer .f-nav li a:hover,
#footer .f-nav li a:active,
#footer .f-nav li a:focus {
  color: white;
}
#footer .f-nav li a:hover {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.2em;
}
#footer .f-nav li:after {
  content: "/";
  width: 1em;
  margin-left: 1em;
  margin-right: 1em;
}
#footer .f-nav li:last-of-type:after {
  display: none;
}
#footer .f-inBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 1050px;
  font-size: 14px;
  font-size: 0.8rem;
  margin-top: 40px;
}
#footer .f-inBox .sec {
  width: calc(50% - 50px);
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  margin-bottom: 4em;
}
#footer .f-inBox .sec .ttlStyle01 {
  border-bottom: 3px solid #fff;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 0.8em;
}
#footer .f-inBox .sec .ttlStyle01 a {
  color: #fff;
}
.ttlStyle01 {
  font-weight: 900;
  padding-bottom: 0.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.ttlStyle01 a {
  font-family: inherit;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: auto;
}
#footer .f-inBox .sec .ttlStyle01 a:hover,
#footer .f-inBox .sec .ttlStyle01 a:active,
#footer .f-inBox .sec .ttlStyle01 a:focus {
  color: white;
}
#footer .f-inBox .sec h4 {
  font-weight: 900;
  margin-top: 2em;
}
#footer .f-inBox .sec h4.first {
  margin-top: 1.5em;
}
#footer .f-inBox .sec p {
  line-height: 1.8em;
}
#footer .f-inBox .sec p span {
  display: inline-block;
}
#footer .f-inBox .sec .icon-deliv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1em;
  margin-bottom: 2em;
}
#footer .f-inBox .sec .icon-deliv li {
  margin-right: 10px;
}
#footer .f-inBox .sec .icon-deliv li img {
  height: 25px;
}
#footer .f-inBox .sec .tracking {
  margin-top: 0.5em;
}
#footer .f-inBox .sec .tracking a {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
  padding: 5px 8px;
  margin-right: 0.8em;
}
#footer .f-inBox .sec .tracking a:hover,
#footer .f-inBox .sec .tracking a:active,
#footer .f-inBox .sec .tracking a:focus {
  color: white;
}
#footer .f-inBox .sec .f-links {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.2em;
}
#footer .f-inBox .sec .f-links:hover,
#footer .f-inBox .sec .f-links:active,
#footer .f-inBox .sec .f-links:focus {
  color: white;
}
#footer .f-inBox .sec .pay-list {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 1em;
  font-weight: bold;
  line-height: 1.8em;
  list-style: inherit;
  margin-left: 2em;
}
#footer .f-inBox .sec .fb-wrap {
  width: 100%;
  height: 400px;
}
#footer .f-inBox .sec .fb-page {
  text-align: center !important;
  margin: 0 auto !important;
}
#footer .f-inBox .sec .fb-page span iframe {
  height: 400px !important;
  margin-left: 20px;
}
#footer .f-inBox .sec .btnArea {
  margin-bottom: 5em;
}
#footer .f-endTxt {
  text-align: center;
  font-weight: bold;
}
#footer .f-endTxt span {
  display: inline-block;
}
#footer .copy {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2em;
}

@media screen and (min-width: 374px) and (max-width: 765px) {
  #footer .f-nav {
    padding: 30px 10px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  #footer .f-nav li {
      margin-bottom: 0.5em;
  }
  #footer .f-nav li a {
      color: #fff;
  }
  #footer .f-nav li a:hover,
  #footer .f-nav li a:active,
  #footer .f-nav li a:focus {
      color: white;
  }
  #footer .f-nav li a:hover {
      border-bottom: 1px solid #fff;
      padding-bottom: 0.2em;
  }
  #footer .f-inBox {
      height: auto;
      font-size: 14px;
      font-size: 0.875rem;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }
  #footer .f-inBox .sec {
      width: 100%;
      -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
      margin-bottom: 4em;
  }
  #footer .f-inBox .sec .ttlStyle01 {
      border-bottom: 3px solid #fff;
      font-size: 18px;
      font-size: 1.125rem;
      margin-bottom: 0.8em;
  }
  #footer .f-inBox .sec h4 {
      font-weight: 900;
      margin-top: 2em;
  }
  #footer .f-inBox .sec h4.first {
      margin-top: 1.5em;
  }
  #footer .f-inBox .sec p {
      line-height: 1.8em;
  }
  #footer .f-inBox .sec p span {
      display: inline-block;
  }
  #footer .f-inBox .sec .icon-deliv {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-top: 1em;
      margin-bottom: 2em;
  }
  #footer .f-inBox .sec .icon-deliv li {
      margin-bottom: 10px;
  }
  #footer .f-inBox .sec .icon-deliv li img {
      height: 30px;
      width: auto;
  }
  #footer .f-inBox .sec .pay-list {
      margin-left: 1em;
  }
  #footer .f-inBox .sec .fb-wrap {
      width: 100%;
      margin: 0 auto 3em !important;
  }
  #footer .f-inBox .sec .fb-page {
      text-align: center !important;
      margin: 0 auto !important;
  }
  #footer .f-inBox .sec .fb-page span iframe {
      margin-left: 0;
  }
  #footer .f-endTxt {
      font-size: 12px;
      font-size: 0.75rem;
  }
  #footer .copy {
      font-size: 10px;
      font-size: 0.625rem;
  }
}
@media screen and (min-width: 765px) and (max-width: 980px) {
  #footer .f-nav li {
      margin-bottom: 0.5em;
  }
  #footer .f-inBox {
      height: auto;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
  }
  #footer .f-inBox .sec {
      width: calc(50% - 10px);
  }
  #footer .f-inBox .sec .fb-wrap {
      width: 100%;
      margin: 0 auto 3em !important;
  }
  #footer .f-inBox .sec .fb-page {
      text-align: center !important;
      margin: 0 auto !important;
  }
  #footer .f-inBox .sec .fb-page span iframe {
      margin-left: 0;
  }
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.7rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.6rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.1rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}