ul,
li,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
}

.Print {
    display: none;
}

h1,h2,h3,h4,h5,h6{
    font-size: 16px;
    padding: 0;
    margin: 0;

}

/*  */
/* デフォルトでは非表示 */
.show_on_pc {
  display: none;
}

/* 画面幅が1024px以上の場合に表示 */
@media screen and (min-width: 1024px) {
  .show_on_pc {
      display: inline;
  }
}

html{
  max-width: 100vw;
  overflow-x: hidden;
}

body{
  font-size: 16px;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  max-width: 100vw;
  overflow-x: hidden;
  /* overflow: hidden; */
  /* max-width: 100px;
  background-color: #ff0000; */
}

/* 各色の定義 */
:root {
  --red: #ff0000;
  --blue: #0000ff;
  --green: #73B81A;
  --white: #ffffff;
  --yellow: #FBDA2A;
  --BreadcrumbList_Color: #ffffff;/*　パンくず背景色  */
}
/* リンクのデフォルトスタイルをリセット */
a:link, a:visited {
  color: inherit; /* 親要素から色を継承 */
  text-decoration: none; /* 下線を消す */
  /* cursor: auto; カーソルをデフォルトに戻す */
}

/* マウスオーバー時のスタイルをリセット */
a:hover {
  color: inherit; /* ホバー時も色を変えない */
  text-decoration: none; /* ホバー時の下線を消す */
}

/* アクティブ（クリック中）のスタイルをリセット */
a:active {
  color: inherit; /* アクティブ時も色を変えない */
  text-decoration: none; /* アクティブ時の下線を消す */
}



/* 配色 */

/* 共有 */
.rotated-text1 {
  display: inline-block; /* または block; 要素が変形の原点を持つために必要 */
  transform: rotate(-45deg); /* 文字を45度回転 */
}
.rotated-text2 {
  display: inline-block; /* または block; 要素が変形の原点を持つために必要 */
  transform: rotate(45deg); /* 文字を45度回転 */
}


/* メガメニュー */
.menu:hover > a {background-color: var(--blue);}//* メガメニュー内背景色 */
.child_menu { /* 下層メニューのスタイル */
  width: 100%;
  position: absolute;
  top: 100%; /* 親項目の直下に配置*/
  left: 0;
  padding: 30px;
  color: #333; /* 文字色 */
  background: #ffb6c1; /* 背景色 */
  visibility: hidden; /* 下層メニューを非表示 */
}

.child_Main { /* 下層メニューのスタイル */
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 30px;
  color: #333; /* 文字色 */
  background: #ffb6c1; /* 背景色 */
  visibility: hidden; /* 下層メニューを非表示 */
  text-align: left;
}


    /* トップのサイト説明セクション */
    @media screen and (max-width:768px) {

      /* モバイル */
      .TopInfo_1_Wrap {
          margin-top: 60px;
      }

      .TopInfo_1 {
          padding: 10px;
      }

      .TopInfo_1_circle {
          width: calc(100vw/3-2);
          height: calc(100vw/3-2);
          background-color: #FBDA2A;
          /* 円の背景色 */
          border-radius: 50%;
          /* 円形にする */
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          /* テキストの色 */
          font-size: 14px;
          text-align: center;
          position: relative;
          margin: auto;
          line-height: 1;
      }

      .TopInfo_1_circle::before {
          content: "";
          /* 疑似要素の追加 */
          display: block;
          padding-top: 100%;
          /* 高さを幅の100%にすることで円形に */
      }

      .TopInfo_1_circle>.text {
          position: absolute;
          /* 絶対位置 */
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          /* 中央揃え */
          font-size: 16x;
          color: #000;
          font-weight: bold;
      }
  }


  @media screen and (min-width: 1024px) {

      /* PC */
      .TopInfo_1_Wrap {
          margin-top: 60px;
      }

      .TopInfo_1 {
          padding: 10px;
      }

      .TopInfo_1_circle {
          width: 200px;
          height: 200px;
          background-color: #FBDA2A;
          /* 円の背景色 */
          border-radius: 50%;
          /* 円形にする */
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          /* テキストの色 */
          font-size: 16px;
          text-align: center;
          position: relative;
          margin: auto;
      }

      .TopInfo_1_circle::before {
          content: "";
          /* 疑似要素の追加 */
          display: block;
          padding-top: 100%;
          /* 高さを幅の100%にすることで円形に */
      }

      .TopInfo_1_circle>.text {
          position: absolute;
          /* 絶対位置 */
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          /* 中央揃え */
          font-size: 20px;
          color: #000;
          font-weight: bold;
      }
  }

  /* 検索 */
  .InputSearch_Group {
      width: 800px;
  }

  @media screen and (max-width:768px) {
      .InputSearch_Group {
          width: 100%;
      }
  }


  .InputSearch {
      padding: 10px;
      border-color: #73B81A;
      border-width: 2px;
  }

  .InputSearch_Icn {
      padding: 10px;
      background-color: #73B81A;
      border-color: #73B81A;
      color: #fff;
      border-radius: 0 5px 5px 0;
      width: 80px;
      border-width: 2px;
  }

  .InputSearch_Wrap {
      width: 100%;
      /* display: flex; */
      /* Flexboxレイアウトを有効にする */
      /* justify-content: center; */
      /* 水平方向の中央揃え */


  }
  @media screen and (max-width:768px) {
    .InputSearch_Wrap {
        padding: 0 !important;
    }
}



