@charset "UTF-8";


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,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: center;
  background-repeat: repeat;
}

@media (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

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;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a:link,
a:visited {
  color: #000;
  text-decoration: underline;
}

/* a:hover,
a:active {
color: #fff;
} */

a img {
  transition: 1.0s;
}

a:hover img {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.b,
strong {
  font-weight: bold;
}

#top #header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  border: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  background: rgba(16, 21, 37, .6);
  z-index: 3;
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
  opacity: 0;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb50 {
  margin-bottom: 5rem;
}

.m_tb20 {
  margin: 2rem 0;
}

.m_tb30 {
  margin: 3rem 0;
}

.m_tb40 {
  margin: 4rem 0;
}

.m_tb50 {
  margin: 5rem 0;
}

@media (max-width: 768px) {
  .mb10 {
    margin-bottom: 0.75rem;
  }

  .mb20 {
    margin-bottom: 1.5rem;
  }

  .mb30 {
    margin-bottom: 2.2rem;
  }

  .mb40 {
    margin-bottom: 3rem;
  }

  .mb50 {
    margin-bottom: 3.75rem;
  }

  .m_tb20 {
    margin: 1.5rem 0;
  }

  .m_tb30 {
    margin: 2.2rem 0;
  }

  .m_tb40 {
    margin: 3rem 0;
  }

  .m_tb50 {
    margin: 3.75rem 0;
  }
}

@media (max-width: 480px) {
  .mb10 {
    margin-bottom: 0.5rem;
  }

  .mb20 {
    margin-bottom: 1rem;
  }

  .mb30 {
    margin-bottom: 1.5rem;
  }

  .mb40 {
    margin-bottom: 2rem;
  }

  .mb50 {
    margin-bottom: 2.5rem;
  }

  .m_tb20 {
    margin: 1rem 0;
  }

  .m_tb30 {
    margin: 1.5rem 0;
  }

  .m_tb40 {
    margin: 2rem 0;
  }

  .m_tb50 {
    margin: 2.5rem 0;
  }
}

h4 {
  font-weight: bold;
}



/* loading
========================================================================== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5000;
}

.loader {
  margin: -15px 0 0 -15px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 4px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.75s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

*[class^="fade"] {
  opacity: 0.01;
  transition: all 500ms;
}

.fade-up {
  /*下から上に*/
  transform: translate(0, 50px);
}

.fade-down {
  /*上から下に*/
  transform: translate(0, -50px);
}

.fade-left {
  /*右から左に*/
  transform: translate(50px, 0);
}

.fade-right {
  /*左から右に*/
  transform: translate(-50px, 0);
}

/* 画面内に入った状態 */
*[class^="fade"].fadein {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-box *[class^="fade"]:nth-of-type(1) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}

.fade-box *[class^="fade"]:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}

.fade-box *[class^="fade"]:nth-of-type(3) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.fade-box *[class^="fade"]:nth-of-type(4) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}

.fade-box *[class^="fade"]:nth-of-type(5) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}

.fade-box *[class^="fade"]:nth-of-type(6) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.fade-box *[class^="fade"]:nth-of-type(7) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}

.fade-box *[class^="fade"]:nth-of-type(8) {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}

