@charset "utf-8";

/*-------------------------------------------------------------------------------------------------------------------------------
* reset
-------------------------------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1;
}
img{
  vertical-align: bottom;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

button {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  color: inherit;
}

/*-------------------------------------------------------------------------------------------------------------------------------
* 基本設定
-------------------------------------------------------------------------------------------------------------------------------*/
html {
    font-size: 10px;
}
@media (max-width: 767px) {
    html {
        font-size: 1.33vw;
    }
}
body{
    font-size: 12px;
    color: #2e2624;
    line-height: 1.3;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    -webkit-text-size-adjust:100%;
}
@media screen and (max-width:767px) {
    body{
        font-size: 1.2rem;
    }
}

.red {
  color: #cc1b3c !important;
}
.red2 {
  color: #e60012 !important;
}
.skyblue {
  color: #44b5e2 !important;
}
.orange {
  color: #e68f27 !important;
}
.gold {
  color: #d9a757 !important;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* common
-------------------------------------------------------------------------------------------------------------------------------*/
#container{
  width: 100%;
  margin: 0 auto;
}

.btn-menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: calc(50% + 281px);
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}
.btn-menu.active {
  visibility: visible;
  opacity: 1;
}

/* drawerMenu */
.drawerMenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.drawerMenu::-webkit-scrollbar {
  display: none;
}
.drawerMenu.open {
  visibility: visible;
  opacity: 1;
}
/* drawerMenu-list  */
.drawerMenu-content {
  width: 750px;
  margin: 0 auto;
  position: relative;
  background: url(/base/osaka/nihonshumatsuri/img/260805/menu_bg.jpg) repeat-y center top;
  padding: 80px 0 50px;
}
.drawerMenu-content .btn-close {
  position: absolute;
  top: 0;
  right: 0;
}
.drawerMenu-ttl {
  text-align: center;
}
.drawerMenu-list {
  width: 750px;
  margin: 0 auto;
}
.drawerMenu-list li {
  text-align: center;
  margin-bottom: 24px;
}
.drawerMenu-list li:last-child {
  margin-bottom: 0;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* main
-------------------------------------------------------------------------------------------------------------------------------*/
main {
  width: 750px;
  margin: 0 auto;
  font-size: 24px;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.5;
}
main a {
  text-decoration: none;
  color: inherit;
}

.main-title {
  background: url(/base/osaka/nihonshumatsuri/img/260805/title_bg.jpg) no-repeat bottom center #1a3167;
  padding-bottom: 60px;
}
.main-title-txt {
  padding: 0 20px 50px;
  text-align: center;
  color: #fff;
}
.main-title-txt-01 {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.main-title-txt-01 small {
  font-size: 70%;
}
.main-title-txt-02 {
  margin: 20px 0 15px;
  display: inline-block;
  background-color: #fff;
  color: #1a3167;
  padding: 2px 20px;
  font-size: 24px;
  font-weight: 600;
}
.main-title-txt-02 small {
  font-size: 80%;
}
.main-title-txt-03 {
  font-size: 18px;
  letter-spacing: 0.06em;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* mv
-------------------------------------------------------------------------------------------------------------------------------*/
.mv-slider {
  padding: 10px 0 30px;
}
.mv-slider-wrapper {
  display: flex;
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
}
.mv-slider-list {
  display: flex;
  flex-shrink: 0;
  animation: mv-slider-scroll-right 40s infinite linear both;
}
/* 02のみ逆方向（右へ流れる） */
.mv-slider-02 .mv-slider-list {
  animation-name: mv-slider-scroll-left;
}
.mv-slider-list li {
  flex-shrink: 0;
}
.mv-slider-list img {
  display: block;
  width: 124px;
  height: auto;
}
@keyframes mv-slider-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes mv-slider-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* 動きを減らす設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  .mv-slider-list {
    animation: none;
  }
}


/*-------------------------------------------------------------------------------------------------------------------------------
* index-nav
-------------------------------------------------------------------------------------------------------------------------------*/
.index-nav {
  background: url(/base/osaka/nihonshumatsuri/img/260805/bg_01.jpg) repeat-y center top;
}
.index-nav dl {
  background-color: #1a3167;
  padding-bottom: 30px;
}
.index-nav dl dd {
  text-align: center;
}
.index-nav dl dd a {
  display: inline-block;
  min-width: 370px;
  padding: 10px 50px;
  background-image: url(/base/osaka/nihonshumatsuri/img/260805/arrow01.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-color: #fff;
  color: #1a3167;
  border-radius: 100vh;
}

.index-nav ul {
  padding: 125px 0 50px;
  background: url(/base/osaka/nihonshumatsuri/img/260805/nav_bg.jpg) no-repeat center top;
}
.index-nav ul li {
  text-align: center;
  margin-bottom: 35px;
}
.index-nav ul li:last-child {
  margin-bottom: 0;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* section01
-------------------------------------------------------------------------------------------------------------------------------*/
.section01 {
  padding-top: 50px;
  padding-bottom: 50px;
  background: url(/base/osaka/nihonshumatsuri/img/260805/bg_01.jpg) repeat-y center top;
}
.sec01-inner {
  width: 700px;
  margin: 0 auto;
  padding-bottom: 90px;
  background-image: url(/base/osaka/nihonshumatsuri/img/260805/sec01_bg_b.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #fff;
}

/* sec01-ttl */
.sec01-ttl-txt {
  padding: 20px 20px 50px;
  text-align: center;
  font-size: 26px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1a3167;
}

/* sec01-koujikin */
.sec01-koujikin {
  width: 750px;
  margin-left: -25px;
  padding: 25px 0;
  background: url(/base/osaka/nihonshumatsuri/img/260805/bg_01.jpg) no-repeat center top;
  display: flex;
  flex-wrap: wrap;
}
.sec01-koujikin dl {
  flex: 1;
  padding: 0 25px 0 50px;
  color: #fff;
}
.sec01-koujikin dl dt {
  padding-left: 40px;
  background: url(/base/osaka/nihonshumatsuri/img/260805/icon_rice.png) no-repeat left center;
}
.sec01-koujikin dl dt ruby {
  font-size: 30px;
  font-family: "Shippori Mincho", serif;
}
.sec01-koujikin dl dt ruby rt {
  font-size: 40%;
}
.sec01-koujikin dl dd {
  font-size: 21px;
  font-weight: 400;
}

/* sec01-koujikin-type */
.sec01-koujikin-type {
  padding: 40px 50px;
}
.sec01-koujikin-type dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}
.sec01-koujikin-type dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-width: 80px;
  min-height: 80px;
  font-size: 25px;
  font-weight: 500;
  border-radius: 100vh;
}
.sec01-koujikin-type dl dd {
  flex: 1;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
}

.sec01-koujikin-type-01 dt {
  background-color: #f5eb59;
}
.sec01-koujikin-type-01 dd {
  color: #ab981c;
}
.sec01-koujikin-type-02 dt {
  background-color: #231815;
  color: #ede0cf;
}
.sec01-koujikin-type-02 dd {
  color: #231815;
}
.sec01-koujikin-type-03 dt {
  background-color: #ede0cf;
}
.sec01-koujikin-type-03 dd {
  color: #ab753b;
}
.sec01-koujikin-type-note {
  margin-top: 20px;
  font-size: 15px;
}

/* sec01-subttl-01 */
.sec01-subttl-01 {
  width: 750px;
  margin-left: -25px;
  background-color: rgba(230, 143, 39, 0.2);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 50px 20px 50px;
}
.sec01-subttl-01 dl {
  flex: 1;
}
.sec01-subttl-01 dl dt {
  font-size: 48px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  color: #502819;
  margin-bottom: 10px;
}
.sec01-subttl-01 dl dt small {
  display: inline-block;
  position: relative;
  top: -8px;
  font-size: 60%;
}
.sec01-subttl-01 dl dd {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  color: #e68f27;
}

/* sec01-subttl-02 */
.sec01-subttl-02 {
  width: 750px;
  margin-left: -25px;
  background-color: rgba(0, 173, 213, 0.2);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  padding: 20px 50px 20px 50px;
  margin-top: 50px;
}
.sec01-subttl-02 dl {
  flex: 1;
}
.sec01-subttl-02 dl dt {
  font-size: 44px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  color: #1a3167;
  margin-bottom: 10px;
}
.sec01-subttl-02 dl dt small {
  display: inline-block;
  position: relative;
  top: -8px;
  font-size: 60%;
}
.sec01-subttl-02 dl dd {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  color: #00aed5;
}


/* sec01-slider */
.sec01-slider-wrapper {
  width: 570px;
  margin: 0 auto;
  padding: 50px 0 0;
}

.sec01-slide-item {
  width: 255px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sec01-slide-item .image {
  text-align: center;
  margin-bottom: 20px;
}
.sec01-slide-item .txt {
  padding-bottom: 15px;
}
.sec01-slide-item .icon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 20px;
  line-height: 1;
}
.sec01-slide-item .icon .icon-01 {
  background-color: #ee8b23;
  color: #fff;
  padding: 2px 5px;
}
.sec01-slide-item .icon .icon-02 {
  background-color: #f3eb5a;
  padding: 4px 10px;
  font-size: 18px;
  border-radius: 100vh;
  font-weight: 500;
}
.sec01-slide-item .icon .icon-02.type-01 {
  background-color: #f3eb5a;
}
.sec01-slide-item .icon .icon-02.type-02 {
  background-color: #ede0cf;
}
.sec01-slide-item .icon .icon-02.type-03 {
  background-color: #231815;
  color: #ede0cf;
}
.sec01-slide-item .spec dt {
  font-size: 110%;
  font-weight: 600;
  color: #e68f26;
}
.sec01-slide-item .spec dd {
  line-height: 1.3;
  color: #502819;
}
.sec01-slide-item .spec dd .price {
  font-size: 120%;
  line-height: 1.1;
  font-weight: 500;
}
.sec01-slide-item .spec dd small {
  font-size: 80%;
}
.sec01-slide-item .btn {
  margin-top: auto;
}
.sec01-slide-item .btn a {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  background-color: #e68f26;
  color: #fff;
  border-radius: 100vh;
}

/* blue */
.blue .sec01-slide-item .icon .icon-01 {
  background-color: #209abb;
}
.blue .sec01-slide-item .spec dt {
  color: #00aed5;
}
.blue .sec01-slide-item .spec dd {
  line-height: 1.3;
  color: #1a3167;
}
.blue .sec01-slide-item .btn a {
  background-color: #00aed5;
}

/* splide */
.splide__arrow > svg {
	display: none;
}
.splide__arrow {
	font-size: 0;
	position: absolute;
	z-index: 100;
	top: 230px;
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
  border: none;
	cursor: pointer;
}
.splide__arrow--prev  {
	left: -50px;
	background: url(/base/osaka/nihonshumatsuri/img/260805/prev.png) no-repeat center center;
}
.splide__arrow--next {
	right: -50px;
	background: url(/base/osaka/nihonshumatsuri/img/260805/next.png) no-repeat center center;
}
.splide__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0 60px;
}
.splide__pagination li button {
	display: block;
	padding: 0;
	font-size: 0;
	line-height: 0;
	width: 18px;
	height: 18px;
	cursor: pointer;
	color: transparent;
	border-radius: 50%;
	outline: none;
  border: none;
	background: #d1d1d1;
}
.splide__pagination li button:hover, 
.splide__pagination li button:focus, 
.splide__pagination li button.is-active {
	background: #502b19;
}
.blue .splide__pagination li button:hover, 
.blue .splide__pagination li button:focus, 
.blue .splide__pagination li button.is-active {
	background: #1a3167;
}

/* sec01-txt01 */
.sec01-txt01 {
  width: 600px;
  margin: 0 auto;
  background-image: url(/base/osaka/nihonshumatsuri/img/260805/sec01_fukidashi.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.sec01-txt01 p {
  min-height: 140px;
  background-color: #f1eed9;
  padding: 15px;
  border-radius: 70px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #ab981c;
  
}
.sec01-txt01 b {
  font-size: 140%;
  font-weight: 600;
}

/* sec01-bar */
.sec01-bar {
  margin-top: 70px;
}
.sec01-bar-ttl {
  width: 695px;
  min-height: 80px;
  margin-left: -25px;
  background-image: url(/base/osaka/nihonshumatsuri/img/260805/sec01_bar_ttl_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #c81432;
  font-size: 40px;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 10px 50px 10px 80px;
}
.sec01-bar-subttl {
  display: inline-block;
  background-color: #1a3167;
  font-size: 35px;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 5px 30px 5px 50px;
  margin-top: 70px;
}

/* sec01-bar-item */
.sec01-bar-item + .sec01-bar-item {
  margin-top: 80px;
}
.sec01-bar-item {
  width: 640px;
  margin: 30px auto 0;
}
.sec01-bar-item .image {
  text-align: center;
  margin-bottom: 30px;
}
.sec01-bar-item .txt {
  line-height: 1.4;
  padding-left: 20px;
  border-left: 3px solid #726555;
}
.sec01-bar-item .txt .ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.sec01-bar-item .txt .ttl sup {
  position: relative;
  top: -8px;
  font-size: 40%;
  line-height: 0;
  font-weight: 400;
}
.sec01-bar-item .txt .copy {
  margin-top: 10px;
}
.sec01-bar-item .txt .spec {
  margin-top: 20px;
  font-size: 95%;
  color: #65604e;
}
.sec01-bar-item .txt .spec p + p {
  margin-top: 30px;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* section02
-------------------------------------------------------------------------------------------------------------------------------*/
.section02 {
  background: url(/base/osaka/nihonshumatsuri/img/260805/bg_01.jpg) repeat-y center top;
}
.sec02-inner {
  width: 700px;
  margin: 0 auto;
  padding-bottom: 50px;
  background-color: #fff;
}

.sec02-subttl {
  width: 695px;
  min-height: 80px;
  margin-left: -25px;
  font-size: 38px;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 10px 50px 10px 60px;
  margin-top: 80px;
  margin-bottom: 30px;
}
.sec02-subttl.bg-gold {
  background: url(/base/osaka/nihonshumatsuri/img/260805/sec02_ttl_bg01.png) no-repeat right bottom #d59d3f;
}
.sec02-subttl.bg-darkblue {
  background: url(/base/osaka/nihonshumatsuri/img/260805/sec02_ttl_bg02.png) no-repeat right bottom #1a3167;
} 

/* sec02-item */
.sec02-item + .sec02-item {
  margin-top: 80px;
}
.sec02-item {
  width: 640px;
  margin: 0 auto;
}
.sec02-item .image {
  text-align: center;
  margin-bottom: 30px;
}
.sec02-item .txt {
  line-height: 1.4;
  padding-left: 20px;
  border-left: 3px solid #726555;
}
.sec02-item .txt .ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a3167;
}
.sec02-item .ttl-2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a3167;
  margin-bottom: 30px;
}
.sec02-item .txt .copy {
  margin-top: 10px;
  color: #1a3167;
}
.sec02-item .txt .spec {
  margin-top: 20px;
  color: #65604e;
}

/* sec02-item-03-sub */
.sec02-item-03-sub {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
}
.sec02-item-03-sub .image {
  margin-bottom: 0;
}
.sec02-item-03-sub .txt {
  flex: 1;
}
.sec02-item-03-sub .txt b {
  font-size: 110%;
  font-weight: 600;
}
.sec02-item-03-sub .txt .copy {
  margin-top: 5px;
}

/* sec02-item-04-sub */
.sec02-item-04-sub {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* sec02-item-05-sub */
.sec02-item-05-sub {
  margin-top: 50px;
}
.sec02-item-05-sub h4 {
  margin: 0 0 30px -30px;
  display: inline-block;
  overflow: hidden;
}
.sec02-item-05-sub h4 span {
  position: relative;
  display: inline-block;
  z-index: 3;
  padding: 5px 50px 5px 30px;
  border-top: 1px solid #1a3167;
  border-bottom: 1px solid #1a3167;
  font-size: 34px;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  line-height: 1.5;
  color: #1a3167;
}
.sec02-item-05-sub h4 span::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: -40%;
  right: -20px;
  width: 50px;
  height: 160%;
  background-color: #fff;
  border-left: 1px solid #1a3167;
  transform: rotate(-20deg);
}

.sec02-item-05-sub-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.sec02-item-05-sub-list dl {
  width: 290px;
}
.sec02-item-05-sub-list dl dt {
  width: 100px;
  margin-bottom: 10px;
}
.sec02-item-05-sub-list dl dd {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a3167;
}

/* sec02-item-08-sub */
.sec02-item-08 {
  padding-bottom: 10px;
  border-bottom: 1px solid #1a3167;
}
.sec02-item-08-sub {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  border-bottom: 1px solid #1a3167;
}
.sec02-item-08-sub > div {
  flex: 1;
}
.sec02-item-08-sub .txt + .txt {
  margin-top: 30px;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* section03
-------------------------------------------------------------------------------------------------------------------------------*/
.section03 {
  background: url(/base/osaka/nihonshumatsuri/img/260805/sec03_bg.jpg) repeat-y center top 300px;
}
.sec03-inner {
  width: 640px;
  margin: 0 auto;
  padding-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

.sec03-item + .sec03-item {
  margin-top: 50px;
}
.sec03-item {
  width: 640px;
  margin: 0 auto;
}
.sec03-item .image {
  text-align: center;
}
.sec03-item .txt {
  line-height: 1.4;
  padding: 20px 50px;
}
.sec03-item .txt .copy {
  color: #9e232b;
}
.sec03-item .txt .spec {
  margin-top: 15px;
  color: #65604e;
}
.sec03-item .txt .spec dt {
  font-size: 120%;
  font-weight: 700;
}
.sec03-item .txt .spec small {
  font-size: 80%;
}

/* sec03-item-05 */
.sec03-item-05 {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 80px;
}
.sec03-item-05 .txt {
  padding: 0 0 0 50px;
}

/* sec03-item-08 */
.sec03-item-08 .image-2 {
  margin-left: -50px;
}


/* sec03-pickup */
.sec03-pickup {
  background-color: #9e232b;
  padding-bottom: 50px;
}
.sec03-pickup-item {
  width: 640px;
  margin: 0 auto;
}
.sec03-pickup-item + .sec03-pickup-item {
  margin-top: 80px;
}
.sec03-pickup-item {
  width: 640px;
  margin: 0 auto;
}
.sec03-pickup-item .image {
  text-align: center;
  margin-bottom: 30px;
}
.sec03-pickup-item .txt {
  line-height: 1.4;
  padding-left: 20px;
  border-left: 3px solid #fff;
}
.sec03-pickup-item .txt .ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #e6cea3;
}
.sec03-pickup-item .txt .copy {
  margin-top: 10px;
  color: #fff;
}
.sec03-pickup-item .txt .spec {
  margin-top: 20px;
  color: #fff;
}
.sec03-pickup-item .txt .spec dt {
  font-size: 120%;
  font-weight: 600;
}

/* sec03-pickup-item-01-sub */
.sec03-pickup-item-01-sub {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  margin-top: 30px;
}
.sec03-pickup-item-01-sub .txt {
  flex: 1;
  border-left: 3px solid #fff67f;
}
.sec03-pickup-item-01-sub .txt .copy {
  color: #fff67f;
  font-weight: 600;
}
.sec03-pickup-item-01-sub .txt .spec {
  margin-top: 10px;
  color: #fff;
}

/* sec03-pickup-item-02 */
.sec03-pickup-item-02 .ttl sup {
  position: relative;
  top: 5px;
  line-height: 0;
  font-weight: 400;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* section04
-------------------------------------------------------------------------------------------------------------------------------*/
.section04 {
  padding-top: 150px;
  padding-bottom: 70px;
  background: url(/base/osaka/nihonshumatsuri/img/260805/sec03_pick_bg_b.jpg) no-repeat center top #1a3167;
}
.sec04-inner {
  width: 640px;
  margin: 0 auto;
  padding-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

/* sec04-yoyaku */
.sec04-yoyaku {
  width: 660px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #ffe33f;
}
.sec04-yoyaku h3 {
  padding: 5px;
  font-size: 30px;
  background-color: #ffe33f;
  color: #1a3167;
  text-align: center;
}
.sec04-yoyaku-content {
  padding: 35px 40px;
  color: #65604e;
  line-height: 1.3;
}
.sec04-yoyaku-txt {
  padding: 20px;
  border: 1px solid #65604e;
  border-radius: 20px;
  text-align: center;
}
.sec04-yoyaku-txt-01 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #65604e;
}
.sec04-yoyaku-txt-01 .yoyaku {
  position: relative;
  top: -3px;
  display: inline-block;
  padding: 5px 10px;
  background-color: #ffe33f;
  border: 1px solid #1a3167;
  color: #1a3167;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-right: 10px;
}
.sec04-yoyaku-txt-02 {
  font-size: 24px;
  font-weight: 600;
}
.sec04-yoyaku-txt-02 b {
  font-size: 120%;
}

.sec04-yoyaku-note {
  margin-top: 30px; 
}
.sec04-yoyaku-note dt {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}
.sec04-yoyaku-note dd {
  font-size: 20px;
}

/* sec04-item */
.sec04-item {
  position: relative;
  width: 660px;
  margin: 70px auto 0;
}
.sec04-item::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/base/osaka/nihonshumatsuri/img/260805/sec04_item_bg.jpg) repeat-y right bottom;
}
.sec04-item-inner {
  position: relative;
  z-index: 2;
  width: 640px;
  padding: 25px 25px 50px;
  background-color: #fff;
}
.sec04-item .txt {
  padding: 20px 0 0;
  line-height: 1.4;
}
.sec04-item .txt .yoyaku {
  display: inline-block;
  padding: 5px 20px;
  background-color: #ffe33f;
  border: 1px solid #1a3167;
  color: #1a3167;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sec04-item .txt .ttl {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  color: #65604e;
}
.sec04-item .txt .ttl sup {
  position: relative;
  top: 10px;
  line-height: 0;
  font-weight: 400;
  font-size: 100%;
}
.sec04-item .txt .info {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 600;
  color: #1a3167;
}
.sec04-item .txt .copy {
  margin-top: 20px;
  color: #1a3167;
}
.sec04-item .btn {
  width: 510px;
  margin: 30px auto 0;
}
.sec04-item .btn a {
  display: block;
  padding: 20px 100px;
  border-radius: 100vh;
  background-color: #fff3c3;
  border: 3px solid #1a3167;
  text-align: center;
  font-size: 26px;
  color: #1a3167;
  background-image: url(/base/osaka/nihonshumatsuri/img/260805/arrow02.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
}

/* sec04-talk */
.sec04-talk h3 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #65604e;
  padding-bottom: 10px;
  padding-top: 10px;
  background: url(/base/osaka/nihonshumatsuri/img/260805/sec04_talk_ttl_bg.png) no-repeat bottom center;
  margin-bottom: 40px;
}

.sec04-talk-item + .sec04-talk-item {
  margin-top: 30px;
}
.sec04-talk-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sec04-talk-item .txt {
  flex: 1;
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  color: #1a3167;
}
.sec04-talk-item .txt .date {
  font-size: 34px;
  color: #65604e;
  line-height: 1;
  background-color: #fff3c3;
  margin-bottom: 10px;
}

/* sec04-notice */
.sec04-notice {
  width: 660px;
  margin: 70px auto 0;
  padding: 30px;
  background-color: #fff;
  color: #1a3167;
}
.sec04-notice h3 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}
.sec04-notice-content p {
  font-size: 20px;
}

/*-------------------------------------------------------------------------------------------------------------------------------
* section05
-------------------------------------------------------------------------------------------------------------------------------*/
.sec05-item + .sec05-item {
  margin-top: 30px;
}
.sec05-item {
  width: 100%;
  overflow: hidden;
}
.sec05-item-ttl {
  margin-left: -50px;
  width: 100%;
  background-color: #a4975b;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  padding: 10px 20px 10px 100px;
  border-radius: 100vh;
}
.sec05-item-content {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  padding: 30px 60px 30px 50px;
}
.sec05-item .txt .info {
  font-size: 26px;
  font-weight: 600;
}
.sec05-item .txt .copy {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 600;
}
.sec05-item .txt small {
  font-size: 80%;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* section06
-------------------------------------------------------------------------------------------------------------------------------*/
.section06 {
  background-color: #1a3167;
  background-image: url();
  padding-bottom: 150px;
}

.sec06-item {
  width: 656px;
  margin: 0 0 0 50px;
}
.sec06-item .image {
  margin-bottom: 30px;
}
.sec06-item .txt {
  line-height: 1.4;
  padding-left: 20px;
  border-left: 3px solid #fff;
  color: #fff;
}
.sec06-item .txt .ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.sec06-item .txt .info {
  margin-top: 20px;
}
.sec06-item .txt .info b {
  font-size: 110%;
  font-weight: 500;
}
.sec06-item .txt .copy {
  margin-top: 20px;
}
.sec06-item .txt .spec {
  margin-top: 20px;
}
.sec06-item .txt small {
  font-size: 80%;
}


/*-------------------------------------------------------------------------------------------------------------------------------
* under
-------------------------------------------------------------------------------------------------------------------------------*/
.page-top {
  width: 510px;
  margin: 130px auto 0;
}
.page-top a {
  display: block;
  padding: 20px;
  border-radius: 100vh;
  background-color: #fff;
  text-align: center;
  font-size: 26px;
  color: #1a3167;
  background-image: url(/base/osaka/nihonshumatsuri/img/260805/arrow03.png);
  background-repeat: no-repeat;
  background-position: right 40px center;
}

.cmn-note {
  background: url(/base/osaka/nihonshumatsuri/img/260805/cmn_note_bg_t.jpg) no-repeat top center;
  padding: 100px 50px 70px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #1a3167;
}
.cmn-note p {
  padding-left: 1em;
  text-indent: -1em;
}


/* share
=================================================================== */
#share {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;	
  width: 100%;
  max-width: 700px;
  margin: 50px auto 150px auto;
}
#share .shareWrapper .list {
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  margin: 4rem auto 0;
  padding: 0;
}
#share .shareWrapper .list ul {
  display: flex;
  gap: 28px;
}
#share .shareWrapper .sns {
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  margin: 1rem auto 0;
  padding: 0;
}
#share .shareWrapper .sns ul {
  display: flex;
  gap: 74px;
}

