﻿/*---------------------------------

  1. 共通

---------------------------------*/
/* CSS変数定義 */
:root {
  --font-default: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-mincho: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --font-number: "Roboto", sans-serif;
  --key: #95afdb;
  --key-light: #ecf1fc;
  --navy: #000080;
  --gold: #a19040;
  --darkorange: #ef7f2d;
  --orange: #eea41f;
  --yelloworange: #fffaea;
  --linkblue: #0f91e3;
  --darkblue: rgb(0, 100, 185);
  --red: #e61d30;
  --darkred: #c00a0a;
  --lightgray: #f4f3f2;
  --gray: #666;
  --black: #000000;
  --white: #fff;
  --line: rgb(0, 186, 1);
}

/* 基本フォント */
body {
  font-family: var(--font-default);
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray);
  word-break: break-word;
  word-wrap: break-word;
  background: var(--key-light) url(../images/bg-pink.png) repeat-y;
  background-position: center;
}

/* for larget device */
@media (min-width: 992px) {
  body {
    font-size: 18px;
  }
}

/* 明朝体 */
.rich-font {
  font-family: var(--font-mincho);
}

/* 色 */
.text-key {
  color: var(--key);
}

.text-red {
  color: var(--red) !important;
}

.text-darkred {
  color: var(--darkred) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-darkorange {
  color: var(--darkorange) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-yelloworange {
  color: var(--yelloworange) !important;
}

.text-linkblue {
  color: var(--linkblue) !important;
}

.text-lightgray {
  color: var(--lightgray) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-white {
  color: var(--white) !important;
}

/* マーカー */
.mark-yellow {
  background: linear-gradient(transparent 50%, #fcfc61 40%);
}

/* 文字サイズ */
.text-smaller {
  font-size: 95%;
}

.text-larger {
  font-size: 110%;
}

.text-large {
  font-size: 130%;
}

/* 画像 */
img {
  max-width: 100%;
}

/* リンク・ボタン */
a {
  transition: 0.3s;
}

a:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

/* アプリケーション初期表示 */
@keyframes cloak-in {
  0% {
    opacity: 0;
  }
}

#app {
  animation: cloak-in 1s;
}

#app[v-cloak] {
  opacity: 0;
}

/* フィルターアニメーション */
.animate-filter {
  animation: 0.2s zoom-in;
}

@keyframes zoom-in {
  0% {
    transform: scale(0.1);
  }

  100% {
    transform: none;
  }
}

/*---------------------------------

  2. 共通コンポーネント

---------------------------------*/
/* カートボタン */
.cart__btn {
  display: block;
  margin: 20px auto 0;
  outline: none;
  width: 226px;
  padding: 0;
  transition: 0.3s;
}

.cart__btn:hover,
.cart__btn:focus {
  box-shadow: none;
  filter: brightness(1.1);
}

/* for medium device */
@media (min-width: 768px) {
}

/* for larget device */
@media (min-width: 992px) {
}

/*---------------------------------

  3. ヘッダー

---------------------------------*/
#header {
  background-color: var(--white);
}

#header h1 {
  margin: 0;
  text-align: center;
}

.header__img {
}

/* for medium device */
@media (min-width: 768px) {
}

/* for larget device */
@media (min-width: 992px) {
}

/*---------------------------------

  4. メイン

---------------------------------*/
#main {
  padding: 25px 0;
}

/* for medium device */
@media (min-width: 768px) {
}

/* for larget device */
@media (min-width: 992px) {
  #main {
    padding: 50px 0;
  }
}

/*---------------------------------

  5. フッター

---------------------------------*/
#footer {
  padding: 20px 0;
  background-color: var(--key-light);
}

.footer__logo {
  max-width: 540px;
  max-width: 90%;
  display: block;
  margin: 0 auto 15px;
}

.footer-menu {
  padding: 0;
  list-style: none;
}

.footer-menu li {
  position: relative;
}

