@charset "UTF-8";

/*-------------------------------------------
全体
-------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  color: #302f2f;
  font-family: "こぶりなゴシック W3 JIS2004", "Koburina Gothic W3 JIS2004", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  /* font-family: 'TsukuARdGothicStd-E', '游ゴシック', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif; */
}

a {
  font-size: 0.875rem;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

.logo {
  width: 550px;
}

.br-sp {
  display: none;
}

select {
  width: 100px;
  border: solid 1px #c3c3c3;
  padding: 0 10px;
  background-color: transparent; /* 背景色の透明化 */
  color: #333; /* 文字色 */
  font-size: 14px; /* フォントサイズ */
  -webkit-appearance: menulist-button; /* iOSで矢印を保持 */
  -moz-appearance: menulist-button;    /* Firefox 用 */
  appearance: menulist-button;         /* 他のブラウザ用 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

select:focus {
  outline: none; /* フォーカス時の青いアウトラインを消す */
  border-color: #c3c3c3; /* フォーカス時のボーダーカラーを指定 */
}

select::-ms-expand {
  display: none; /* IE/Edge用にドロップダウンの矢印を非表示にする */
}


@media (max-width: 600px) {
  .br-sp {
      display: block;
  }
}


/*-------------------------------------------
section title
-------------------------------------------*/

.title {
  padding: 50px 0 0;
  margin-bottom: 50px;
}

span {
  color: rgb(204, 125, 125);
  /* color: rgb(229, 185, 185); */
  letter-spacing: 0.15em;
  /* font-size: 0.8em; */
  font-family: "Slackside One", cursive;
}

h3 {
  font-size: 30px;
  padding-top: 7px;
  /* background-image: url(../img/decoration.png);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: center bottom -10px;
  height: 150%; */
}

/*-------------------------------------------
header
-------------------------------------------*/
#header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: background-color 0.3s, padding 0.3s;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin: 0 80px;
}

/* header_right */
.header_right {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.log-icon {
  text-align: center;
}

.log-icon img,
.header_right img {
  height: 25px;
  width: auto;
}

.log-icon p {
  margin-top: 5px;
  font-size: 13px;
  text-align: center;
}

/* 初期状態（透明） */
.header-transparent  {
  background-color: transparent;
  padding: 10px;
}

/* スクロール後（白い背景） */
.header-solid {
  background-color: white;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/*ハンバーガーメニュー*/
#navi {
  position: fixed;
  top: 10%;
  left: -20%;
  color: #fff;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  margin: 0 auto;
}

#navi a {
  color: #fff;
}

#navi ul li {
  margin: 30px 0;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

#navi .nav-menu ul li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  margin-right: 10px;
}

#navi ul li ul {
  padding-left: 30px; /* サブメニューを20pxだけ字下げ */
}

/* サブメニュー内のliのスタイル */
#navi ul li ul li {
  font-size: 16px; /* サブメニューの文字サイズを少し小さく */
}


/*メニューが開いている時は、「left: 0;」「opacity: 1;」で画面左に表示する*/
.open #navi {
  top: 10%;
  left: 20%;
  opacity: 1;
  pointer-events: auto;
}

.toggle_btn {
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}

/*ハンバーガーメニューの線の設定（メニューが閉じている時）*/
.toggle_btn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}

/*1本目の線の位置を設定*/
.toggle_btn span:nth-child(1) {
  top: 10px;
}

/*2本目の線の位置を設定*/
.toggle_btn span:nth-child(2) {
  bottom: 10px;
}

/*ハンバーガーメニューの線の設定（メニューが開いている時）線の色を白に変更*/
.open .toggle_btn span {
  background-color: #fff;
}

/*1本目の線を-45度回転*/
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}

/*2本目の線を45度回転*/
.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}

#mask {
  display: none;
  transition: all 0.5s;
}

/*メニューを開いている時は、全体をピンク背景にする*/
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccb2b2;
  opacity: .90;
  z-index: 10;
}

@media (max-width: 900px) {
  .header-inner {
    margin: 0 20px;
    padding: 0;
  }

  #header {
    height: 60px;
  }

  .toggle_btn

  #navi {
    width: 70%;
  }

  #navi ul li {
    font-size: 20px;
  }

  .header_right {
    padding: 10px;
  }
  
}

/*-------------------------------------------
パンくずリスト
-------------------------------------------*/
#breadcrumb {
  padding: 50px 0 0;
}

#breadcrumb ul li {
	display: inline;
	margin-right: 5px;
}