/* header */
header{

}

#SiteTitle{
  padding-top: 30px;
  padding-left: 5px;

}
@media screen and (max-width:768px) {
  #SiteTitle{
  padding-top: 20px;
  padding-left: 5px;
  }
}

#SiteTitle h1{
font-size: 18px;
}

/*  */
#SiteTop{
  height: 80px;
  border-bottom: solid 1px #E5E5E5;
}

@media screen and (max-width:768px) {
  #SiteTop{
    height: 60px;
  }
}


/* グローバルナビ */
#GNavi{
  border-bottom: solid 1px #E5E5E5;
}

#GNavi > nav > ul{
    display: flex;
    list-style-type: none; /* リストの点を非表示にする */
    padding: 0; /* デフォルトのパディングを削除 */
}
#GNavi > nav > ul > li{
    display: inline-block;
    list-style-type: none; /* リストの点を非表示にする */
    width: 20%;
}

/*  */
.HeroSection_Test{

}

/*  */
.global_menu { /* メニュー全体のスタイル */
    width: 100%;
    position: relative;
    color: #333; /* 文字色 */
    text-align: center;
  }
  
  .global_menu li {
    display: inline-block;
  }
  
  .global_menu a { /* 各項目のスタイル */
    display: block;
    padding: 15px 30px;/* グローバルメニューの高さはパディングで設定 */
  }
  
  .menu:hover > a {
    background: #FFF9F0;
  }
  
  .child_menu > li > a { /* 子項目のスタイル */
    font-size: 0.8em;
  }
  .child_menu > li > a:hover { /* 子項目のスタイル（ホバー時） */
    background: #FFF9F0;
  }
  
  .child_menu { /* 下層メニューのスタイル */
    width: 100%;
    position: absolute;
    top: 100%; /* 親項目の直下に配置*/
    left: 0;
    padding: 30px;
    color: #333; /* 文字色 */
    background: #FFF9F0; /* 背景色 */
    visibility: hidden; /* 下層メニューを非表示 */
  }

  .child_Main { /* 下層メニューのスタイル */
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 30px;
    color: #333; /* 文字色 */
    background: #FFF9F0; /* 背景色 */
    visibility: hidden; /* 下層メニューを非表示 */
    text-align: left;
  }

  .child_MainList > li{
    display: flex;         /* Flexboxを有効化 */
    flex-direction: column; /* 子要素（li要素）を縦方向に配置 */
    padding: 0;            /* デフォルトのパディングを削除 */
    margin: 0;
    list-style-type: none; /* リストの点を非表示にする */
  }



  .child_menu {
    display: flex;         /* Flexboxレイアウトを適用 */
    flex-direction: column; /* 子要素を縦方向に並べる */
  }
  
  .menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
    visibility: visible; /* 下層メニューを表示 */
  }
  .menu:hover .child_Main { /* 下層メニューのスタイル（親項目ホバー時） */
    visibility: visible; /* 下層メニューを表示 */
  }
  
  .child_menu a:hover {
    color: #fff;
  }


  .child_menu_2 {
    display: flex;         /* Flexboxレイアウトを適用 */
    flex-direction: column; /* 子要素を縦方向に並べる */
    margin-bottom: 15px;
  }
  
  .menu:hover .child_menu_2 { /* 下層メニューのスタイル（親項目ホバー時） */
    visibility: visible; /* 下層メニューを表示 */
  }
  .menu:hover .child_Main { /* 下層メニューのスタイル（親項目ホバー時） */
    visibility: visible; /* 下層メニューを表示 */
  }
  
  .child_menu_2 a:hover {
    color: #fff;
  }


  .Fixed_Container {
    position: relative;
}