.fade-box *[class^="fade"]:nth-of-type(9) {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.fade-box *[class^="fade"]:nth-of-type(10) {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}

.fade-box *[class^="fade"]:nth-of-type(11) {
  -moz-transition-delay: 1100ms;
  -webkit-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
}

.fade-box *[class^="fade"]:nth-of-type(12) {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.fade-box *[class^="fade"]:nth-of-type(13) {
  -moz-transition-delay: 1300ms;
  -webkit-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
}

.fade-box *[class^="fade"]:nth-of-type(14) {
  -moz-transition-delay: 1400ms;
  -webkit-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
}

.fade-box *[class^="fade"]:nth-of-type(15) {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.fade-box *[class^="fade"]:nth-of-type(16) {
  -moz-transition-delay: 1600ms;
  -webkit-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
}

.fade-box *[class^="fade"]:nth-of-type(17) {
  -moz-transition-delay: 1700ms;
  -webkit-transition-delay: 1700ms;
  -o-transition-delay: 1700ms;
  -ms-transition-delay: 1700ms;
}

.fade-box *[class^="fade"]:nth-of-type(18) {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.fade-box *[class^="fade"]:nth-of-type(19) {
  -moz-transition-delay: 1900ms;
  -webkit-transition-delay: 1900ms;
  -o-transition-delay: 1900ms;
  -ms-transition-delay: 1900ms;
}

.fade-box *[class^="fade"]:nth-of-type(20) {
  -moz-transition-delay: 2000ms;
  -webkit-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
}

.fade-box *[class^="fade"]:nth-of-type(21) {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

.fade-box *[class^="fade"]:nth-of-type(22) {
  -moz-transition-delay: 2200ms;
  -webkit-transition-delay: 2200ms;
  -o-transition-delay: 2200ms;
  -ms-transition-delay: 2200ms;
}

.fade-box *[class^="fade"]:nth-of-type(23) {
  -moz-transition-delay: 2300ms;
  -webkit-transition-delay: 2300ms;
  -o-transition-delay: 2300ms;
  -ms-transition-delay: 2300ms;
}

.fade-box *[class^="fade"]:nth-of-type(24) {
  -moz-transition-delay: 2400ms;
  -webkit-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
}

.fade-box *[class^="fade"]:nth-of-type(25) {
  -moz-transition-delay: 2500ms;
  -webkit-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
}

.fade-box *[class^="fade"]:nth-of-type(26) {
  -moz-transition-delay: 2600ms;
  -webkit-transition-delay: 2600ms;
  -o-transition-delay: 2600ms;
  -ms-transition-delay: 2600ms;
}

.fade-box *[class^="fade"]:nth-of-type(27) {
  -moz-transition-delay: 2700ms;
  -webkit-transition-delay: 2700ms;
  -o-transition-delay: 2700ms;
  -ms-transition-delay: 2700ms;
}

.fade-box *[class^="fade"]:nth-of-type(28) {
  -moz-transition-delay: 2800ms;
  -webkit-transition-delay: 2800ms;
  -o-transition-delay: 2800ms;
  -ms-transition-delay: 2800ms;
}

.fade-box *[class^="fade"]:nth-of-type(29) {
  -moz-transition-delay: 2900ms;
  -webkit-transition-delay: 2900ms;
  -o-transition-delay: 2900ms;
  -ms-transition-delay: 2900ms;
}

.fade-box *[class^="fade"]:nth-of-type(30) {
  -moz-transition-delay: 3000ms;
  -webkit-transition-delay: 3000ms;
  -o-transition-delay: 3000ms;
  -ms-transition-delay: 3000ms;
}

/* #wrapper,#contents
========================================================================== */
#wrapper {
  text-align: left;
}

#contents {
  overflow: hidden;
}


/* header
============================================= */
/* // fixed  スクロールするとメニューが固定 */
.fixed {
  position: fixed !important;
}

#header {
  padding: 20px 30px;
  display: flex;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  z-index: 1000;
}


#header.fixed {
  border-bottom: 1px solid #ccc;
}

#top #header.fixed {
  border-bottom: none;
}

.logo {
  width: 105px;
  height: 105px;
  margin-right: 50px;
}

/* グローバルナビ
============================================= */
.globalnav {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.globalnav .global_menu {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-content: center;
}

.global_menu li a {
  padding: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
}

.global_menu li:last-child a {
  padding: 0 25px 0 15px;
}

.global_menu li:link,
.global_menu li:visited {
  color: #38cce6;
  ;
  font-weight: bold;
}

.global_menu li a:hover,
.global_menu li a:active,
.global_menu li.active a {
  color: #38cce6;
  ;
  font-weight: bold;
}


/* ハンバーガーメニュー（×マーク）
==================================================================== */
.nav_btn {
  position: fixed;
  display: none;
  background: #12B9FF;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  top: 14px;
  right: 14px;
  z-index: 5;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border: solid 1px #fff;
}

#top .nav_btn {
  display: flex;
}

