@charset "UTF-8";
/*
Theme Name : だらぼち音楽祭
Theme URI : https://darabochi.com
Author: SCARAMANGA INC.
Author URI: https://scaramanga.jp
Description:
Version: 1.0
*/
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: "";
}

a,
input {
  outline: none;
}

input,
textarea {
  border-radius: 0;
}

input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
body {
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  line-height: 2;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body:before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
}

a {
  color: #FFFFFF;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.5s;
}
a img {
  transition-property: all;
  transition-duration: 0.5s;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* animate
---------------------------------------------------------------------------------------*/
.bounce_in,
.fade_in,
.fade_in_up,
.fade_in_down,
.fade_in_left,
.fade_in_right {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated_bounce {
  -webkit-animation-duration: 0.95s;
  animation-duration: 0.95s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*!------------------------------------*
fadeIn
\*!------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*!------------------------------------*
fadeInUp
\*!------------------------------------*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*!------------------------------------*
fadeInDown
\*!------------------------------------*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*!------------------------------------*
fadeInLeft
\*!------------------------------------*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: adeInLeft;
  animation-name: fadeInLeft;
}

/*!------------------------------------*
fadeInRight
\*!------------------------------------*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  20%, 40%, 60%, 80%, from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

/* _header
---------------------------------------------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 997;
  width: 100%;
}
header .header_inr {
  display: flex;
  justify-content: space-between;
  padding: 35px 25px;
}
@media screen and (max-width: 767px) {
  header .header_inr {
    padding: 20px 10px;
  }
}
header .header_inr .header_logo {
  width: 50%;
}
@media screen and (max-width: 767px) {
  header .header_inr .header_logo {
    width: 90px;
  }
}
header .header_inr .sns_nav_inr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  header .header_inr .sns_nav_inr {
    margin-right: 0;
  }
}
header .header_inr .sns_nav_inr a {
  display: block;
  width: 24px;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  header .header_inr .sns_nav_inr a {
    margin: 0 0 0 20px;
  }
}
header .header_inr .sns_nav_inr a svg {
  fill: #121212;
}
@media screen and (max-width: 767px) {
  header .header_inr .sns_nav_inr a svg {
    fill: #121212;
  }
}
header .header_inr .sns_nav_inr a:hover {
  opacity: 0.6;
}

.sns_nav_inr {
  position: fixed;
  top: 35px;
  right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .sns_nav_inr {
    margin-right: 0;
  }
}
.sns_nav_inr a {
  display: block;
  width: 24px;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .sns_nav_inr a {
    margin: 0 0 0 20px;
  }
}
.sns_nav_inr a svg {
  fill: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .sns_nav_inr a svg {
    fill: #FFFFFF;
  }
}
.sns_nav_inr a:hover {
  opacity: 0.6;
}

/* _page
---------------------------------------------------------------------------------------*/
.container {
  max-width: 1380px;
  margin: auto;
  position: relative;
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 5.5%;
  }
}

.img_open {
  max-width: 380px;
  margin: 120px auto 120px;
}
@media screen and (max-width: 767px) {
  .img_open {
    width: 50%;
    margin: 120px auto 60px;
  }
}

.concept_section {
  max-width: 780px;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .concept_section {
    margin: 60px auto;
  }
}
.concept_section p {
  font-size: 3rem;
  font-weight: 500;
  line-height: 3;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .concept_section p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
  }
}

.outline_section {
  max-width: 780px;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .outline_section {
    margin: 60px auto;
  }
}
.outline_section table {
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .outline_section table {
    font-size: 1.4rem;
  }
}
.outline_section table tr:first-child th {
  border-top: 1px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  .outline_section table tr:first-child th {
    border: none;
  }
}
.outline_section table tr:first-child td {
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .outline_section table tr:first-child td {
    border-top: none;
    border-bottom: 1px solid #FFFFFF;
  }
}
.outline_section table th {
  border-bottom: 1px solid #FFFFFF;
  padding: 20px 10px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .outline_section table th {
    display: block;
    width: 100%;
    padding: 12px 0 0;
    border-bottom: none;
  }
}
.outline_section table td {
  border-bottom: 1px solid #707070;
  padding: 20px 10px;
}
@media screen and (max-width: 767px) {
  .outline_section table td {
    border-bottom: 1px solid #FFFFFF;
    display: block;
    width: 100%;
    padding: 0 0 12px;
    font-size: 1.8rem;
  }
}
.outline_section table td ul {
  margin-left: 2em;
}
.outline_section table td ul li {
  list-style: disc;
}
.outline_section table td span {
  display: block;
  font-size: 1.2rem;
}

.googlemap {
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .googlemap {
    margin: 30px auto;
  }
}
.googlemap iframe {
  width: 100%;
  height: 480px;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 767px) {
  .googlemap iframe {
    height: 280px;
  }
}

/* _footer
---------------------------------------------------------------------------------------*/
footer .footer_inr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  footer .footer_inr {
    display: block;
  }
}
footer .address .title {
  margin-bottom: 5px;
}
footer .address .title span {
  font-size: 1.2rem;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  footer .address .title span {
    font-size: 1rem;
  }
}
footer .address p {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  footer .address p {
    font-size: 1.2rem;
  }
}
footer .right_area {
  text-align: right;
}
@media screen and (max-width: 767px) {
  footer .right_area {
    margin-top: -30px;
  }
}
footer .ico_address a {
  display: block;
}
footer .ico_address a svg {
  width: 34px;
  fill: #FFFFFF;
}
footer .footer_copyright p {
  font-size: 1rem;
}