.Follow_Scroll {
    /* position: fixed; */
    position: sticky;
    top: 0;
    left: auto;
    z-index: 1000;
}

    /* -------------------- */
    .nav-list {
      /* navの横並び */
      display: flex;
  }

  .nav-item {
      /* メニューの右側に余白 */
      margin-right: 55px;
  }

  .burger-btn {
      display: none;
  }

  .SP_nav-wrapper {
      display: none;
  }

  @media screen and (max-width:768px) {

      /* 以下、ハンバーガーボタン */
      .burger-btn {
          display: block;
          height: 39px;
          position: relative;
          width: 39px;
          z-index: 3;
          /* codepenの挙動のため */
          background-color: transparent;
          border: none;
          /* 上下間隔調整 */
          margin-top: 20px;
      }

      .bar {
          background-color: #000;
          display: block;
          height: 1px;
          left: 50%;
          position: absolute;
          transform: translateX(-50%);
          width: 20px;
      }

      .bar_top {
          top: 10px;
      }

      .bar_mid {
          top: 50%;
          transform: translate(-50%, -50%);
      }

      .bar_bottom {
          bottom: 10px;
      }

      .burger-btn.close .bar_top {
          transform: translate(-50%, 10px) rotate(45deg);
          transition: transform .3s;
      }

      .burger-btn.close .bar_mid {
          opacity: 0;
          transition: opacity .3s;
      }

      .burger-btn.close .bar_bottom {
          transform: translate(-50%, -8px) rotate(-45deg);
          transition: transform .3s;
      }

      /* スクロール制御 */
      .noscroll {
          overflow: hidden;
      }

      /* 以下、ハンバーガーメニュー */
      .SP_nav-wrapper {
          visibility: hidden;
          height: 100vh;
          left: 0;
          position: fixed;
          top: 0;
          width: 100vw;
          opacity: 0;
          transition: opacity .5s;
          z-index: 2;
          /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
          display: block;
      }

      .SP_header-nav {
          /* 背景色 */
          background-color: #fff;
          height: 100%;
          width: 100%;
          z-index: 2;
      }

      .SP_nav-list {
          display: block;
          left: 50%;
          position: absolute;
          text-align: center;
          top: 50%;
          transform: translate(-50%, -50%);
      }

      .nav-item {
          margin-bottom: 40px;
          margin-right: 0;
      }

      /* メニューオープン時 */
      .SP_nav-wrapper.fade {
          opacity: 1;
          visibility: visible;
          z-index: 100000;

      }

      .burger-btn {
          z-index: 1000000;
      }

  }


  #GNavi {
      position: relative;
      z-index: 100000;
  }

  #GNavi>nav>ul>li {
      width: 25%;
  }

  @media screen and (max-width:768px) {

      /* s */
      #GNavi {
          display: none;
      }
  }

  .SideMenu_Taitle_Btn_1 h3 {
      color: #fff;
  }


  /* global_menu横の逆三角形 */
  .Triangle {
      margin-left: 10px;
      font-size: 10px;
      position: relative;
      /* 相対位置付け */
      top: -3px;
      /* 上方向に5px移動 */
  }




  /* 最後のリスト項目のスタイル */
  li:last-child {
      margin-right: 0;
  }

  #Menu_Bar {
      padding-top: 30px;
      padding-left: 5px;

  }

  @media screen and (max-width:768px) {
      #Menu_Bar {
          padding-top: 20px;
          padding-left: 5px;
      }
  }

  #Menu_Bar ul li {
      font-size: 12px;
      border-bottom: 1px solid #e5e5e5;
  }

  #SiteTitle h1 a img {
      width: 300px;
      height: auto;
  }

  /* リストのスタイル */
  #Menu_Bar ul {
      list-style-type: none;
  }

  /* リスト項目のスタイル */
  #Menu_Bar ul li {
      display: inline-block;
      margin-right: 30px;
  }

  #SiteTop {
      height: 80px;
      border-bottom: none;
  }

  .child_MainList li a {
      padding: 5px 30px;
  }


  .child_Menu::before {
      content: '>';
      /* 矢印のコンテンツを追加 */
      display: inline-block;
      /* インラインブロック要素として表示 */
      margin-right: 5px;
      color: #73B81A;
      font-size: 12px;
      top: 47%;
  }



  /* PC用のスタイル */
  @media only screen and (min-width: 768px) {

      /* PC向けのスタイルをここに記述 */
      #Menu_Bar {}

      /* サイドバー */
      .SideMenu_Taitle {
          background-color: var(--yellow);
          color: #fff;
          padding: 40px;
      }

      .SideMenu_SubTaitle {
          padding: 0;
      }
  }

  /* スマホ用のスタイル */
  @media only screen and (max-width: 767px) {

      /* スマホ向けのスタイルをここに記述 */
      #Menu_Bar {
          display: none;
      }

      .accordion {
          padding: 0;
      }

      .SideMenu_SubTaitle {
          padding: 0;
      }

      /* サイドバー */
      .SideMenu_Taitle {
          background-color: var(--yellow);
          color: #fff;
          padding: 40px;
      }

      .SP_nav-wrapper {
          overflow-y: scroll;
          background-color: #fff;
      }
  }

