@charset "utf-8";

/* ------------------------------------------
　                  共通　
------------------------------------------ */
html {
  font-size: 100%;
}

body {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: nomal;
  line-height: 1.7;
  color: #4e4e4e;
}

img {
  max-width: 100%;
}

/* トップ画像バックグラウンド以外の画面の最大幅を設定 */
.innerWrap {
  max-width: 950px;
  margin: 0 auto;
}

/* 各セクションの縦幅はセクション内の要素に依存して動的に変化 */
section {
  min-height: auto;
}
/* 各セクションの下部余白の設定 */
.sectionPaddingBottom {
  padding-bottom: 100px;
}
h3 {
  text-align: center;
  padding-top: 40px;
}
.subTitleEng {
  font-family: "Catamaran", "Noto Sans JP", sans-serif;
  padding-top: 50px;
  font-weight: 600;
  font-size: 3rem;
}
.subTitleJap {
  font-size: 3rem;
  font-weight: 600;
  padding-bottom: 50px;
}
.text {
  font-size: 1.5rem;
}
.textFlex {
  display: flex;
  justify-content: center;
  width: 600px;
  margin: 0 auto;
  padding-top: 50px;
  font-size: 1.2rem;
}
.listFlex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 文字量でブロック幅を変動
  　　最大幅はinnerWrapに依存 */
  width: fit-content;
  background-color: #efefef;
  box-shadow: 5px 5px 8px #cacaca;
  border-radius: 4px;
  padding: 30px;
  margin: 0 auto;
  font-size: 1.5rem;
  /* list-style-image: url(../images/icon_lightbulb.svg);
  list-style-position: inside; */
}
.listFlex li {
  background-image: url(../images/icon_checkbox.svg);
  background-repeat: no-repeat;
  background-position: 0 5px;
  padding-left: 2.3rem;
  background-size: 1.8rem 1.8rem;
}

/* ------------------------------------------
　                  header　
------------------------------------------ */
#home {
  /* ページ上部の画像の変更はimageフォルダに画像を配置
  background-color: #98c7c9;
  url()にリンク先相対パスを指定 */
  background-image: url(../images/back-image05.jpg);
  /* カラーフィルタの設定、モードは画像乗算 */
  background-color: #888888;
  background-blend-mode: multiply;
}

.big-bg {
  /* 画像の幅の設定、設定は画面いっぱい画面中央上部配置 */
  background-size: cover;
  background-position: center top;
  width: 100vw;
  height: 100vh;
}
/* ヘッダーアドレス部の設定 */
.headerAddress {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 20px;
  font-size: 18px;
  color: #ffffff;
}
.headerAddress li,
.headerAddress dl,
.headerAddress dt,
.headerAddress dd {
  display: inline-block;
}
.headerAddress dt {
  text-transform: uppercase;
}
.headerAddress li:first-child::after {
  content: "/";
  padding-right: 10px;
}
.headerAddress li dl dd:last-child {
  padding-left: 10px;
}
/* ヘッダータイトル・ナビゲーション設定 */
.headerTitleNav {
  /* width: 1280px; */
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 30px;
  line-height: 55px;
}
header h1 {
  color: #ffffff;
  font-size: 3rem;
}
header nav {
  color: #ffffff;
  width: 500px;
}
header nav ul {
  display: flex;
  justify-content: space-between;
}
li a {
  position: relative;
}
li a::after {
  background-color: currentColor;
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%;
}
li a:hover::after {
  transform-origin: center top;
  transform: scale(1, 1);
}
.headerText {
  color: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}
/* 問合せ先リンクボタン設定 */
.btn {
  font-size: 1.5rem;
  color: #4e4e4e;
  border-radius: 4px;
  background-color: rgb(255, 255, 255, 0.8);
  margin-top: 50px;
  padding: 10px 20px;
  transition-duration: .4s;
}
.btn:hover {
  transform: scale(1.1);
}
/* キャッチコピー・タイトル設定 */
h2 {
  font-size: 3rem;
  text-align: center;
}

/* ------------------------------------------
　              messageSection
------------------------------------------ */
.messageText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Sawarabi Mincho", serif;
  text-align: justify;
  padding: 20px 0px 20px;
  /* 文字量でブロック幅を変動
  　　最大幅はinnerWrapに依存 */
  width: fit-content;
  border-top: 1px solid #4e4e4e;
  border-bottom: 1px solid #4e4e4e;
  margin: 0 auto;
}

/* ------------------------------------------
　        businessInfomationSection
------------------------------------------ */
#bInfomation {
  background-color: #efefef;
}
.justifyWidth {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: justify;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 30px;
  box-shadow: 5px 5px 8px #cacaca;
  height: min-content;
}

.justifyWidth p {
  width: 60%;
}

.justifyWidth img {
  display: inline-block;
  width: 40%;
/* -------
  height: 250px;
------- */
}

.goodsGrid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 100px;
  margin-bottom: 50px;
}
.goodsItem {
  object-fit: cover;
  text-align: center;
  aspect-ratio: 1/1;
}
.goodsItem img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 5px 5px 8px #cacaca;
}
.gridTitle {
  background-color: #efefef;
  border-radius: 4px;
  font-size: 1.3rem;
  margin-bottom: 30px;
  background-color: #ffffff;
}
.gridDummy {
	background-color: #4951c1;
	color: #ffffff;
	font-size: 3rem;
	width: 300px;
	height: 300px;
	line-height: 300px;
}
.gridDescription {
  min-height: auto;
  text-align: left;
  padding-top: 30px;
}
.productIntroduction {
  font-size: 2rem;
  text-align: center;
  padding-top: 100px;
  text-decoration: underline;
}
/* ------------------------------------------
　        rewardInfomattionSection
------------------------------------------ */

