@charset "UTF-8";
/*Google Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* common color set*/
:root {
  --primary-color: #e84133;
  --primary-inverse-color: #232323;
  --secondary-color: #aa8657;
  --secondary-inverse-color: #fff;
  --accent-color: #aa8657;
  --accent-inverse-color: #fff;
}

/* animate.css */
.animate__animated {
  opacity: 0;
}

.fadein {
  opacity: 0;
  will-change: opacity;
}

.fadein.show {
  opacity: 1;
  animation: fadeIn 0.6s ease 0.2s both;
}

.fadeinUp {
  opacity: 0;
  transform: scale(0.92);
  transform-origin: center center;
  will-change: transform, opacity;
}

.fadeinUp.show {
  opacity: 1;
  transform: scale(1);
  animation: fadeInScale 0.35s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s both;
}

.fadeinRight {
  opacity: 0;
  transform: translateX(40px);
  will-change: transform, opacity;
}

.fadeinRight.show {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInFromRight 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s both;
}

.fadeinLeft {
  opacity: 0;
  transform: translateX(-40px);
  will-change: transform, opacity;
}

.fadeinLeft.show {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInFromLeft 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s both;
}

/* 左の直後にある右：左の表示開始から0.2s遅れてフェードイン */
.fadeinLeft.show + .fadeinRight.show {
  animation-delay: 0.4s;
}

/*透過のキーフレーム設定*/
@keyframes opa-kf {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  70% {
    opacity: 1;
    transform: scale(1.07);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/********** 全体の設定 **********/
body * {
  box-sizing: border-box;
}

html,
body {
  /*
  	height: 100%;
  */
  font-size: 14px;
}

/*画面幅600px以上（md）*/
@media screen and (min-width: 389px) {
  html,
  body {
    font-size: 15px;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  -webkit-text-size-adjust: none;
  line-height: 1.8em;
  color: var(--primary-inverse-color);
  overflow-x: hidden;
  background: #f5f3f2 url("../image/bg.png") repeat-y center top/100% auto;
  background-attachment: fixed;
}

/*Reset CSS*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav ul {
  list-style: none;
}

nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

section li {
  margin-left: 1rem;
}

/*その他初期設定*/
table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
}

iframe {
  width: 100%;
}

input {
  font-size: 1rem;
}

/*link*/
a {
  color: inherit;
  transition: all 0.5s 0s ease;
}

a:hover {
  text-decoration: none;
  opacity: 0.8 !important;
}

/*flexbox*/
.flexbox {
  display: flex;
  flex-wrap: nowrap;
  gap: 10%;
}

.flexbox.flex-clm {
  flex-direction: column;
  gap: 40px;
}

/* アンカーリンクのズレ対処 */
.event-anchor {
  padding-top: 52px;
  margin-top: -52px;
}

/********** contents ***********/
.contents {
  background: #f5f3f2;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

.contents .inner {
  padding: 20px 40px;
}

/*画面幅600px以上（md）*/
@media screen and (min-width: 389px) {
  /*
    @include lg {
  */
  .contents {
    max-width: 390px;
    /*
    max-width: 670px;
    */
    margin: 0 auto;
    overflow-x: hidden;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
  }
}
/*h2*/
.contents h2 {
  margin: 0;
  line-height: 1.8;
  font-size: 1.6rem;
  text-align: center;
}

/********** KV **********/
.hero {
  background-color: var(--primary-color);
  background-image: url("../image/hero_back.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-bottom: 100px;
}

@media screen and (min-width: 389px) {
  .hero {
    max-width: 390px;
    margin: 0 auto;
    padding-bottom: 0;
  }
}
/* KVのカルーセル */
#home .contents {
  padding: 0;
  overflow-x: hidden;
  background: transparent;
}
#home .contents h3 {
  margin-top: 40px;
}

@media screen and (min-width: 389px) {
  #home .contents {
    height: 1460px;
    overflow: hidden;
  }
}
/********** menu **********/
#menu_link .contents {
  background: #d80625;
}
#menu_link .contents .inner {
  padding: 10px 20px 100px;
}

.menu-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-link-grid a {
  display: block;
}

.menu-link-grid img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}

.menu-link-grid a:hover img {
  opacity: 0.7;
}

