@charset "UTF-8";
/* CSS Document */
/* ブラウザスタイル初期化用ＣＳＳ */

/*font*/
/*@font-face {
	font-family: 'MyFont';
	src: url("font/YuMincho.ttc");
}
@font-face {
	font-family: 'MyFontEN';
	src: url("font/Kyokasho.ttc");
}*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;200;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;500&family=Noto+Serif+JP:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
@font-face {
  font-family: "MyYuMinchoM";
  src: local("YuMincho-Medium"), /* PostScript Name = localの正式な指定方法 */
  local("Yu Mincho Medium"),     /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
  local("YuMincho-Regular");     /* 游ゴシックMediumが存在しないWindows8.1用 */
  font-weight: normal;
}
@font-face {
  font-family: "MyYuMinchoM";
  src: local("YuMincho-Bold"), /* PostScript Name = localの正式な指定方法 */
  local("Yu Mincho");          /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
  font-weight: bold;
}
@font-face {
  font-family: "MyYuGothicM";
  src: local("YuGothic-Medium"), /* PostScript Name = localの正式な指定方法 */
  local("Yu Gothic Medium"),     /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
  local("YuGothic-Regular");     /* 游ゴシックMediumが存在しないWindows8.1用 */
  font-weight: normal;
}
@font-face {
  font-family: "MyYuGothicM";
  src: local("YuGothic-Bold"), /* PostScript Name = localの正式な指定方法 */
  local("Yu Gothic");          /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
  font-weight: bold;
}

html {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: white;
}
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
  color: #333;
  /*font-family: 'Noto Serif JP', serif, "Meiryo","メイリオ","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";*/
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 0;
  -webkit-text-size-adjust: 100%;
  line-height: 0;
}
body * {
  box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,p,pre,blockquote,ul,ol,li,dl,dt,dd {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", serif, "Meiryo","メイリオ","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
li,dt,dd {
  list-style-type: none;
}
p {
  margin: 0;
}
img {
  border: 0;
  border: none;
}
a:hover {
  text-decoration: none;
}
.en1 {
  font-family: "Poiret One", cursive;
}
.en2 {
  font-family: "Lato", sans-serif;
}
.yg {
  font-family: MyYuGothicM, /* Windows調整用 */
  YuGothic,    /* Mac用 */
  sans-serif;
}
a:hover, a:focus {
  opacity: .6;
  color: #333;
  text-decoration: none;
}

/*top*/
body {
  background: var(--body-bgc);
}

body.fixed {
  width: 100%;
  position: fixed;
}

/*ハンバーガーメニュー*/
#nav {
  /*height: 100px;
  display: block;
  z-index: 9999999;
  width: 750px;
  position: static;*/
}
#nav .nav_bg.active {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 999;
  background: rgba(39,38,38,.6);
  /*opacity: 0.6;*/
  /*animation: fadeIn 0.2s ease 0.3s 1 normal;*/
}
#nav .nav_btn {
  position: absolute;
  right: 38px;
  z-index: 10000;
  cursor: pointer;
}
#idx #nav .nav_btn {
  top: 30px;
}
#kasou #nav .nav_btn {
  top: 40px;
}
#nav .nav_btn .menu-trigger,
#nav .nav_btn .menu-trigger span {
  display: inline-block;;
}
#nav .nav_btn .menu-trigger {
}
#nav .nav_btn .menu-trigger img {
  width: 100%;
  max-width: 62px;
}
/*#nav .nav_btn .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333333;
  border-radius: 4px;
}
#nav .nav_btn .menu-trigger span:nth-of-type(1) {
  top: 0;
}
#nav .nav_btn .menu-trigger span:nth-of-type(2) {
  top: 20px;
}
#nav .nav_btn .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
#nav .nav_btn .menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
}*/