/* pagetop
=================================================================== */
#pagetop {
  display: none;
  position: fixed;
  z-index: 7000;
  right: 20px;
  bottom: 20px;
}

/*-------------------------------------------------------------------------------------------------------------------------------
* general.css
-------------------------------------------------------------------------------------------------------------------------------*/

/* inline block
====================================================================================== */
.dI {display:inline !important;}
.dB {display:block !important;}
.dN {display:none !important;}
.vN {visibility:hidden !important;}


/* float
====================================================================================== */
.fltR {float:right !important;}
.fltL {float:left !important;}
.clip {overflow:hidden !important;}
.clear {clear:both !important;}


/* text-align
====================================================================================== */
.taR{text-align:right !important;}
.taL{text-align:left !important;}
.taC{text-align:center !important;}


/* width
====================================================================================== */
.wA {width:auto !important;}
.w20 {width:20% !important;}
.w25 {width:25% !important;}
.w50 {width:50% !important;}
.w75 {width:75% !important;}
.w100 {width:100% !important;}


/* margin
====================================================================================== */
.m00 {margin: 0   !important;}
.m05 {margin: 5px !important;}
.m10 {margin:10px !important;}
.m12 {margin:12px !important;}
.m15 {margin:15px !important;}
.m20 {margin:20px !important;}
.m25 {margin:25px !important;}
.m30 {margin:30px !important;}
.m35 {margin:35px !important;}
.m40 {margin:40px !important;}
.m45 {margin:45px !important;}
.m50 {margin:50px !important;}
.mt00 {margin-top: 0   !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top:10px !important;}
.mt12 {margin-top:12px !important;}
.mt15 {margin-top:15px !important;}
.mt20 {margin-top:20px !important;}
.mt25 {margin-top:25px !important;}
.mt30 {margin-top:30px !important;}
.mt35 {margin-top:35px !important;}
.mt40 {margin-top:40px !important;}
.mt45 {margin-top:45px !important;}
.mt50 {margin-top:50px !important;}
.mr00 {margin-right: 0   !important;}
.mr05 {margin-right: 5px !important;}
.mr10 {margin-right:10px !important;}
.mr12 {margin-right:12px !important;}
.mr15 {margin-right:15px !important;}
.mr20 {margin-right:20px !important;}
.mr25 {margin-right:25px !important;}
.mr30 {margin-right:30px !important;}
.mr35 {margin-right:35px !important;}
.mr40 {margin-right:40px !important;}
.mr45 {margin-right:45px !important;}
.mr50 {margin-right:50px !important;}
.mb00 {margin-bottom: 0   !important;}
.mb03 {margin-bottom: 3px !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom:10px !important;}
.mb12 {margin-bottom:12px !important;}
.mb15 {margin-bottom:15px !important;}
.mb20 {margin-bottom:20px !important;}
.mb25 {margin-bottom:25px !important;}
.mb30 {margin-bottom:30px !important;}
.mb35 {margin-bottom:35px !important;}
.mb40 {margin-bottom:40px !important;}
.mb45 {margin-bottom:45px !important;}
.mb50 {margin-bottom:50px !important;}
.mb55 {margin-bottom:55px !important;}
.mb75 {margin-bottom:75px !important;}
.mb100 {margin-bottom:100px !important;}
.ml00 {margin-left: 0   !important;}
.ml05 {margin-left: 5px !important;}
.ml10 {margin-left:10px !important;}
.ml12 {margin-left:12px !important;}
.ml15 {margin-left:15px !important;}
.ml20 {margin-left:20px !important;}
.ml25 {margin-left:25px !important;}
.ml30 {margin-left:30px !important;}
.ml35 {margin-left:35px !important;}
.ml40 {margin-left:40px !important;}
.ml45 {margin-left:45px !important;}
.ml50 {margin-left:50px !important;}
.m0A {margin:0 auto !important;}