.nav_btn p {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.menu_box {
  width: 45px;
  height: 30px;
  position: relative;
}

.menu_box span {
  background: #fff;
  display: block;
  width: 100%;
  height: 2px;
  text-align: center;
  position: absolute;
  z-index: 1000;
}

.menu_box span:nth-child(1) {
  top: 0;
}

.menu_box span:nth-child(2) {
  top: 48%;
}

.menu_box span:nth-child(3) {
  bottom: 0;
}

/* ナビ開いてる時のボタン */
.menu_box.active span:nth-child(1) {
  background: #12B9FF;
  top: 16px;
  right: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu_box.active span:nth-child(2),
.menu_box.active span:nth-child(3) {
  background: #12B9FF;
  top: 16px;
  right: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ＋ナビ開いてからの画面 */
nav.globalMenuSp {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  text-align: center;
  transform: translateX(200%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp .sp_menu {
  /*margin: 0 auto;*/
  position: fixed;
  top: 0;
  right: 0;
  padding: 80px 0 0;
  width: 70%;
  background-color: #fff;
  height: 100vh;
}

nav.globalMenuSp .sp_menu li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #12B9FF;
  font-size: 1.8rem;
}

nav.globalMenuSp .sp_menu li a:hover,
nav.globalMenuSp .sp_menu li a:active {
  color: #fff;
  background-color: #12B9FF;
}

nav.globalMenuSp .sp_menu ul {
  padding: 0 0 0;
}

nav.globalMenuSp .sp_menu li a {
  color: #000;
  text-decoration: none;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

nav.globalMenuSp .sp_menu li a:hover {
  color: #fff;
}

.sp_menu li:hover>ul {
  display: block;
}

/* このクラスを、jQueryで付与・削除する */
.globalMenuSp.active {
  transform: translateX(0%);
}

/* spドロップダウンメニュー ====================================================== */
ul.sp_menu li {
  width: 100%;
  display: block;
  list-style-type: none;
  position: relative;
}

ul.sp_menu li a {
  text-align: center;
  text-decoration: none;
  display: block;
}

/* このクラスを、jQueryで付与・削除する */
ul.sp_menu.active {
  transform: translateX(0%);
}


.active {
  color: #38cce6;
}

/* パンくずリスト　.breadcrumbs
================================================== */
.breadcrumbs {
  margin-bottom: 80px;
}

.breadcrumbs ol {
  display: flex;
  padding-left: 0;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 0;
}

.breadcrumbs li {
  display: inline;
  list-style: none;
  color: #000;
  padding: 0 5px 0 0;
}

.breadcrumbs li:last-child a {
  text-decoration: none;
}

.breadcrumbs li:after {
  content: '>';
  padding: 0 3px;
  color: #000;
}

.breadcrumbs li:last-child:after {
  content: '';
}

.breadcrumbs li a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: #000;
  padding: 0 5px 0 0;
}

.breadcrumbs li a:hover {
  color: #0474a8;
}


/* container
========================================================================== */

.modal {
  padding: 30px;
  background: #fff;
  position: absolute;
  top: 0;
  height: 100%;
  overflow: auto;
}


.shop {
  display: block;
}

.modal_title {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.modal_title h3 {
  text-align: left;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.modal_body_txt {
  text-align: left;
  margin-bottom: 30px;
}

#cboxClose {
  right: -50px;
  top: 0;
}

.link a {
  font-size: 1.6rem;
  text-decoration: none;
  margin: 0 auto;
  border-radius: 5px;
  padding: 5px 20px;
  background: #8425ff;
  color: #fff;
}

.link a:hover,
modal_body_txt a:link {
  background: #d9bcff;
}

.modal_title img {
  width: 100%;
}

.modal_body {
  text-align: left;
}

.modal_body_txt span {
  display: block;
  margin-bottom: 20px;
}

.modal_body_txt a {
  text-decoration: underline;
}

.cboxLoadedContent {
  height: none;
}

.modal_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.link {
  margin-right: 30px;
}

.sns_btn img {
  width: 40px;
  height: 40px;
}

.sns_btn img:hover {
  transform: scale(0.9);
}

#cboxLoadedContent {
  height: 810px;
}


/* contents
========================================================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}


.content_title {
  padding: 40px 0;
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #00307C;
  margin-bottom: 20px;
}

.contents_txt {
  margin: 0 0 50px;
}

#contents .slider {
  margin: 0 auto 50px;
}

.contents_title_box {
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}

.contents_title_box a {
  text-decoration: none;
}

.contents_box dl {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.contents_box dl dt {
  width: 180px;
  padding: 20px 10px;
  font-weight: bold;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  display: inline-block;
}

.contents_box dl dd {
  width: calc(100% - 180px);
  padding: 20px 10px;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  display: inline-block;
}

.contents_box dl dd .google {
  background: #00307C;
  color: #fff;
  padding: 3px 15px;
  margin-left: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 50px;
}

.contents_box dl dd .google:hover {
  background: #ccc;
}

.contents_box dl dd a {
  cursor: pointer;
  text-decoration: none;
}

/* marche
=============================================== */
#marche {
  padding: 0;
  background: #fff;
}

.place {
  margin-bottom: 100px;
}

.place_ttl {
  padding: 10px 0;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  border-radius: 50px;
}

.shop_list_item {
  text-align: center;
}

.shop_list_item a {
  text-decoration: none;
}

.shop_list_item a:hover {
  text-decoration-color: #54bdf0;
}

.shop_list_item p:hover,
.shop_list_item p:link {
  color: #54bdf0;
}

.modal_container {
  display: block;
}

.modal_title {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.modal_title h3 {
  text-align: left;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.modal_body_txt {
  text-align: left;
  margin-bottom: 30px;
}

.link a {
  font-size: 1.6rem;
  text-decoration: none;
  margin: 0 auto;
  border-radius: 5px;
  padding: 5px 20px;
  background: #8425ff;
  color: #fff;
}

.link a:hover,
modal_body_txt a:link {
  background: #d9bcff;
}

.modal_title img {
  width: 100%;
}

.modal_body {
  text-align: left;
}

.modal_body_txt span {
  display: block;
  margin-bottom: 20px;
}

.modal_body_txt a {
  text-decoration: underline;
}

.cboxLoadedContent {
  height: none;
}

.modal_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.link {
  margin-right: 30px;
}

.sns_btn img {
  width: 40px;
  height: 40px;
}

.sns_btn img:hover {
  transform: scale(0.9);
}

#cboxLoadedContent {
  height: 810px;
}


/* sponsor
========================================================================== */
#sponsor {
  padding: 100px 0;
  margin: 0 auto;
  background: #12B9FF;
  color: #fff;
}

.sponsor_box {
  margin-bottom: 30px;
  border: 3px solid #fff;
  padding: 20px;
  color: #fff;
}

.sponsor_ttl {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.sponsor_txt {
  font-weight: bold;
  text-align: center;
}

.sponsor {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.sponsor01 li {
  width: 33.33%;
  padding: 0 10px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
}

.sponsor02 li,
.sponsor03 li {
  width: 33.33%;
  padding: 0 10px;
  text-align: center;
  box-sizing: border-box;
}

.sponsor02 li {
  font-size: 2.2rem;
}

.sponsor03 li {
  font-size: 2rem;
}

.sponsor04 {
  justify-content: center;
  margin-bottom: 20px;
}

.sponsor04 li {
  padding: 0 10px;
  font-size: 1.8rem;
  text-align: center;
}

.sponsor_ttl {
  font-size: 2.3rem;
}

.sponsor_txt {
  text-align: center;
}


#festa ul li p a span {
  background: #00307C;
  color: #fff;
  padding: 5px 20px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 50px;
}


/* footer
========================================================================== */
#footer {
  text-align: center;
  margin: 0 auto;
  color: #fff;
  padding: 100px 0;
  background: #12B9FF;
}


.footer_box {
  margin-bottom: 50px;
}

#footer a:link,
#footer a:visited {
  color: #fff;
}

.footer_logo {
  width: 120px;
  margin: 0 auto;
}

.footer_archive {
  margin-bottom: 30px;
}

.footer_archive h2 {
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
}

.archive_list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive_list li {
  margin: 0 10px;
}

.sns {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.sns li {
  margin: 0 20px;
}

.sns img {
  height: 30px;
}


.footer_tel {
  pointer-events: none;
  cursor: pointer;
}

.footer_tel:link,
.footer_tel:visited {
  text-decoration: none;
}

#footer ul li br {
  display: none;
}

.supporter {
  font-size: 1.4rem;
}

.supporter li:not(:last-child) {
  margin-bottom: 10px;
}


/* ---------------------------------------------------------
@media (max-width: 1440px)
----------------------------------------------------------- */
@media (max-width: 1440px) {
  .modal {
    padding: 25px;
    top: 40px;
  }

  .modal_title h3 {
    font-size: 2.3rem;
  }
}


/* ---------------------------------------------------------
@media (max-width: 1024px)
----------------------------------------------------------- */
@media (max-width: 1024px) {
  #header {
    padding: 12px;
    background: none;
  }

  #header.fixed {
    border-bottom: none;
  }

  .logo {
    width: 80px;
    height: 88px;
  }

  .logo a img {
    width: 100%;
    margin-left: 10px;
  }

  .globalnav {
    display: none;
  }

  .nav_btn {
    display: flex;
  }

  .globalMenuSp {
    display: block;
  }

  .place_ttl {
    font-size: 2.5rem;
    padding: 5px;
  }

  .shop_list_item a {
    font-size: 1.4rem;
  }

  #footer {
    padding: 40px 0;
  }

  .sponsor01 li {
    font-size: 2.4rem;
  }

  .sponsor02 li {
    font-size: 2rem;
  }

  .sponsor03 li {
    font-size: 1.8rem;
  }

  .sponsor04 li {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------
@media (max-width: 768px)
----------------------------------------------------------- */
@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 50px;
  }

  .content_title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
  }

  .contents_box dl dt {
    width: 100%;
    margin-bottom: 0;
    padding: 20px 10px 0px;
    box-sizing: border-box;
  }

  .contents_box dl dd {
    width: 100%;
    border: none;
    padding: ;
    margin-bottom: 10px;
  }

  .contents_box dl dd span {
    display: inline-block;
  }

  .place_ttl {
    font-size: 2.2rem;
  }

  .shop_list_item img {
    width: 96%;
  }

  .footer_box {
    margin-bottom: 35px;
  }

  .sponsor01 li {
    width: 50%;
    padding: 0 5px;
    font-size: 2rem;
  }

  .sponsor02 li,
  .sponser03 li {
    width: 50%;
    padding: 0 5px;
  }

  .sponsor02 li {
    font-size: 1.8rem;
  }

  .sponsor03 li {
    font-size: 1.6rem;
  }

  .sponsor04 li {
    padding: 0 5px;
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------
@media (max-width: 600px)
----------------------------------------------------------- */
@media (max-width: 600px) {
  #header {
    height: 96px;
  }

  .nav_btn {
    width: 70px;
    height: 70px;
    right: 12px;
  }

  .logo {
    width: 70px;
    height: 78px;
  }

  .logo img {
    width: 70px;
  }

  .menu_box {
    width: 40px;
    height: 27px;
  }

  #footer ul li br {
    display: block;
  }

  .content_title {
    font-size: 1.8rem;
    padding: 20px 0;
  }

  .contents_title_box {
    margin-bottom: 30px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 428px)