#menu_item .contents {
  overflow-x: clip;
  overflow-y: visible;
}
#menu_item .menu_item_ph {
  position: relative;
  z-index: 3;
  text-align: center;
}
#menu_item .menu_item_ph p {
  margin: 5px 0 0;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#menu_item .menu_item_ex {
  position: absolute;
  left: 10px;
  z-index: 2;
}
#menu_item .menu_item_ex img {
  display: block;
  max-width: 230px;
  width: 100%;
  height: auto;
}

.menu_item_01 {
  position: relative;
  background-image: url("../image/menu_item_01_back.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding-top: 250px;
}
@media screen and (min-width: 389px) {
  .menu_item_01 {
    padding-top: 260px;
  }
}
.menu_item_01 .menu_item_ex {
  top: 90px;
}
.menu_item_01 .menu_item_tit_left {
  position: absolute;
  left: 15px;
  top: -100px;
  z-index: 3;
}
.menu_item_01 .menu_item_tit_left img {
  width: 189px;
}
.menu_item_01 .menu_item_tit_right {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 3;
}
.menu_item_01 .menu_item_tit_right img {
  width: 171px;
}

.menu_item_02 {
  position: relative;
  background-image: url("../image/menu_item_02_back.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  min-height: 650px;
  padding-top: 220px;
}
@media screen and (min-width: 389px) {
  .menu_item_02 {
    padding-top: 230px;
  }
}
.menu_item_02 .menu_item_ex {
  top: 10px;
}
.menu_item_02 .menu_item_ex_02 {
  position: absolute;
  z-index: 4;
  top: 140px;
  right: 0;
}
.menu_item_02 .menu_item_ex_02 img {
  width: 180px;
}

/********** goods **********/
.goods_head {
  position: relative;
  background-image: url("../image/goods_back01.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  min-height: 590px;
  padding-top: 250px;
  padding-bottom: 20px;
}
@media screen and (min-width: 389px) {
  .goods_head {
    padding-top: 240px;
  }
}
.goods_head .goods_head_left {
  position: absolute;
  left: 15px;
  top: 90px;
}
.goods_head .goods_head_left img {
  max-width: 165px;
}
.goods_head .goods_head_right {
  position: absolute;
  right: 0;
  top: 45px;
}
.goods_head .goods_head_right img {
  max-width: 190px;
}
.goods_head h2 {
  margin: 0;
  text-align: center;
}
.goods_head h2 img {
  display: block;
  max-width: 225px;
  margin: 0 auto;
}
.goods_head h3 {
  margin: 0;
  text-align: center;
}
.goods_head h3 img {
  display: block;
  max-width: 320px;
  margin: 0 auto;
}

.goods_body {
  position: relative;
  background-image: url("../image/campaign_head_back.png"), url("../image/goods_back02.png");
  background-repeat: no-repeat, repeat-y;
  background-position: center bottom, center top;
  background-size: 100% auto, 100% auto;
  padding-bottom: 200px;
}
.goods_body .goods_item_badge {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 2;
}
.goods_body .goods_item_badge img {
  display: block;
  max-width: 180px;
  margin: 0 auto;
}
.goods_body .goods_item_badge02 {
  position: absolute;
  top: 110px;
  left: 0;
  right: 0;
  z-index: 1;
}
.goods_body .goods_item_badge02 img {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}
.goods_body .goods_item_tit {
  text-align: center;
  position: relative;
  z-index: 9;
}
.goods_body .goods_item_tit img {
  max-width: 330px;
}
.goods_body .goods_item_ph {
  margin-top: 0;
}
.goods_body .goods_item_ph img {
  width: 100%;
}
.goods_body .goods_item_sche {
  text-align: center;
}
.goods_body .goods_item_sche p {
  font-size: 13px;
  color: #004097;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  font-weight: bold;
  margin-top: 6px;
}
.goods_body .goods_item_sche img {
  max-width: 250px;
}
.goods_body .goods_warning {
  width: 86%;
  margin: 0 auto;
  color: #fff;
}
.goods_body .goods_warning p {
  font-size: 13px;
  line-height: 1.4rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
}
.goods_body .goods_item01,
.goods_body .goods_item02,
.goods_body .goods_item03,
.goods_body .goods_item04,
.goods_body .goods_item05 {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 40px;
}
.goods_body .goods_item01,
.goods_body .goods_item02,
.goods_body .goods_item03,
.goods_body .goods_item05 {
  background-size: 87% auto;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item01,
  .goods_body .goods_item02,
  .goods_body .goods_item03,
  .goods_body .goods_item05 {
    background-size: 82% auto;
  }
}
.goods_body .goods_item04 {
  background-size: 90% auto;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item04 {
    background-size: 86% auto;
  }
}
.goods_body .goods_item01 {
  background-image: url("../image/goods_item01_back.png");
  min-height: 1055px;
  padding-top: 110px;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item01 {
    padding-top: 80px;
  }
}
.goods_body .goods_item02 {
  margin-top: 70px;
  background-image: url("../image/goods_item02_back.png");
  min-height: 1890px;
  padding-top: 90px;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item02 {
    padding-top: 70px;
    margin-top: 50px;
    min-height: 1865px;
  }
}
.goods_body .goods_item02 .goods_item_pick {
  position: absolute;
  top: 290px;
  right: 40px;
  z-index: 8;
}
.goods_body .goods_item02 .goods_item_pick img {
  max-width: 120px;
}
.goods_body .goods_item02 .goods_item02_ph_wrap {
  position: relative;
  min-height: 1260px;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph01,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph02,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph03,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph04,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph05,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph06 {
  position: absolute;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph01,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph03,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph05 {
  left: 30px;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph01 img,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph03 img,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph05 img {
  max-width: 250px;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph01 {
  top: -100px;
  z-index: 6;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph03 {
  top: 280px;
  z-index: 4;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph05 {
  top: 660px;
  z-index: 2;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph02,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph04,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph06 {
  right: 0;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph02 img,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph04 img,
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph06 img {
  max-width: 270px;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph02 {
  top: 90px;
  z-index: 5;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph04 {
  top: 460px;
  z-index: 3;
}
.goods_body .goods_item02 .goods_item02_ph_wrap .goods_item02_ph06 {
  top: 840px;
  z-index: 1;
}
.goods_body .goods_item03 {
  margin-top: 50px;
  background-image: url("../image/goods_item03_back.png");
  min-height: 1160px;
  padding-top: 210px;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item03 {
    margin-top: 30px;
    min-height: 1076px;
  }
}
.goods_body .goods_item03 .goods_item03_ph_wrap {
  position: relative;
  padding-top: 640px;
}
.goods_body .goods_item03 .goods_item03_ph_wrap .goods_item03_tit,
.goods_body .goods_item03 .goods_item03_ph_wrap .goods_item03_ph01,
.goods_body .goods_item03 .goods_item03_ph_wrap .goods_item03_ph02 {
  position: absolute;
}
.goods_body .goods_item03 .goods_item03_ph_wrap .goods_item03_tit {
  top: -50px;
  left: 0;
  right: 0;
  z-index: 3;
}
.goods_body .goods_item03 .goods_item03_ph_wrap .goods_item03_tit img {
  display: block;
  max-width: 350px;
  margin: 0 auto;
}
.goods_body .goods_item03 .goods_item03_ph_wrap .goods_item03_ph01 {
  top: 155px;
  z-index: 1;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item03 .goods_item03_ph_wrap .goods_item03_ph01 {
    top: 170px;
  }
}
.goods_body .goods_item04 {
  margin-top: 60px;
  background-image: url("../image/goods_item04_back.png");
  min-height: 1640px;
  padding-top: 70px;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item04 {
    margin-top: 50px;
    padding-top: 60px;
  }
}
.goods_body .goods_item04 .goods_item04_ph_wrap {
  position: relative;
  padding-top: 250px;
  padding-bottom: 10px;
}
.goods_body .goods_item04 .goods_item04_ph_wrap .goods_item04_tit {
  position: absolute;
}
.goods_body .goods_item04 .goods_item04_ph_wrap .goods_item04_tit {
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.goods_body .goods_item04 .goods_item04_ph_wrap .goods_item04_tit img {
  display: block;
  max-width: 350px;
  margin: 0 auto;
}
.goods_body .goods_item05 {
  margin-top: 30px;
  background-image: url("../image/goods_item05_back.png");
  min-height: 390px;
  padding-top: 40px;
}
@media screen and (min-width: 389px) {
  .goods_body .goods_item05 {
    margin-top: 0;
  }
}
.goods_body .goods_item05 .goods_item05_ph {
  text-align: center;
}
.goods_body .goods_item05 .goods_item05_ph img {
  max-width: 330px;
}

/********** campaign **********/
#campaign .contents {
  position: relative;
  display: flow-root;
  background-image: url("../image/campaign_back.png");
  background-repeat: repeat-y;
  background-position: center center;
  background-size: 100% auto;
  overflow: visible;
}
#campaign .campaign_head {
  position: relative;
  padding-top: 30px;
}
#campaign .campaign_head h2 img {
  max-width: 303px;
}
#campaign .campaign_head .campaign_head_left {
  position: absolute;
  left: 20px;
  top: -170px;
  z-index: 5;
}
#campaign .campaign_head .campaign_head_left img {
  max-width: 167px;
}
#campaign .campaign_head .campaign_head_right {
  position: absolute;
  right: 10px;
  top: -140px;
}
#campaign .campaign_head .campaign_head_right img {
  max-width: 171px;
}
#campaign .campaign_item {
  width: 86%;
  margin: 0 auto;
  padding: 0 0 20px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#campaign .campaign_item .campaign_item_tit {
  margin-top: 10px;
}
#campaign .campaign_item .campaign_item_ph {
  margin: 20px 0;
}
#campaign .campaign_item .campaign_item_add {
  width: 86%;
  margin: 0 auto;
  color: #003c64;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#campaign .campaign_item .campaign_item_add h3 {
  font-size: 22px;
  padding: 0 0 10px;
  margin-bottom: 0;
  border-bottom: 2px solid #003c64;
}
#campaign .campaign_item .campaign_item_add p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}
#campaign .campaign_item .campaign_line {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 6px solid #003c64;
}
#campaign .campaign_item .campaign_box {
  width: 94%;
  margin: 0 auto;
  background-color: #ffdc46;
  position: relative;
  border-radius: 20px;
  margin-top: 60px;
  padding: 100px 10px 10px;
}
#campaign .campaign_item .campaign_box .campaign_box_in {
  margin-top: 30px;
  padding: 10px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  color: #003c64;
  text-align: center;
}
#campaign .campaign_item .campaign_box .campaign_box_in h2 {
  margin-bottom: 20px;
}
#campaign .campaign_item .campaign_box .campaign_box_in h3 {
  margin-bottom: 10px;
}
#campaign .campaign_item .campaign_box .campaign_box_in h4 {
  margin: 0;
  font-size: 11px;
  line-height: 1.4rem;
}
#campaign .campaign_item .campaign_box .campaign_box_in p {
  line-height: 1.4rem;
  margin: 0;
  font-size: 9px;
  font-weight: 600;
}
#campaign .campaign_item .campaign_box .campaign_box_tit {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
}
#campaign .campaign_item .campaign_box .campaign_box_tit img {
  max-width: 240px;
}