#nav .menu_ttl {
  display: none;
  padding: 20px;
  font-size: 40px;
  line-height: 40px;
}
#nav .menu_ttl img {
  width: 100%;
  max-width: 300px;
  margin-top: 0;
}

/*メニュー中身*/
.nav_cnt {
  display: none;
  width: 70%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  padding: 150px 30px 0;
  overflow-y: scroll;
  background: white;
  font-size: 10px;
  line-height: 10px;
}
.nav_cnt.out {
  display: block;
  opacity: 0;
  transform: translateY(-100%);
  overflow: hidden;
  animation: SlideOut .8s;
}
/* CSSアニメーションの設定 */
@keyframes SlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;/*初期状態では透明に*/
    z-index: -9999;
    transform: translateX(64px);
  }
}
/* CSSアニメーションの指定 */
.nav_cnt.in {
  display: block;
  opacity: 1;
  animation: SlideIn .8s;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
  0% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav_cnt ul li.nav_cnt_ttl {
  margin-top: 56px;
  font-size: 30px;
  line-height: 40px;
}
.nav_cnt ul li.nav_cnt_ttl::after {
  content: "+";
  position: absolute;
  top: 0;
  left: 258px;
  margin-left: 18px;
  color: #707070;
  font-size: 40px;
  line-height: 40px;
}
.nav_cnt ul li.nav_cnt_ttl.on::after {
  content: "";
  width: 30px;
  height: 2px;
  margin-top: 20px;
  background-color: #707070;
}
.nav_cnt ul li.c_point {
  position: relative;
  cursor: pointer;
}
.nav_cnt ul li:first-child.nav_cnt_ttl {
  margin-top: 0;
}
.nav_cnt ul li.nav_cnt_ttl:first-child::after {
  content: "";
}
.nav_cnt ul .sub_menu {
  display: none;
  margin-top: 66px;
  margin-left: 54px;
}
.nav_cnt ul .sub_menu ul li {
  margin-bottom: 35px;
  font-size: 28px;
  line-height: 40px;
}
.nav_cnt ul .sub_menu ul li span {
  margin-right: 31px;
}
#nav .nav_cnt .sns {
  margin-top: 99px;
  margin-bottom: 150px;
}
#nav .nav_cnt .sns a {
  margin-right: 40px;
}
.nav_cnt ul.menu {
  margin-bottom: 60px;
  border-bottom: solid 1px;
}
.nav_cnt ul.menu li:first-of-type {
  margin-bottom: 50px;
  font-size: 40px;
}
.nav_cnt li {
  margin-bottom: 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: .2em;
}
.nav_cnt ul li.nav_cnt_ttl::after {
  display: none;
}
.nav_cnt ul li.new_window::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 24px;
  background-image: url(img/nav_window.png);
  background-size: 23px auto;
  background-repeat: no-repeat;
}
.nav_cnt ul.link li {
  margin-bottom: 50px;
}

#content {
  max-width: 750px;
  position: relative;
  margin: 0 auto;
  overflow-x: hidden;
  background: white;
}
#content #main {
  height: 989px;
  position: relative;
  padding: 120px 30px 0;
}
#content #main .main_ttl img {
  width: 100%;
  max-width: 323px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
#content #main .main_copy {
  position: absolute;
  bottom: 286px;
  left: 151px;
}
#content #main .main_copy p {
  color: #fff;
  font-size: 32px;
  line-height: 70px;
}

#content #main .main_img {
  position: relative; /* 全体の相対位置を指定 */
}

#content #main .main_img div {
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none; /* 非表示の画像はクリック不可 */
  animation: bgAnime 15s infinite;
}
#content #main .main_img div img {
  width: 100%;
}
#content #main .main_img a.img1 {
  animation-delay: 0s; /* 初めの画像は遅延なし */
}

#content #main .main_img .img2 {
  animation-delay: 5s; /* 2番目の画像は5秒後に表示 */
}

#content #main .main_img .img3 {
  animation-delay: 10s; /* 3番目の画像は10秒後に表示 */
}