/* padding
====================================================================================== */
.p00 {padding: 0   !important;}
.p05 {padding: 5px !important;}
.p10 {padding:10px !important;}
.p12 {padding:12px !important;}
.p15 {padding:15px !important;}
.p20 {padding:20px !important;}
.p25 {padding:25px !important;}
.p30 {padding:30px !important;}
.p35 {padding:35px !important;}
.p40 {padding:40px !important;}
.p45 {padding:45px !important;}
.p50 {padding:50px !important;}
.pt00 {padding-top: 0   !important;}
.pt05 {padding-top: 5px !important;}
.pt10 {padding-top:10px !important;}
.pt12 {padding-top:12px !important;}
.pt15 {padding-top:15px !important;}
.pt20 {padding-top:20px !important;}
.pt25 {padding-top:25px !important;}
.pt30 {padding-top:30px !important;}
.pt35 {padding-top:35px !important;}
.pt40 {padding-top:40px !important;}
.pt45 {padding-top:45px !important;}
.pt50 {padding-top:50px !important;}
.pt60 {padding-top:60px !important;}
.pt70 {padding-top:70px !important;}
.pt80 {padding-top:80px !important;}
.pt90 {padding-top:90px !important;}
.pt100 {padding-top:100px !important;}
.pr00 {padding-right: 0   !important;}
.pr05 {padding-right: 5px !important;}
.pr10 {padding-right:10px !important;}
.pr12 {padding-right:12px !important;}
.pr15 {padding-right:15px !important;}
.pr20 {padding-right:20px !important;}
.pr25 {padding-right:25px !important;}
.pr30 {padding-right:30px !important;}
.pr35 {padding-right:35px !important;}
.pr40 {padding-right:40px !important;}
.pr45 {padding-right:45px !important;}
.pr50 {padding-right:50px !important;}
.pb00 {padding-bottom: 0   !important;}
.pb05 {padding-bottom: 5px !important;}
.pb10 {padding-bottom:10px !important;}
.pb12 {padding-bottom:12px !important;}
.pb15 {padding-bottom:15px !important;}
.pb20 {padding-bottom:20px !important;}
.pb25 {padding-bottom:25px !important;}
.pb30 {padding-bottom:30px !important;}
.pb35 {padding-bottom:35px !important;}
.pb40 {padding-bottom:40px !important;}
.pb45 {padding-bottom:45px !important;}
.pb50 {padding-bottom:50px !important;}
.pb55 {padding-bottom:55px !important;}
.pb60 {padding-bottom:60px !important;}
.pb90 {padding-bottom:90px !important;}
.pb100 {padding-bottom:100px !important;}
.pb110 {padding-bottom:110px !important;}
.pl00 {padding-left: 0   !important;}
.pl05 {padding-left: 5px !important;}
.pl10 {padding-left:10px !important;}
.pl12 {padding-left:12px !important;}
.pl15 {padding-left:15px !important;}
.pl20 {padding-left:20px !important;}
.pl25 {padding-left:25px !important;}
.pl30 {padding-left:30px !important;}
.pl35 {padding-left:35px !important;}
.pl40 {padding-left:40px !important;}
.pl45 {padding-left:45px !important;}
.pl50 {padding-left:50px !important;}


