@charset "UTF-8";
  
  /* 基本設定 */
html {
	font-family: sans-serif;
}

html * {
	box-sizing: border-box;
}

/*フォントファイル（otf）埋め込み侍*/
@font-face {
  font-family: 'Makinas-4-Square';/*フォント名日本語OK*/
  src: url(Makinas-4-Square.otf);/*フォントファイルパス*/
}

/*Google Fonts使っちゃおっかなぁぁぁぁ*/
.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*Dancing Scriptのみ常にエラー起きるけど気にしなくていいです*/
.dancing-script-<uniquifier> {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/*ここから先が本番*/

body {
  font-family: sans-serif;  
  
	margin:  0 0 0 0;
	color: #000;
  background-color: #fff;
}

.menu_button {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  background-color: #333;
  color: #fff;
  font-family: sans-serif;
  font-size: 32px;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.side_menu{
  position: fixed;
  top: 0;
  left: -250px; /* 非表示 */
  width: 250px;
  height: 100%;
  background-color: #333;
  color: white;
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 60px 16px 16px;
}

.side_menu ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.side_menu li {
  margin: 50px 0;
}

.side_menu a {
  color: white;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease; /* ホバーした時のアニメーション！アニメーションって...ンフーンフフフフフ */
}

.side_menu a:hover {
  color: #000;
  background-color: #fff;
  font-weight: bold;
  font-size: 22px;
}

.side_menu.open {
  left: 0;
}

.header {
  width: auto;
  height: 200px;
  background-color: #333;
  color: white;
  padding: 40px 0; /* 少し大きめに */
}

.header h1 {
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 38px;
  margin: 0 0 0 0;
  padding-top: 30px;
  color: white;
  letter-spacing: 3px;
}

.scroll_shiro {
  font-family: "Makinas-4-Square";
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  margin: 0 0 0 0;  
  padding-top: 300px;
  letter-spacing: 2px;
}

.shitayajirushi {
  font-family: "Makinas-4-Square";
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
}

p,h1,h2,h3,h4,h5,h6 {
	margin-top: 10;
}
  
p {
  line-height: 1.6;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  
}

.logo {
    float: right;
	max-width: 30%;
	height: auto;
	padding: 0 0 0 1em;		/* 文字と画像との余白 */
}

.sakuhin{
    font-family: "Zen Kaku Gothic New";
    color: #000;
    font-weight: bold;
	  width: 50%;
	  max-height: fit-content;
	  padding: 0 1em 1em 0;		/* 文字と画像との余白 */
    display: flex;

}

.kakudai{
  display: none;
  position: fixed;
  z-index: 2000; /* サイドメニューより上に表示 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.kakudai-content{
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 10px #fff;
}

.kakudai.open{
  display: flex;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

h6{
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    border-left: #333 solid 5px;
    padding-left: 5px;
}


h2{
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    border-left: #333 solid 5px;
    padding-left: 5px;
}

.pspr{
  float: right;
  max-width: 15%;
	height: auto;
	padding: 0 1em 1em 0;		/* 文字と画像との余白 */
  display: flex;
}

h1{
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  margin-left: 0;
  font-family:"Zen Kaku Gothic New";
  padding-left: 10px;
  
  letter-spacing: 2px;
  
}

footer{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New";
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.wrapper {
	margin:	0 auto 0 auto;		/* 余白（変えなくてよい） */
	max-width: 960px;		/* 最大表示幅（変えなくてよい） */

}

/* スマホ用スタイル */
@media (max-width: 600px) {

  /* 見出し (h1) の文字間隔を狭める */
  h1 {
    font-size: 24px;            /* 少し小さめ */
    letter-spacing: 1px;        /* PC時より狭め */
    line-height: 1.3;           /* 行間もタイトに */
    padding-left: 5px;          /* 左余白を減らす */
  }

  /* 本文の文字も少し詰める */
  p {
    font-size: 16px;            /* 文字サイズ小さめ */
    line-height: 1.4;           /* 行間を狭める */
    letter-spacing: 0;          /* 文字間は標準に */
  }

  /* 画像（横並び → 縦並び） */
  .flex-box {
    flex-direction: column;     /* 縦並び */
    gap: 8px;                   /* 余白を小さく */
  }

  /* 個別の画像サイズ調整例 */
   .sakuhin  {
    max-width: 100%;            /* スマホ幅にフィット */
    float: none;                /* 回り込み解除 */
    display: block;
    margin: 0 auto;             /* 中央寄せ */
    padding: 0;                 /* 余白を詰める */
  }

}