/* フェードイン・アウト */
@keyframes bgAnime {
  0% {
    opacity: 0;
    pointer-events: none; /* 非表示中はクリック不可 */
    animation-timing-function: ease-in;
  }
  15% {
    opacity: 1;
    z-index: 2; /* 表示中の画像を最前面に */
    pointer-events: auto; /* 表示中はクリック可能 */
    animation-timing-function: ease-out;
  }
  38% {
    opacity: 1; /* 表示期間 */
    pointer-events: auto;
  }
  48% {
    opacity: 0; /* 次の画像で消える */
    pointer-events: none; /* 非表示中はクリック不可 */
  }
  100% {
    opacity: 0; /* 表示されていない時間 */
    pointer-events: none; /* 非表示のときはクリック不可 */
  }
}

#content #sub_copy {
  margin-bottom: 0;
  padding: 30px 50px 80px;
  font-family: "Noto Serif JP";
}
#content #sub_copy h1 {
  margin-bottom: 5px;
  margin-bottom: 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  line-height: 1.4;
  text-align: left;
}
#content #sub_copy h1 span {
  display: block;
  letter-spacing: .2em;
}
#content #sub_copy h1 span:first-child {
  font-size: 5.2rem;
}
#content #sub_copy h1 span.small_txt {
  font-size: 3rem;
}
#content #sub_copy p {
  margin-bottom: 55px;
  color: #333;
  font-size: 28px;
  line-height: 60px;
  letter-spacing: .1em;
  text-align: left;
}
#content #sub_copy p span {
  font-size: 44px;
}
#content #sub_copy p span.sm_txt {
  padding-right: 16px;
  font-size: 28px;
}
#content #sub_copy span.day {
  margin-bottom: 52px;
}
#content #sub_copy p.sub_txt {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 50px;
  text-align: left;
}
#content #sub_copy p img {
  position: relative;
  top: -6px;
  left: -7px;
}
#content #sub_copy p.day {
  font-family: "Zen Maru Gothic", sans-serif;
}

#content #sub_copy {
  /* padding: 0; */
}

#top {
  margin-bottom: 80px;
  padding: 0 50px;
}
/*1カラム*/
#top .cnt {
  padding: 60px 0 0;
}
#top .cnt img {
  width: 100%;
  margin-bottom: 30px;
}
#top .cnt .cnt_img:last-child img {
  margin-bottom: 0;
}
/*2カラム*/
#top .cnt_list {
  display: -webkit-flex;
  display:         flex;
          flex-wrap: wrap;
  justify-content: space-between;

  -webkit-flex-wrap: wrap;
}
#top .cnt_list .list {
  width: 48%;
  margin-bottom: 30px;
}
#top .cnt_list .list:nth-last-child(-n+2) {
  margin-bottom: 0;
}
#top .cnt_list .list img {
  width: 100%;
}
#top .ec_bnr {
  margin-top: 44px;
}
#top .ec_bnr img {
  width: 100%;
}

.category_ttl p {
  position: relative;
  padding-left: 70px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  letter-spacing: .32em;
}
.category_ttl p::before {
  content: "";
  width: 73px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -5%;
  background: #333;
}
.link_btn {
  position: relative;
  font-size: 2.8rem;
  text-align: center;
}
.link_btn a {
  display: block;
  width: 100%;
  padding: 35px 45px;
  border-radius: 20px;
  background: white;
}
.link_btn a::after {
  content: "";
  width: 38px;
  height: 9px;
  position: absolute;
  top: 44%;
  right: 3%;
  background: url("img/arrow.png");
  background-size: 100%;
}
.link_btn.more a::after {
  top: 44%;
  right: 28%;
}
.link_btn a p {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: .12em;
}
.link_btn a:hover {
  opacity: .8;
  color: #333;
}
.shop_blog .link_bnr img {
  width: 100%;
  margin-top: 10px;
}