#breadcrumb ul li a {
	padding-right: 15px;
}

#breadcrumb ul li:not(:last-of-type)::after {
  content: "/";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

/*-------------------------------------------
main
-------------------------------------------*/
#top {
  margin: 0;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ビューポートの高さを最低限確保 */
}

.wrapper {
  max-width: 1000px;
  padding: 10px;
  margin: 50px auto 0;

}

main {
  flex: 1;
    /* padding: 20px; */
}

/*-------------------------------------------
ボタン
-------------------------------------------*/
.button a {
  background: rgb(229, 185, 185);
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto 0;
  width: 180px;
  padding: 10px 25px;
  color: #FFF;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button a:hover {
  background: #e9d8b7;
  color: #333;
}

.button a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.button a:hover:after {
  border-color: #FFF;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
}


/*-------------------------------------------
送信ボタン
-------------------------------------------*/
input[type="submit"] {
  background: rgb(229, 185, 185);
  color: #fff;
  display: block;
  line-height: 1.5;
  padding: 15px;
  margin: 50px auto 20px;
  text-align: center;
  border: none;
  transition: 0.3s ease-in-out;
  letter-spacing: 0.15em;
  border-radius: 0;
  width: 280px;
  font-size: 13.5px;
  cursor: pointer;
  border-radius: 4px;
}

input[type="submit"]:hover {
  background: #e9d8b7;
  color: #333;
}

/*-------------------------------------------
pagetop
-------------------------------------------*/
#pagetop {
	position: relative;
	width: 100px;
	margin: 50px auto 0;
	text-align: center;
}

#pagetop:hover {
	opacity: 0.5;
}

#pagetop:before,
#pagetop:after {
	display: block;
	content: '';
	position: absolute;
	top: 3px;
	background: rgb(229, 185, 185);
	border-radius: 4px;
	width: 20px;
	height: 4px;
}

#pagetop:before {
	left: 47px;
	-webkit-transform: rotate(35deg);
	-ms-transform: rotate(35deg);
	transform: rotate(35deg);
}

#pagetop:after {
	right: 47px;
	-webkit-transform: rotate(-35deg);
	-ms-transform: rotate(-35deg);
	transform: rotate(-35deg);
}

#pagetop a {
	position: relative;
	display: inline-block;
	padding: 25px 0;
	color: rgb(229, 185, 185);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.2em;
}

#pagetop a:after {
	display: block;
	content: '';
	background: rgb(229, 185, 185);
	width: 73px;
	height: 2px;
	margin: 15px 0 0 0;
}


/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  background-color: rgb(229, 185, 185);
  margin-top: 50px;
}

 #footer .logo {
  width: 20%;
  min-width: 180px;
  margin: 0 auto;
  padding: 50px 0;
}

#footer nav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

#footer nav ul li {
  letter-spacing: 0.15em;
}

#footer nav ul li a {
  color: #fff;
  margin: 0 20px;
}

#footer .copyright {
  /* font-size: 0.750rem; */
  text-align: center;
  padding: 30px 0;
  color: #fff;
  font-family: "Slackside One", cursive;

}

/*-------------------------------------------
category
-------------------------------------------*/
#category {
    margin: 50px auto 0;
    background-color: #fffceb;
    text-align: center;
}

#category .grid {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px;
}

#category a img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#category a img:hover {
    transform: scale(1.03);
}

#category img {
    height: 140px;
    object-fit: contain;
}

#category .gridB01 img {
    width: 130px;
}

#category .gridB02 img {
    width: 150px;
}

#category .gridB03 img {
    width: 100px;
}

#category .gridB04 img {
    width: 140px;
}

#category .gridB05 img {
    width: 170px;
}

#category .gridB06 img {
    width: 150px;
}

#category .grid p {
    padding-top: 10px;
    letter-spacing: 0.15em;
}

#category .button {
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    #category .grid {
        grid-template-columns: 1fr 1fr;
        width: 80%;
    }
}

/*-------------------------------------------
login
-------------------------------------------*/
/* 入力フィールドのスタイル */
.input-field {
  width: 260px;
  height: 110%;
  padding: 10px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  display: block;
  margin: 30px auto 40px;
}

.account-creation {
  text-align: center;
  margin-top: 60px;
}

.create-account-link {
  text-decoration: none;
  font-size: 16px;
  text-decoration: underline;
  color: #666;
}

.create-account-link:hover {
  color: rgb(204, 125, 125);
}