.footer-menu a {
  color: inherit;
  padding: 0.5em;
  display: block;
  text-align: center;
}

.copyright {
  color: var(--gray);
  text-align: center;
  margin-bottom: 0;
}

/* Page TOP */
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 9999;
  width: 40px;
  height: 40px;
}

#page-top:hover {
  opacity: 0.7;
}

/* for medium device */
@media (min-width: 768px) {
}

/* for larget device */
@media (min-width: 992px) {
  .footer-menu {
    display: flex;
    justify-content: center;
  }

  .footer-menu li:not(:last-child)::after {
    content: "";
    height: 1em;
    width: 1px;
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--dark);
  }

  #page-top {
    width: 80px;
    height: 80px;
  }
}

/*---------------------------------

  6. 序文

---------------------------------*/
.intro {
}

.intro .container {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--white);
}

/* 見出し */
.intro__heading {
  font-size: 24px;
  line-height: inherit;
  margin-bottom: 1em;
}

/* 本文 */
.intro__body {
}

/* リード文 */
.intro__lead {
  margin-bottom: 2em;
}

/* リスト */
.intro__list {
  width: 100%;
  margin: 0 auto 1em;
}

.intro__list li {
  border-bottom: 1px dotted;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.intro__list a {
  color: var(--key);
  display: flex;
  align-items: flex-start;
}

.intro__list .badge {
  font-size: inherit;
  color: var(--white);
  background-color: var(--key);
  border-radius: 0;
  margin-right: 0.5em;
}

.intro__list a .fas {
  flex: 0 0 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--key);
  margin-left: auto;
}

/* for medium device */
@media (min-width: 768px) {
  .intro__body {
    text-align: center;
  }

  .intro__list {
    width: 80%;
  }
}

/* for larget device */
@media (min-width: 992px) {
  .intro .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .intro__heading {
    font-size: 40px;
  }

  .intro__list {
    font-size: 25px;
    width: 920px;
  }
}

/*---------------------------------

  7.企画

---------------------------------*/
.pj {
}

.pj .container {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--white);
}

/* 見出し */
.pj__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pj__head img {
  width: 70px;
  margin-bottom: 10px;
}

.pj__heading {
  font-size: 22px;
  font-weight: bold;
  color: var(--dark);
  text-align: center;
  line-height: inherit;
}

/* 本文 */
.pj__body {
}

.pj__box {
  margin-bottom: 50px;
}

.pj__img {
  display: block;
  margin: 0 auto 15px;
}

.pj__desc {
}

.pj__btn {
  color: var(--white);
  background-color: #22b584;
  box-shadow: 2px 2px 4px #649188;
  border-radius: 8px;
  font-family: var(--font-mincho);
  font-weight: bold;
  font-size: 125%;
  text-decoration: none;
  display: block;
  padding: 15px;
}

.pj__btn:hover {
  color: var(--white);
  background-color: #30ca96;
}

.pj__btn::after {
  content: ">>";
  margin-left: 0.5em;
}

.pj .alert {
  background-color: var(--lightgray);
  border: none;
  border-radius: 0;
  margin-bottom: 50px;
}

/* for medium device */
@media (min-width: 768px) {
  .pj__head {
    margin: 0 auto 1em;
    position: relative;
  }

  .pj__head img {
    width: 100px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 3%;
  }

  .pj__heading {
    margin-bottom: 0;
  }

  .pj__desc {
    text-align: center;
  }

  .pj--1 .pj__desc {
    display: flex;
    justify-content: center;
    text-align: left;
  }
}

/* for larget device */
@media (min-width: 992px) {
  .pj .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pj__head {
    width: 920px;
    margin-bottom: 25px;
  }

  .pj__head img {
    width: 140px;
    top: 10px;
    left: 0;
  }

  .pj__heading {
    font-size: 30px;
  }

  .pj__body {
    width: 800px;
    margin: auto;
  }

  .pj__desc {
    text-align: left;
    padding-left: 85px;
  }

  .pj--1 .pj__desc {
    display: block;
    padding-left: 0;
  }
}