#bnr {
  margin-bottom: 60px;
  padding: 40px 65px 20px;
  background: rgba(200,220,230,.5);
}
#bnr .cnt_img {
  margin-bottom: 20px;
  text-align: center;
}
#bnr img {
  width: 580px;
  margin-bottom: 20px;
}
#bnr a:hover img {
  opacity: 1;
}
#other {
  padding: 50px 50px 100px;
  background-color: #fff;
}
#other .bnr_online img {
  width: 48.5%;
}
#other .bnr_online {
  text-align: center;
}
#other .bnr {
  text-align: center;
}
#other .bnr img {
  width: 57.8%;
}
#other .bnr.bnr_m img {
  width: 100%;
  margin-top: 80px;
}
#other p {
  font-size: 2.8rem;
  line-height: 1.4;
}
#other .link_btn {
  margin-top: 68px;
}
#other .link_btn a {
  border: solid 2px #333;
  border-radius: 20px;
}
#other .link_btn a::after {
  right: 20%;
}

/*アンカーボタン*/
.an_btn {
  margin-bottom: 60px;
  padding: 0 50px 0;
}
.an_btn p {
  position: relative;
  padding: 24px;
  border-bottom: solid 1px #333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.4rem;
  line-height: 1.4;
  letter-spacing: .12em;
}
.an_btn a:first-child p {
  border-top: solid 1px #333;
}
.an_btn p::after {
  content: "";
  width: 100%;
  max-width: 34px;
  height: 10px;
  position: absolute;
  top: 40%;
  right: 3%;
  background: url("img/arrow.png");
}
.an_btn p span {
  font-size: 4.2rem;
}

/*SHOPBLOG*/
.shop_blog {
  background: var(--shop_blog-bgc);
}
/* #cat1.shop_blog {
  background: #f8ecdf;
}
#cat2.shop_blog {
  background: #ecf7ec;
}
#cat3.shop_blog {
  background: #f5e9ee;
}
#cat4.shop_blog {
  background: #fff;
} */
.fd_lead {
  text-align: center;
}
.shop_blog .shop_ttl {
  text-align: center;
}
.shop_blog .shop_ttl img {
  width: 100%;
  margin-bottom: 30px;
}
.content_image_wrap {
  display: flex;
  flex-direction: column;
}
.shop_blog img {
  display: block;
  width: 100%;
}
.shop_blog iframe {
  width: 100%;
  min-height: 860px;
  padding: 0 !important;
}
/*TOPページ下部*/
#other .bnr img {
  width: 100%;
}
#online {
  background: #f8ecdf;
}
#online .category_ttl img {
  width: 100%;
  max-width: 124px;
}
#online .online_list {
  display: flex;
          flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 58px;

  -webkit-flex-wrap: wrap;
}
/*1カラム*/
#online .online_list .list.list_wide {
  width: 100%;
  margin-left: 0;
}
#online .online_list .list.list_wide img.r_more {
  width: 100%;
  max-width: 221px;
}
/*2カラム*/
#online .online_list .list {
  width: 48%;
  margin-bottom: 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#online .online_list .list:nth-child(2n) {
  margin-right: 0;
}
#online .online_list .list img {
  width: 100%;
  margin-bottom: 27px;
}
#online .online_list .list img.r_more {
  width: 100%;
  max-width: 221px;
  margin-top: 10px;
}
#online .online_list .list p {
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1.4;
}
#online .bnr {
  margin-top: 10px;
}
#online .bnr img {
  width: 100%;
}
.info_bnr {
  margin-bottom: 50px;
  text-align: center;
}
#online .online_list .list p {
  font-size: 2rem;
}
#online .online_list .list p.event_ttl {
  font-size: 2.2rem;
}