/* ヒーロー */
/* PC */
#Hero {
    width: 100vw;
    height: 272px;
    height: auto;
    background-color: var(--yellow);
    background-image: url(../img/Hero_Visual.png);
    padding: 10px 0 10px 0;

}

.HeroSection_Test {
    /* border: solid 1px #E5E5E5; */
    /* background-color: var(--yellow); */
}

.Hero_Text_Wrap {
    color: #fff;
    padding: 50px 30px;
    border-radius: 5px;
    font-weight: bold;
    color: #000;

    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    /* 赤の背景色で、透明度は50% */
    border-radius: 0.5;
    width: 800px;
}

.Hero_Btn_1 {
    width: 100%;
    height: 50px;
    display: flex;
    /* Flexbox レイアウトを適用 */
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    background-color: #73B81A;
    color: #fff;
    font-size: 16px;
}

/* モバイル */
@media screen and (max-width:768px) {
    .Hero_Text_Wrap {
        color: #fff;

        padding: 20px 20px;
        border-radius: 5px;
        font-weight: bold;
        color: #000;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.5);
        /* 赤の背景色で、透明度は50% */
        border-radius: 0.5;
        width: 100%;
        margin-top: 20px;
    }

    .Hero_Btn_Wrap {}

    .Hero_Btn_1 {
        width: 100%;
        height: 50px;
        display: flex;
        /* Flexbox レイアウトを適用 */
        justify-content: center;
        /* 水平方向の中央揃え */
        align-items: center;
        /* 垂直方向の中央揃え */
        background-color: #73B81A;
        color: #fff;
        font-size: 16px;
    }

}

/* メインコンテンツ */

/* パンくず */
#BreadcrumbList{
  padding-top: 15px;  /* 上下の間隔調整*/
  padding-bottom: 0px !important;
  border-bottom: solid 1px #E5E5E5;

}

.breadcrumb-item{
  font-size: 12px;
}


.breadcrumb{
  padding-left: 15px;
}

/* アイフレーム */
.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%; /* コンテナの幅をビューポートの幅に合わせます */
  padding-top: 56.25%; /* アスペクト比16:9の場合の値（9 / 16 = 0.5625） */
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* セクション */
.sectionTitle{
  text-align: center;
  font-size: 40px;
  font-weight: bold;

}
.sectionDec{
  text-align: center;
  margin-top: -5px;
  margin-bottom: 50px;
}




/* サポート */
.Support_Box1{
  background-color: #ffb6c1;
  background-image: url(../img/Banner_Monozukuri.png);
  padding: 15px;
  height: 170px;
  position: relative;
  background-size: cover;
}

.Support_Title{
  font-weight: bold;
}
.Support_Dec{
  font-weight: bold;
}
.Support_Box1_Arrow{
  position: absolute;
  bottom: 10px;
  right: 25px;
  font-size: 40px;
  color: #fff;
}

.Support_Box2{
  background-color: #ffb6c1;
  background-image: url(../img/Banner_Monozukuri.png);
  padding: 15px;
  height: 80px;
}
.Support_Title2{
  font-weight: bold;
  margin-top: 10px;
}

.Support_Box1_Arrow2{
  text-align: right;
  font-size: 40px;
  color: #fff;
  margin-top: -5px;
}

.Support_Title_s{
  font-size: 15px;
}

.Support_Title_m{
  font-size: 20px;
}




/* aside */

aside{

}


/* main */
main{}


/* バナー */
.PageBanner_A{

}


#PageTitle{

}

#PageTitle h2{
  font-size: 24px;

}

@media screen and (max-width:768px) {
  #PageTitle{
padding: 0 20px;
  }
}

#PageDec{}

/* メーカリスト */

.Maker_ExImg_Case{
  width: 100%;
  height: 300px;
  /* max-height: 100%; */
  display: flex;              /* Flexbox レイアウトを適用 */
  justify-content: center;    /* 水平方向の中央揃え */
  /* background-color: #ff0000; */

  overflow: hidden;      /* 画像がはみ出さないようにする */
  padding-top: 20px;

}
.Maker_ExImg_Case img{
  /* width: 250px; */
  /* height: 250px; */
  /* height: auto;
  object-fit: cover; */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* 画像全体を比率を保って表示 */
}

@media screen and (max-width:768px) {
  .Maker_ExImg_Case{
    max-height: 200px;
    margin-bottom: 20px;
    padding-top: 20px;
  }
}


.Maker_Info_Case{
  /* height: 450px; */
  padding:20px 0;
  pa
}

.Maker_Name_Case{

}
.Maker_Name_Case > h3{
  font-size: 22px;

}