/*---------------------------------

  8. ギャラリー

---------------------------------*/
/* グリッド */
.gallery {
}

.gallery > .row {
}

/* ナビゲーション */
.gallery__tags {
  display: flex;
  flex-wrap: wrap;
}

.gallery__tag {
  padding: 0.3em 1em;
  color: 1px solid var(--key);
  border: 1px solid var(--key);
  border-radius: 1.5em;
  transition: 0.3s;
  margin: 0 5px 10px;
  font-size: 14px;
}

.gallery__tag.active,
.gallery__tag:hover {
  color: var(--white);
  background-color: var(--key);
  font-weight: bold;
  text-decoration: none;
}

/* 商品 */
.product {
}

.product .card {
  margin-bottom: 25px;
  border: none;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
}

.product .card-img-top {
  border-radius: 0;
}

.product .card-body {
  padding: 15px 0;
}

.product .card-title {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product .btn {
  padding: 0;
  font-size: inherit;
  border: none;
  border-radius: 0;
  color: var(--white);
  background-color: var(--gold);
}

.product .btn:focus {
  box-shadow: none;
}

.product .btn:hover,
.product .btn:focus {
  background-color: #d2b947;
}

.product .badge {
  border-radius: 0;
  font-weight: normal;
  padding: 0.4em;
}

.product .card-text {
}

/* for medium device */
@media (min-width: 768px) {
}

/* for larget device */
@media (min-width: 992px) {
  .gallery__tags {
    justify-content: center;
    margin-bottom: 25px;
  }

  .product .card-text {
    font-size: 16px;
  }
}

/*---------------------------------

  9. 商品テーブル

---------------------------------*/
.item-list {
  margin-top: 25px;
}

/* ヘッダー */
.item-list thead tr {
  border-bottom: 1px solid var(--black);
  display: flex;
}

.item-list thead th {
  padding-bottom: 10px;
  white-space: nowrap;
  width: 100%;
}

.item-list thead th.item-num {
  flex: 0 0 60px;
}

.item-list thead th span {
  color: var(--white);
  background-color: var(--gold);
  font-weight: normal;
  padding: 0.3em 0.6em;
  display: block;
}

/* ボディー */
.item-list tbody tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dashed var(--black);
  padding: 10px 0;
}

.item-list tbody td {
  flex: 1 0 auto;
}

.item-list tbody td.item-name {
  flex: 0 0 100%;
}

.item-list tbody td.item-num {
  flex: 0 0 auto;
}

/* 商品名 */
.item-list .title {
  color: var(--gold);
  font-weight: bold;
}

/* 価格 */
.item-list .price {
  font-size: 90%;
}

.item-list .price strong {
  font-size: 120%;
}

/* オプション */
.item-list .opt {
  padding: 0;
  margin: 0;
  list-style: none;
}

.item-list .opt label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.item-list .opt input {
  margin-right: 0.5em;
}

/* 数量 */
.item-list .num {
  padding: 0.5em;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  width: 60px;
}

/* for medium device */
@media (min-width: 768px) {
  .item-list {
    width: 100%;
  }

  .item-list thead th {
  }

  .item-list tbody tr {
    flex-wrap: nowrap;
  }

  .item-list tbody td {
    flex: 0 1 100%;
  }

  .item-list tbody td.item-name {
    flex: 0 1 100%;
  }
}

/* for larget device */
@media (min-width: 992px) {
  .item-list thead th {
    text-align: center;
  }

  .item-list thead th span {
    display: inline-block;
  }

  .item-list thead th.item-num {
    flex: 0 0 140px;
  }

  .item-list tbody td.item-num {
    flex: 0 0 140px;
    text-align: center;
  }
}