----------------------------------------------------------- */
@media (max-width: 428px) {
  #header {
    height: 80px;
  }

  #header {
    padding: 8px;
  }

  .logo {
    width: 65px;
    height: 65px;
  }

  .logo a img {
    width: 100%;
    margin-left: 5px;
  }

  .nav_btn {
    width: 55px;
    height: 55px;
    top: 14px;
    right: 9px;
  }

  .menu_box {
    width: 33px;
    height: 22px;
  }

  .menu_box.active span:nth-child(1) {
    top: 11px;
  }

  .menu_box.active span:nth-child(2),
  .menu_box.active span:nth-child(3) {
    top: 11px;
  }

  nav.globalMenuSp .sp_menu {
    padding: 65px 0 0;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .breadcrumbs_box {
    margin-bottom: 50px;
  }

  .title {
    font-size: 2rem;
    padding: 20px 0;
  }

  .contents_box dl {
    margin-bottom: 20px;
  }

  .contents_box dl dt {
    font-size: 1.6rem;
  }

  .contents_box dl dd span {
    width: 80px;
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 5px;
  }

  .place_ttl {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .modal_title h3 {
    font-size: 2rem;
  }

  #cboxClose:before,
  #cboxClose:after {
    top: -60%;
  }

  .footer_logo {
    width: 100px;
  }

  .footer_tel {
    pointer-events: auto;
    cursor: pointer;
  }

  .footer_tel:link,
  .footer_tel:visited {
    text-decoration: underline;
  }

  #festa ul li p a span {
    display: block;
    width: 80px;
    margin: 10px auto 0;
  }

  .sponsor_box {
    padding: 10px 3px;
  }

  .sponsor_ttl {
    font-size: 1.6rem;
  }

  .sponsor_txt {
    font-size: 1.2rem;
  }

  .sponsor01 {
    display: block;
  }

  .sponsor01 li {
    width: auto;
    padding: 0 5px;
    font-size: 1.6rem;
  }

  .sponsor02 {
    justify-content: center;
  }

  .sponsor02 li {
    width: auto;
    padding: 0 5px;
    font-size: 1.4rem;
  }

  .sponsor03 li {
    padding: 0 5px;
    font-size: 1.2rem;
  }

  .sns img {
    height: 20px;
  }

  .modal {
    top: 50px;
  }
}

/* ---------------------------------------------------------
@media (max-width: 375px)
----------------------------------------------------------- */
@media (max-width: 375px) {
  .place_ttl {
    font-size: 1.5rem;
  }
}