#rInformation {
  background-color: #ffffff;
}
/* ------------------------------------------
　              summarySection
------------------------------------------ */

#summary {
  background-color: #ffffff;
}
/* GoogleMapのレイアウト指定 */
iframe {
  width: 950px;
  height: 500px;
  border-radius: 4px;
}

/* ------------------------------------------
　              contactSection
------------------------------------------ */
#contact {
  height: 100%;
  background-color: #efefef;

}
#contact input {
  background-color: #ffffff;
}
#contact select {
  background-color: #ffffff;
}
#contact textarea {
  background-color: #ffffff;
}
#contact label {
  background-color: #ffffff;
  padding: 0;
}

.contactText {
  font-size: 1.5rem;
  margin: 0 auto;
  width: 700px;
}
.tableForm td span{
  background-color: #f0f0f0;
  border-radius: 4px;
}
.tableLayout {
  width: 700px;
  margin: 0px auto 100px;
}
.tableForm tr th {
  width: 25%;
  font-size: 1.4rem;
  border-bottom: 1.5px solid #b8b8b8;
  padding: 5px 0 5px;
}
.tableForm td {
  padding: 5px 5px 5px 20px;
  width: 75%;
  border-bottom: 1.5px solid #b8b8b8;
}





/* 1. 標準のチェックボックスを隠す */
.checkbox-container input {
  appearance: none;
  -webkit-appearance: none;
  position: absolute; /* アクセシビリティのためdisplay:noneは避ける */
  opacity: 0;
}

/* 2. カスタムチェックボックスのベース (四角い枠) */
.custom-checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 4px; /* 少し角を丸くすると今風 */
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
  transition: all 0.2s;
}

/* 3. 選択時の背景色 */
.checkbox-container input:checked + .custom-checkbox {
  background-color: #007bff; /* 選択時のテーマカラー */
  border-color: #007bff;
}

/* 4. 選択時のチェックマーク (レ点) */
.checkbox-container input:checked + .custom-checkbox::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  /* 右と下だけ□の線を描いて 逆 L 字型にする */
  border: solid white;
  border-width: 0 2px 2px 0;
  /* 45度回転させて✓にする */
  transform: rotate(45deg);
}





.sendBtn {
  width: auto;
  text-align: center;
}
.sendBtn input {
  padding: 10px 20px 10px;
  font-size: 1.5rem;
  color: #828282;
  border-radius: 4px;
  background-color: #828282;
  transition-duration: .4s;
}
.sendBtn input:hover {
  transform: scale(1.1);
}

/* ------------------------------------------
　                 footer
------------------------------------------ */

footer {
  height: 100px;
  background-color: #828282;
  color: #ffffff;
  text-align: center;
}

small {
  font-size: 1.2rem;
  line-height: 100px;
}

/*========= スマートフォン用css(レスポンシブ対応) ===========*/

@media screen and (max-width: 767px) {
  /* ------------------------------------------
　                  共通　
  ------------------------------------------ */
  .subTitleEng {
    padding-top: 30px;
    font-weight: 600;
    font-size: 2rem;
  }
  .subTitleJap {
    font-size: 2rem;
    font-weight: 600;
    padding: 10px 0 30px 0;
  }
  .sectionPaddingBottom {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  /* ------------------------------------------
　                  header　
  ------------------------------------------ */
  .headerAddress {
    justify-content: center;
  }
  .headerTitleNav {
    flex-direction: column-reverse;
  }
  .headerTitleNav nav {
    width: 100%;
  }
  .headerTitleNav a {
    font-size: 1.1rem;
  }
  header nav ul {
    justify-content: space-evenly;
  }
  header h1 {
    padding-top: 30px;
    text-align: center;
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  /* ------------------------------------------
　              messageSection
　------------------------------------------ */

  .messageText {
    width: 90%;
  }
  /* ------------------------------------------
　        businessInfomationSection
  ------------------------------------------ */
  .textFlex {
    width: 90%;
  }
  .justifyWidth {
    align-items: center;
  }
  .justifyWidth p {
    font-size: 1rem;
  }
  .justifyWidth img {
    margin: auto 0;
  }
  .goodsItem {
    width: 90%;
    margin: 0 auto;
  }
  .goodsItem img {
    width: 70%;
    height: 70%;
  }
  .gridTitle {
    width: 70%;
    margin: 0 auto 30px;
    inline-size: 30ch;
    margin-block-end: 1em;
    overflow-wrap: break-word;
  }
  .gridDescription {
    width: 70%;
    margin: 0 auto;
  }
  .goodsGrid {
    margin-top: 50px;
  }
  /* ------------------------------------------
　        rewardInfomattionSection
  ------------------------------------------ */
  .listFlex {
    width: 90%;
  }
  /* ------------------------------------------
　              summarySection
  ------------------------------------------ */
  .tableLayout {
    width: 90%;
    margin: 0 auto;
  }
  iframe {
    width: 90%;
    margin: 0 auto;
  }
  /* ------------------------------------------
　              contactSection
  ------------------------------------------ */
  .contactText {
    width: 90%;
    font-size: 1.3rem;
  }
  .tableForm {
    font-size: 1rem;
  }
  .iframeContainer {
    text-align: center;
  }
  /* ------------------------------------------
　                 footer
  ------------------------------------------ */
  small {
    font-size: 1rem;
  }
}

/*========= ページトップリンク ===========*/
/* ページ右下トップリンク用設定 */

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#555;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top img {
  width: 26px;
}
#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
    transform: translateY(0);
  }
  to {
  	opacity: 1;
    transform: translateY(100px);
  }
}