.Maker_location_Case{
  border: solid 1px #E5E5E5;
  width: 100%;
  height: 100px;
  height: 130px;
  height: auto;

  padding: 10px;


}

.Maker_Lot_Case{
  width: 100%;
  height: 85px;
  padding: 10px;

}
.Maker_Lot_Box{
  border: solid 1px #E5E5E5;
  /* height: 40px; */

  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
  font-size: 14px;

  box-sizing: border-box; 


}

.Maker_OtherData_Case{

  
}

.Maker_Other_Case{

}

/* ボタン */
.Btn_A-100{
  width: 100%;
  height: 50px;
  display: flex;              /* Flexbox レイアウトを適用 */
  justify-content: center;    /* 水平方向の中央揃え */
  align-items: center;        /* 垂直方向の中央揃え */
  border: solid 1px #E5E5E5;
  font-size: 13px;
  font-weight: bold;
}

.Btn_B-100{
  width: 100%;
  height: 50px;
  display: flex;              /* Flexbox レイアウトを適用 */
  justify-content: center;    /* 水平方向の中央揃え */
  align-items: center;        /* 垂直方向の中央揃え */
  border: solid 1px #73B81A;
  background-color:  #73B81A;
  color: #ccc;
  font-size: 13px;
  font-weight: bold;
}

.Btn_C-100{
  width: 100%;
  height: 50px;
  display: flex;              /* Flexbox レイアウトを適用 */
  justify-content: center;    /* 水平方向の中央揃え */
  align-items: center;        /* 垂直方向の中央揃え */
  border: solid 1px #FBDA2A;
  background-color:  #FBDA2A;
  color: #ccc;
  font-size: 13px;
  font-weight: bold;
}


/*  */
footer{
  background-color:var(--yellow);
  color: #fff;
}

#FooterTitle{

}

/* フォーム */
.Promise_Flg_FormBox{
  width: 100%;
height: 100px;
overflow-y: scroll;
background-color: #F6F6F6;
padding: 5px;
}


    /* ブートストラップハックCSS */
    @media (max-width: 768px) {
      .container {
          width: 100%;
          max-width: none;
          padding-right: 0;
          padding-left: 0;


      }
  }



  .TopContact_Text{
    font-size: 20px;
    text-align: center;
  }


  .section_Wrap_1{
    padding-top: 50px;
    padding-bottom: 50px;
  }
    /* モバイル向けスタイル */
  @media screen and (max-width:768px) {
    .Sp_Adjust_1{
      padding: 0 20px;
    }

    .Sp_Adjust_2{
      padding: 0 20px;
      margin-bottom: 40px;;
    }
  }


  .Document_Img{}
  .Document_Text{
    margin-top: 20px;
    text-align: center;
  }

  @media screen and (max-width:768px) {
    .Document_Box{
      margin-bottom: 20px;
    }
    .Document_Text{
      margin-top: 0px;
      text-align: center;
    }
  }


.Btn_1_Wrap{
  width: 100%;
  text-align: center;
  display: flex; /* Flexboxレイアウトを有効にする */
  justify-content: center; /* 水平方向の中央揃え */
}

  .Btn_1{
    background-color: #73B81A;
    display: flex; /* Flexboxレイアウトを有効にする */
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center; /* 垂直方向の中央揃え */
    height: 50px;
    width: 350px;
    color: #fff;
    font-weight: bold;
  }




  .Section_Hr{
    margin-top: 70px;
  }


  .Top_newsBox{
    margin-bottom: 20px;
  }
.Top_newsTitle{
  border-bottom: #E5E5E5 1px solid;
  padding-bottom: 10px; /* テキストと下線の間の間隔 */
  margin-bottom: 5px;
}
.Top_newsDec{}
@media screen and (max-width:768px) {
  .Top_newsDec{
    /* display: none; */
    margin-bottom: 20px;
  }
}


.Item_Detail_Part_1_Title{
  width: 100%;
  text-align: center;
  text-align: left;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* メーカー詳細 */
.Maker_Detail_MakerInfo{
  font-weight: bold;
}


.Maker_Detail_MakerName{
  font-weight: bold;
  font-size: 32px;
}
.Maker_Detail_MakerOverview{
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .Maker_Detail_MakerOverview{
    margin-top: -10px;
  }
}

@media screen and (max-width:768px) {
  .Maker_Detail_MakerName{
    font-size: 20px;
  }
}


.Maker_Detail_MakerImg{
  width: 100%;
  height: 300px;
  /* background-color: #145d6d; */
  overflow: hidden;      /* 画像がはみ出さないようにする */
  display: flex;              /* Flexbox レイアウトを適用 */
  justify-content: center;    /* 水平方向の中央揃え */
}
.Maker_Detail_MakerImg img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* 画像全体を比率を保って表示 */
}