/*　chapter07　*/
/* --- SP ---------- */
@media print, screen and (max-width: 740px) {
  #chapter07 {
    width: 100%;
    padding: 15px 0;
    background: #fff;
  }

  #chapter07 .chapter07_title {
    text-align: center;
    margin-bottom: 10px;
  }

  #chapter07 .chapter07_title h2 {
    margin-bottom: 0;
  }

  #chapter07 .chapter07_title img {
    max-width: 930px;
  }

  .chapter07_body {
    max-width: 1100px;
    width: 92%;
    padding: 0 2%;
    margin: 0 auto;
    border-bottom: 1px dotted #333;
  }

  .chapter07_body h3 {
    color: #95afdb;
    font-size: 130%;
    line-height: 160%;
    letter-spacing: 2px;
    font-weight: bold;
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }

  .chapter07_body p {
    font-size: 80%;
    line-height: 130%;
    letter-spacing: 2px;
    margin: 0;
  }

  .chapter07_body h3 span {
    padding: 3px 5px;
    background: #95afdb;
    color: #fff;
    margin-right: 0.5em;
    font-size: 90%;
  }

  .chapter07_wrap {
    width: 100%;
    padding-bottom: 8px;
  }

  .chapter07_wrap .left {
    text-align: center;
    width: 100%;
  }

  .chapter07_wrap .left img {
    max-width: 300px;
  }

  .chapter07_wrap .center {
    text-align: center;
    width: 100%;
  }

  .chapter07_wrap .center img {
    max-width: 300px;
  }

  .chapter07_wrap .right {
    text-align: center;
    width: 100%;
  }

  .chapter07_wrap .right img {
    max-width: 300px;
  }
}

/* --- PC ---------- */
@media print, screen and (min-width: 741px) {
  #chapter07 {
    width: 100%;
    padding: 50px 0;
    background: #fff;
  }

  #chapter07 .chapter07_title {
    text-align: center;
    margin-bottom: 15px;
  }

  #chapter07 .chapter07_title img {
    max-width: 930px;
  }

  .chapter07_body {
    max-width: 1100px;
    /* width: 98%; */
    padding: 25px 1%;
    margin: 0 auto;
  }

  .chapter07_body h3 {
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #95afdb;
    font-size: 130%;
    line-height: 160%;
    letter-spacing: 2px;
    font-weight: bold;
  }

  .chapter07_body p {
    font-size: 110%;
    line-height: 160%;
    letter-spacing: 2px;
    font-weight: bold;
    margin-top: 5px;
  }

  .chapter07_body h3 span {
    padding: 1px 5px;
    background: #95afdb;
    color: #fff;
    margin-right: 0.5em;
  }

  .chapter07_wrap {
    width: 100%;
    display: table;
  }

  .chapter07_wrap .left {
    display: table-cell;
    text-align: center;
    width: 33%;
    vertical-align: top;
  }

  .chapter07_wrap .left img {
    max-width: 440px;
  }

  .chapter07_wrap .center {
    display: table-cell;
    text-align: center;
    width: 33%;
    vertical-align: top;
  }

  .chapter07_wrap .center img {
    max-width: 450px;
  }

  .chapter07_wrap .right {
    display: table-cell;
    text-align: center;
    width: 33%;
    vertical-align: top;
  }

  .chapter07_wrap .right img {
    max-width: 450px;
  }
}