.campaign_sns {
  width: 74%;
  margin: 20px auto 0;
  padding: 0;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}
.campaign_sns h2 {
  padding: 10px 20px 0;
}
.campaign_sns .sns-links {
  list-style: none;
  margin: 0 auto;
  padding: 40px;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.campaign_sns .sns-links li {
  margin: 0;
  list-style: none;
}
.campaign_sns .sns-links a {
  display: block;
}
.campaign_sns .sns-links a:hover {
  opacity: 1;
}
.campaign_sns .sns-links a img {
  display: block;
  width: 100%;
  max-width: 50px;
  transition: opacity 0.2s;
}
.campaign_sns .sns-links a:hover img {
  opacity: 0.8;
}

/********** copy **********/
#copy .contents {
  background-color: #fff;
  padding: 5px 30px;
}
#copy .contents p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  line-height: 1.2rem;
  font-weight: bold;
}
#copy .contents .copy-links {
  width: 100%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#copy .contents .copy-links li {
  margin: 0;
  flex: 0 1 auto;
  list-style: none;
}
#copy .contents .copy-links li img {
  display: block;
  width: auto;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
#copy .contents .copy-links li:nth-child(1) img,
#copy .contents .copy-links li:nth-child(2) img {
  max-width: 82px;
}
#copy .contents .copy-links li:nth-child(3) img {
  max-width: 140px;
}