@media screen and (max-width:768px) {
  .Maker_Detail_MakerImg{
    max-height: 200px;
    margin-bottom: 20px;
  }
}





.Maker_Detail_SubTitle{
  font-size: 23px;
  font-weight: bold;
}

.Maker_Detail_ItemBox{
  width: 100%;
}


.Maker_Detail_ItemBox_Img{
  width: 100%;
  height: 300px;
  /* max-height: 100%; */
  display: flex;              /* Flexbox レイアウトを適用 */
  justify-content: center;    /* 水平方向の中央揃え */
  /* background-color: #ff0000; */

  overflow: hidden;      /* 画像がはみ出さないようにする */
}

@media screen and (max-width:768px) {
  .Maker_Detail_ItemBox_Img{
    height: 200px;
  }
}




.Maker_Detail_ItemBox_Img img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* 画像全体を比率を保って表示 */
}


@media screen and (max-width:768px) {
  .Maker_Detail_ItemBox_Img img{
    max-height: 200px;
    margin-bottom: 20px;
  }
}









.Maker_Detail_ItemBox_Title{
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-top: 10px;
  font-weight: bold;
}
.Maker_Detail_ItemBox_Dec{
  margin-top: 10px;
}

/* 追従のスタイル */
.Fixed_Container {
  position: relative;
}