/* boder
====================================================================================== */
.bdN{border:none !important;}
.bdtN{border-top:none !important;}
.bdbN{border-bottom:none !important;}


/* background
====================================================================================== */
.bgcT{background-color:transparent !important;}


/* font
====================================================================================== */
.fwN{font-weight:normal !important;}
.fwB{font-weight:bold !important;}

/* FONTサイズ (%) */
.fz80 { font-size:80% !important; }
.fz85 { font-size:85% !important; }
.fz90 { font-size:90% !important; }
.fz100 { font-size:100% !important; }
.fz110 { font-size:110% !important; }
.fz120 { font-size:120% !important; }
.fz130 { font-size:130% !important; }
.fz140 { font-size:140% !important; }
.fz150 { font-size:150% !important; }

/* FONTサイズ (固定) */
.fz10 { font-size:10px !important; }
.fz11 { font-size:11px !important; }
.fz12 { font-size:12px !important; }
.fz13 { font-size:13px !important; }
.fz14 { font-size:14px !important; }
.fz15 { font-size:15px !important; }
.fz16 { font-size:16px !important; }
.fz17 { font-size:17px !important; }
.fz18 { font-size:18px !important; }
.fz19 { font-size:19px !important; }
.fz20 { font-size:20px !important; }
.fz21 { font-size:21px !important; }
.fz23 { font-size:23px !important; }
.fz29 { font-size:29px !important; }

/* line-height */
.lh11{ line-height:1.1 !important; }
.lh12{ line-height:1.2 !important; }
.lh13{ line-height:1.3 !important; }
.lh14{ line-height:1.4 !important; }
.lh15{ line-height:1.5 !important; }
.lh16{ line-height:1.6 !important; }
.lh17{ line-height:1.7 !important; }
.lh18{ line-height:1.8 !important; }
.lh19{ line-height:1.9 !important; }
.lh20{ line-height:2.0 !important; }