.footer_dino {
  text-align: center;
  margin: 0;
}
.footer_dino img {
  max-width: 300px;
}

/********** footer **********/
footer {
  font-size: 0.8rem;
  text-align: center;
}
footer small {
  font-size: 100%;
}
footer .contents {
  padding: 40px;
  background: var(--primary-color);
}
footer .flexbox.flex-clm.foot-link-btn {
  gap: 20px;
}

/********** ボタン **********/
.menu_item_btn {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 20px;
}
.menu_item_btn a {
  display: inline-block;
  text-decoration: none;
}
.menu_item_btn a:hover {
  opacity: 1;
}
.menu_item_btn a img {
  display: block;
  max-width: 245px;
  transition: transform 0.3s ease;
}
.menu_item_btn a:hover img {
  transform: scale(1.06);
}
.menu_item_btn p {
  font-size: 13px;
  color: #004097;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  font-weight: bold;
}

.btn_base-wh a {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 15px 5px;
  font-size: 1.05rem;
  background: #ffffff;
  max-width: 320px;
  margin: 0 auto;
}

.btn_base-wh a:hover {
  background: #232323;
  color: #ffffff;
}

/********** ドロアメニュー **********/
#menubar {
  display: none;
}

#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menubar a {
  display: block;
  text-decoration: none;
}
#menubar a img {
  transition: opacity 0.2s;
}
#menubar a:hover {
  opacity: 1;
}
#menubar a:hover img {
  opacity: 0.8;
}