/*　ヘッダー　*/
/* --- SP ---------- */
@media print, screen and (max-width: 740px) {
  #header {
    background-color: #fff;

    /* Safari */
    position: sticky;
    top: 0;
    z-index: 5000;
  }

  .header_logo {
    display: flex;
  }

  .header_logo h1 {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  #ham-menu {
    color: #fff;
    background: rgba(255, 255, 255, 0.9);
    height: 100%;
    padding: 0;
    /*メニュー内左右上下余白*/
    position: fixed;
    right: -280px;
    /*メニュー横幅 width と合わせる*/
    top: 0;
    transition: transform 0.3s linear 0s;
    /*0.3s はアニメーションにかかる時間*/
    width: 280px;
    /*メニュー横幅*/
    z-index: 1000;
    overflow-y: scroll;
  }

  #menu-background {
    background-color: #333;
    /*黒背景*/
    display: block;
    height: 100%;
    opacity: 0;
    /*		position: fixed;*/
    right: 0;
    top: 0;
    transition: all 0.3s linear 0s;
    /*0.3s はアニメーションにかかる時間*/
    width: 100%;
    z-index: -1;
  }

  #menu-icon {
    /*
		background-color: #f9b9b9; アイコン部分背景色
*/
    border-radius: 0 0 0 10px;
    /*左下角丸*/
    color: #fff;
    /*アイコン（フォント）色*/
    cursor: pointer;
    display: block;
    font-size: 50px;
    /*アイコン（フォント）サイズ*/
    height: 50px;
    /*アイコン縦高さ*/
    line-height: 50px;
    /*縦位置中央化*/
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 50px;
    /*アイコン横幅*/
    transition: all 0.3s linear 0s;
    /*0.3s はアニメーションにかかる時間*/
    z-index: 1000;
  }

  #menu-cb {
    display: none;
    /*チェックボックス本体は消しておく*/
  }

  #menu-cb ~ #menu-icon img:last-child {
    display: none;
  }

  #menu-cb:checked ~ #menu-icon img:first-child {
    display: none;
  }

  #menu-cb:checked ~ #menu-icon img:last-child {
    display: block;
  }

  #menu-cb:checked ~ #ham-menu,
  #menu-cb:checked ~ #menu-icon {
    transform: translate(-280px);
    /*メニュー本体横幅 width と合わせる*/
  }

  #menu-cb:checked ~ #menu-background {
    opacity: 0.5;
    z-index: 999;
    position: fixed;
  }

  .header_menu ul {
    margin: 0;
    padding: 0;
  }

  .header_menu ul.opac {
    border-bottom: 1px solid #fff;
  }

  .header_menu ul li {
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
  }

  .header_menu ul li a {
    width: 100%;
    display: block;
    padding: 8px 1em;
    color: #333;
  }

  .header_menu ul li.main a:hover {
    background: rgba(150, 150, 150, 0.9);
    text-decoration: none;
  }
}

/* --- PC ---------- */
@media print, screen and (min-width: 741px) {
  #header {
    /* Safari */

    position: sticky;

    top: 0;

    background-color: #fff;

    z-index: 5000;
  }

  .header_body {
    max-width: 980px;
    margin: 0 auto;
  }

  .header_logo {
    display: flex;
  }

  .header_logo h1 {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .header_menu {
  }

  .header_menu ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 0;
    margin: 5px 0 0 0;
    font-size: 95%;
    font-family: TsukuGoPr5-D, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ＭＳ Pゴシック", Osaka, sans-serif;
  }

  .header_menu ul li {
    margin: 0 10px;
    padding-top: 25px;
    padding-bottom: 15px;
    text-align: center;
    position: relative;
  }

  .header_menu ul li a {
    display: block;
    width: 100%;
    padding-right: 10px;
    border-right: 1px dotted #333;
  }

  .header_menu ul li:hover,
  .header_menu ul li.on {
    background: url(../img/flower.png) center top no-repeat;
  }
}

@media print, screen and (min-width: 981px) and (max-width: 1130px) {
  #header {
    padding: 0;
  }

  .header_body {
    max-width: 980px;
  }

  .header_menu ul {
    font-size: 70%;
  }
}

@media print, screen and (min-width: 741px) and (max-width: 980px) {
  #header {
  }

  .header_body {
  }

  .header_menu ul {
    font-size: 70%;
  }

  .header_menu ul li {
    margin: 0 6px;
  }

  .header_menu ul li a {
    padding-right: 6px;
  }
}