.Follow_Scroll {
  /* position: fixed; */
  position: sticky;
  top: 0;
  left: auto;
  z-index: 1000;
}


    /* -------------------- */
    .nav-list {
      /* navの横並び */
      display: flex;
  }

  .nav-item {
      /* メニューの右側に余白 */
      margin-right: 55px;
  }

  .burger-btn {
      display: none;
  }

  .SP_nav-wrapper {
      display: none;
  }

  @media screen and (max-width:768px) {

      /* 以下、ハンバーガーボタン */
      .burger-btn {
          display: block;
          height: 39px;
          position: relative;
          width: 39px;
          z-index: 3;
          /* codepenの挙動のため */
          background-color: transparent;
          border: none;
          /* 上下間隔調整 */
          margin-top: 20px;
      }

      .bar {
          background-color: #000;
          display: block;
          height: 1px;
          left: 50%;
          position: absolute;
          transform: translateX(-50%);
          width: 20px;
      }

      .bar_top {
          top: 10px;
      }

      .bar_mid {
          top: 50%;
          transform: translate(-50%, -50%);
      }

      .bar_bottom {
          bottom: 10px;
      }

      .burger-btn.close .bar_top {
          transform: translate(-50%, 10px) rotate(45deg);
          transition: transform .3s;
      }

      .burger-btn.close .bar_mid {
          opacity: 0;
          transition: opacity .3s;
      }

      .burger-btn.close .bar_bottom {
          transform: translate(-50%, -8px) rotate(-45deg);
          transition: transform .3s;
      }

      /* スクロール制御 */
      .noscroll {
          overflow: hidden;
      }

      /* 以下、ハンバーガーメニュー */
      .SP_nav-wrapper {
          visibility: hidden;
          height: 100vh;
          left: 0;
          position: fixed;
          top: 0;
          width: 100vw;
          opacity: 0;
          transition: opacity .5s;
          z-index: 2;
          /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
          display: block;
      }

      .SP_header-nav {
          /* 背景色 */
          background-color: #fff;
          height: 100%;
          width: 100%;
          z-index: 2;
      }

      .SP_nav-list {
          display: block;
          left: 50%;
          position: absolute;
          text-align: center;
          top: 50%;
          transform: translate(-50%, -50%);
      }

      .nav-item {
          margin-bottom: 40px;
          margin-right: 0;
      }

      /* メニューオープン時 */
      .SP_nav-wrapper.fade {
          opacity: 1;
          visibility: visible;
          z-index: 100000;

      }

      .burger-btn {
          z-index: 1000000;
      }

  }


  #GNavi {
      position: relative;
      z-index: 100000;
  }

  #GNavi>nav>ul>li {
      width: 25%;
  }

  @media screen and (max-width:768px) {

      /* s */
      #GNavi {
          display: none;
      }
  }

  .SideMenu_Taitle_Btn_1 h3 {
      color: #fff;
  }


  /* global_menu横の逆三角形 */
  .Triangle {
      margin-left: 10px;
      font-size: 10px;
      position: relative;
      /* 相対位置付け */
      top: -3px;
      /* 上方向に5px移動 */
  }




  /* 最後のリスト項目のスタイル */
  li:last-child {
      margin-right: 0;
  }

  #Menu_Bar {
      padding-top: 30px;
      padding-left: 5px;

  }

  @media screen and (max-width:768px) {
      #Menu_Bar {
          padding-top: 20px;
          padding-left: 5px;
      }
  }

  #Menu_Bar ul li {
      font-size: 12px;
      border-bottom: 1px solid #e5e5e5;
  }

  #SiteTitle h1 a img {
      width: 300px;
      height: auto;
  }

  /* リストのスタイル */
  #Menu_Bar ul {
      list-style-type: none;
  }

  /* リスト項目のスタイル */
  #Menu_Bar ul li {
      display: inline-block;
      margin-right: 30px;
  }

  #SiteTop {
      height: 80px;
      border-bottom: none;
  }

  .child_MainList li a {
      padding: 5px 30px;
  }


  .child_Menu::before {
      content: '>';
      /* 矢印のコンテンツを追加 */
      display: inline-block;
      /* インラインブロック要素として表示 */
      margin-right: 5px;
      color: #73B81A;
      font-size: 12px;
      top: 47%;
  }
  .child_Menu2::before{
    content: '・';
    /* 矢印のコンテンツを追加 */
    display: inline-block;
    /* インラインブロック要素として表示 */
    margin-right: 5px;
    color: #73B81A;
    font-size: 12px;
    top: 47%;
  }

  .child_MenuDec{
    margin-bottom: 15px !important;
  }



  /* PC用のスタイル */
  @media only screen and (min-width: 768px) {

      /* PC向けのスタイルをここに記述 */
      #Menu_Bar {}

      /* サイドバー */
      .SideMenu_Taitle {
          background-color: var(--yellow);
          color: #fff;
          padding: 40px;
      }

      .SideMenu_SubTaitle {
          padding: 0;
      }
  }

  /* スマホ用のスタイル */
  @media only screen and (max-width: 767px) {

      /* スマホ向けのスタイルをここに記述 */
      #Menu_Bar {
          display: none;
      }

      .accordion {
          padding: 0;
      }

      .SideMenu_SubTaitle {
          padding: 0;
      }

      /* サイドバー */
      .SideMenu_Taitle {
          background-color: var(--yellow);
          color: #fff;
          padding: 40px;
      }

      .SP_nav-wrapper {
          overflow-y: scroll;
          background-color: #fff;
      }
  }


  /*  */
  /*  */
  /*  */
      /* アコーディオン */
      .accordion {
        padding: 0;
    }

    .no-border .accordion-item {
        border: none !important
    }

    .accordion-button {
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: background-color 0.2s ease;
    }

    .accordion-button_No_Allo {
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: background-color 0.2s ease;
    }

    .accordion-button:hover {
        background-color: #ccc;
    }

    .accordion-button_No_Allo:hover {
        background-color: #ccc;
    }

    .accordion-content {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.2s ease-out;
    }

    .SideMenu_Taitle {
        width: 100%;
        height: 50px;
        display: flex;
        /* Flexbox レイアウトを適用 */
        justify-content: center;
        /* 水平方向の中央揃え */
        align-items: center;
        /* 垂直方向の中央揃え */
    }

    .SideMenu_Taitle>h3 {
        font-size: 16px;
        padding: 0;
        margin: 0;
        color: #000;
    }

    .SideMenu_Taitle_Btn_1 {
        width: 100%;
        height: 50px;
        display: flex;
        /* Flexbox レイアウトを適用 */
        justify-content: center;
        /* 水平方向の中央揃え */
        align-items: center;
        /* 垂直方向の中央揃え */
        background-color: #73B81A;
        color: #fff;
        font-weight: bold;
    }

    .SideMenu_SubTaitle {}

    /* サイドバーアコーディオンで表示される項目 UL */

    .SideMenu_SubTaitle>li {
        padding: 10px 20px;
        ;
        border-bottom: solid 1px #e5e5e5;
    }

    /* サイドバーアコーディオンで表示される項目 */





    /* bootstrapのアコーディオン */
    .accordion-button:not(.collapsed) {
        color: #000;
        background-color: #FFF9F0;
    }

    .accordion-button_No_Allo:not(.collapsed) {
        color: #000;
        background-color: #FFF9F0;
    }


    /* アコーディオンのarrow
        色を変えるには
        fill='%23ff1000'の
        %23以降の6桁をカラーコードを変える
      */
    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2373B81A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }



    /* アコーディオンをホバーした時の枠の色 */
    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, .25);
    }


    /*  */
    /* フッター */
    /*  */
    :root {
      --dark: #000;
  }

  .font_bold {
      font-weight: bold !important;
  }

  /* モバイル向けスタイル */
  @media screen and (max-width:768px) {

      /*  */
      .Footer_Ttl,
      .Footer_Search_Box_Ttl,
      .Footer_Search_ChildBox_Item {

          color: var(--dark);
      }

      .Footer_Ttl {
          text-align: center;
      }

      .Footer_Search_Box {
          padding: 0;
      }

      #Footer_Logo {
          max-width: 100%;
          height: auto;

      }

      .section_Wrap_1 {
          background-color: #fff;
          color: var(--dark);
      }

      .Footer_Search_Box {
          margin-bottom: 20px;
          padding: 10px;
      }

      .Footer_Ttl {
          padding-top: 20px;
      }

      .Footer_Search_ChildBox_Item {
          margin-bottom: 10px;
      }

      .Footer_Search_Box_Ttl {
          margin-bottom: 10px;
      }
  }

  /* PC向けスタイル */
  @media screen and (min-width: 769px) {

      .Footer_Search_Box_Ttl,
      .Footer_Ttl,
      .Footer_Search_ChildBox_Item,
      .TopContact_Text {
          color: var(--dark);
      }

      footer {
          background-color: #fff !important;
      }

      .Footer_Wrap {
          padding: 5rem 9rem;
          background: var(--yellow);
      }

      .Footer_Ttl {
          padding-bottom: 1rem;
          border-bottom: 1px solid var(--dark);
          font-weight: bold;
          font-size: 1.25rem;
          font-family: "NotoSansCJKjp-Regular", sans-serif;
      }

      #Footer_Search_Container {
          margin-top: 2rem;
          display: flex;
          justify-content: space-between;
      }

      .Footer_Search_Box_Ttl {
          position: relative;
          font-weight: bold;
          margin-bottom: 1rem;
          font-size: 0.875rem;
      }

      .Footer_Search_Box_Ttl::after {
          content: ">";
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          margin-left: 10px;
      }

      .Footer_Search_ChildBox {
          display: flex;
          flex-direction: column;
          /* 縦並びに配置 */
      }

      .Footer_Search_ChildBox_Item {
          position: relative;
          /* 相対位置指定 */
          margin-left: 30px;
      }

      .Footer_Search_ChildBox_Item::before {
          content: "";
          width: 7px;
          height: 1px;
          background-color: #000;
          position: absolute;
          transform: translate(0, -50%);
          top: 50%;
          left: -26px;
      }

      .Footer_Search_ChildBox_Item {
          margin-bottom: .8rem;
          font-size: 0.8rem;
      }

      /* 問い合わせフォーム */
      .Contact_Wrap {
          border: 2px solid var(--green);
          border-radius: 4px;
          margin-top: 4rem;
          margin-bottom: 4rem;
      }

      .Contact_Wrap .SideMenu_Taitle_Btn_1 {
          width: 250px;
      }

      .Footer_Bottom_Wrap p {
          color: var(--dark);
          margin-top: 2rem;
      }
  }