#menubar nav ul li:nth-child(-n+4) {
  width: 100%;
  text-align: center;
}
#menubar nav ul li:nth-child(-n+4) img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 389px) {
  #menubar nav ul li:nth-child(-n+4) img {
    width: 160px;
  }
}

.large-screen #menubar {
  display: block;
}

.small-screen #menubar.display-block {
  display: block;
}

#menubar_hdr.display-none {
  display: none;
}

.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 270px;
  max-width: 100%;
  max-height: calc(100% + 1px);
  padding: 60px 25px 30px;
  background: var(--secondary-inverse-color);
  color: var(--primary-inverse-color);
  animation: opa-kf 1s both;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  scrollbar-width: none;
  margin-bottom: -1px;
}

.small-screen #menubar nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.small-screen #menubar nav ul li {
  border: 1px solid var(--secondary-inverse-color);
}

.small-screen #menubar a {
  color: inherit;
}

/********** ハンバーガーアイコン **********/
header {
  position: relative;
  left: 0;
  width: 100%;
  z-index: 100;
}

header .contents {
  padding: 0;
  height: 88px;
  display: flex;
  justify-content: space-between;
  overflow-x: hidden;
  background: transparent;
}

header .contents a {
  width: 90%;
  max-width: 317px;
  height: auto;
}

header .contents a img {
  width: 100%;
}

#menubar_hdr {
  position: fixed;
  right: 16px;
  top: 5px;
  animation: opa-kf 0s 0.2s both;
  z-index: 101;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(2);
  transform-origin: right top;
  /*
  mix-blend-mode: exclusion;
  */
  margin-top: 5px;
  background: #ffff00;
  border-radius: 50%;
  padding: 8px 6px;
}

#menubar_hdr span {
  display: block;
  transition: 0.3s;
  border-top: 2px solid var(--primary-inverse-color);
  border-radius: 10px;
}

/*×状態（1＆2本目）*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center;
  width: 18px;
}

#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(3.2px, 4px);
}

#menubar_hdr.ham span:nth-of-type(3) {
  transform: rotate(-45deg) translate(3.2px, -4px);
}

#menubar_hdr.ham span:nth-of-type(2) {
  display: none;
}

#pow_hero {
  text-align: center;
  position: relative;
}
#pow_hero h1 {
  margin-top: 10px;
}
#pow_hero h2 {
  margin-top: 20px;
}
#pow_hero h3 {
  margin-top: 40px;
}

#pow_hero img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/*# sourceMappingURL=style.css.map */