#info {
  padding: 60px 50px 30px;
}
#info .info_txt {
  margin-top: 60px;
  font-size: 2.8rem;
  line-height: 1.8;
}
#info .info_txt p {
}
#info .info_txt p.info_txt_ttl {
  margin-bottom: 44px;
  font-size: 3rem;
}
#info .info_txt p.info_tyui {
  margin-top: 32px;
  font-size: 2.4rem;
}
#info .info_bnr_cnt {
  margin-top: 71px;
}
#info .info_bnr_cnt .info_bnr_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#info .info_bnr_cnt .info_bnr_list .info_bnr {
  width: 48%;
  margin-bottom: 20px;
}
#info .info_bnr_full {
  width: 750px;
  max-width: 100vw;
  margin-left: -48px;
}
/*youtube*/
.youtube {
  width: 100%;
  position: relative;
  padding: 0 50px;
}
.youtube img {
  width: 100%;
}
.youtube .tube_frame {
  margin-bottom: 20px;
}
.youtube .tube_frame iframe {
  width: 100%;
  height: 350px;
}
.youtube .tube_txt {
  font-size: 24px;
  line-height: 50px;
  text-align: left;
}
.youtube.youtube2 {
  margin-top: 80px;
  padding: 0;
}
.youtube.youtube2 .tube_frame {
  margin-bottom: 0;
}
.youtube p {
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.4;
}

/*footer*/
#footer {
  max-width: 750px;
  padding: 50px 60px;
}
footer dl, footer div {
  width: 100%;
  margin: 0;
}
ul.footer_link {
  margin-bottom: 10px;
  font-size: 29px;
  line-height: 49px;
}
ul.footer_link_child {
  margin-top: 10px;
  padding-left: 1.5em;
}

@media screen and (min-width:1024px) {
  html {
    overflow-x: hidden;
  }
  #footer {
    padding: 50px 60px 80px 60px;
  }
  #footer ul.footer_link {
    font-size: 29px;
    line-height: 49px;
  }
  #footer .f_cmp,#footer .f_toi {
    margin-bottom: 20px;
  }
  #footerBody .footer-copyright {
    text-align: center;
  }
  #footerBody .footer-copyright small {
    font-size: 24px;
  }
  footer a:not(.totop)::before {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 750px) {
  footer dl, footer div {
    font-size: 2.4rem;
  }
  footer a:not(.totop)::before {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 1rem;
  }
}

/*コンテンツパラパックス*/
/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
#idx .fadeInDown:nth-child(even) {
  animation-delay: .4s;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.downup {
  transform: translateY(100px);
}

/*pagetop*/
.pagetop {
  display: none;
  position: fixed;
  /* top: 0; */
  right: 50%;
  bottom: 20px;
  margin-right: -360px;
}

/*shopblog ifream*/
.cmn-bloglist {
  margin: 0 !important;
}

/*more*/
.more_btn {
  margin-bottom: 0;
}
.more_btn img {
  cursor: pointer;
}
.more_btn img:hover {
  opacity: .6;
}
.more {
  display: none;
}
#top .cnt_list .more .list {
  margin-right: 30px;
}
#top .cnt_list .more .list:nth-child(even) {
  margin-right: 0;
}

/*20230528追加*/
#sub_info {
  margin-bottom: 25px;
  padding: 0 50px 110px;
  font-family: "Noto Serif JP";
}
#sub_info .sub_txt {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 50px;
  text-align: left;
}
#sub_info .sub_txt span {
  font-weight: bold;
}
.cat_bnr {
  margin-bottom: 80px;
  padding: 0 50px;
}
.cat_bnr .cnt {
  padding: 60px 0 30px;
}

/* 2026324追加 */
:root {
  --body-bgc: #e3d3da;
  --shop_blog-bgc: #fff;
}
.header {
  padding-bottom: 110px;
  background-color: #fffcf4;
}
main {
  background-color: var(--body-bgc);
}
.column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
.column a {
  width: 100%;
}
.bnr_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 60px 50px 0;
}