/* フッターリスト */
  @media screen and (max-width:768px) {
    .Footer_Search_ChildBox {
      column-count: 2;
      column-gap: 20px; /* カラム間のスペースを調整 */
    }
    .Footer_Search_ChildBox_Item {
      break-inside: avoid;
    }
  }



  /* よくある質問 */
  .faqlist-list dl+dl {
    margin-top: 4rem;
  }
  
  .faqlist-list dl dt:before {
    content: 'Q';
    position: absolute;
    width: 2.6rem;
    height: 2.6rem;
    top: .9rem;
    left: 0;
    text-align: center;
    background: #ccc;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: translateY(-50%);
    background: linear-gradient(to right, #e60013, #fe4321);
  }
  
  .faqlist-list dl dd:before {
    content: 'A';
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    left: 1.2rem;
    top: .8rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e42421;
    border-radius: 3px;
    font-size: 18px;
    font-weight: bold;
    color: #e42421;
    background: #fff;
  }
  
  .faqlist-list dl dt {
    font-weight: bold;
    position: relative;
    padding-left: 3.6rem;
    font-size: 1.1rem;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 1.6rem;
    /* color: #e60012; */
  }
  
  .faqlist-list dl dd {
    padding-left: 5rem;
    color: #444;
    position: relative;
  }
  
  .faqlist-list dl dd {
    margin-top: 1.6rem;
  }
  
  .faqlist-list a {
    text-decoration: underline;
  }
  
  @media screen and (max-width: 750px) {
    .faqlist-list dl dd:before {
      left: 0;
      top: 15px;
    }
  
    .faqlist-list dl dd {
      padding-left: 3.6rem;
      margin-top: 1.6rem;
      font-size: .9rem;
    }
  
    .faqlist-list dl dt {
      padding: 0 0 10px 3.6rem;
      font-size: 1rem;
    }
  
    .faqlist-list dl {
      margin-top: 2rem !important;
    }
  }

.youtube-wrapper{
  width:100%;
  height:0;
  padding-bottom:56.25%;
  position:relative
}
.youtube-wrapper iframe{
  width:100%;
  height:100%;
  position:absolute;
  top:0
  left:0
}