@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%;
  scroll-behavior: smooth;
}

@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: rgb(40, 39, 39);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.88;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 1.79;
    height: 100dvh;
  }
}
body h2, body h3 {
  line-height: 1.68;
}

a {
  color: rgb(40, 39, 39);
  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
---------------------------------------------------------------------------------------*/
.fade_in {
  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;
}

/* _header
---------------------------------------------------------------------------------------*/
.header {
  position: absolute;
  top: 1.5%;
  left: 3%;
  z-index: 999;
  margin: auto;
}
.header .header_logo {
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: left;
}
.header .header_logo a {
  display: block;
  color: #FFFFFF;
}
.header .header_logo a:hover {
  opacity: 0.6;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  position: fixed;
  top: 50%;
  right: 1.75rem;
  width: 50px;
  height: 30%;
  margin-top: 0;
  z-index: 9999;
  border-radius: 50%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  transition-property: all;
  transition-duration: 0.5s;
  background: none;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
}

.hamburger span::before {
  top: -5px;
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 2px;
  margin: 0 0 0;
  background-color: #FFFFFF;
  transition: all 0.5s;
}

.hamburger span::after {
  bottom: -5px;
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 2px;
  margin: 0 0 0;
  background-color: #FFFFFF;
  transition: all 0.5s;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}

.hamburger.open span::after {
  bottom: -2px;
  transform: rotate(-45deg);
  background-color: #FFFFFF;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.gnav {
  position: fixed;
  width: 50%;
  min-width: 480px;
  height: 100vh;
  top: 0;
  right: -100%;
  background-color: #303030;
  transition: all 0.5s;
  z-index: 999;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .gnav {
    width: 100%;
    min-width: auto;
  }
}
.gnav .gnav_inr {
  padding: 50px;
  height: 100%;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .gnav .gnav_inr {
    padding: 5%;
  }
}
.gnav .gnav_inr a {
  color: #FFFFFF;
}
.gnav .gnav_inr a:hover {
  opacity: 0.6;
}
.gnav .gnav_inr .title {
  font-family: "Oswald", sans-serif;
  color: #999999;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  .gnav .gnav_inr .title {
    padding: 20px 5%;
  }
}
.gnav .gnav_inr .manu_block {
  border-top: 1px solid #A0A0A0;
  padding: 25px 50px;
}
@media screen and (max-width: 767px) {
  .gnav .gnav_inr .manu_block {
    padding: 20px 5%;
  }
}
.gnav .gnav_inr .nav li {
  margin: 0.6em 0;
}
.gnav .gnav_inr .nav li a {
  display: block;
  font-size: 95%;
}
.gnav .gnav_inr .nav li a:hover {
  opacity: 0.6;
}
.gnav .gnav_inr .contact_nav {
  display: flex;
  gap: 0 20px;
}
.gnav .gnav_inr .contact_nav li {
  font-size: 90%;
}
.gnav .gnav_inr .address {
  font-size: 90%;
}
.gnav .gnav_inr .address p {
  margin-bottom: 0.6em;
}
.gnav .gnav_inr .address a {
  text-decoration: underline;
}
.gnav .gnav_inr .sns_area {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-top: 30px;
}
.gnav .gnav_inr .sns_area li a {
  display: block;
  width: 25px;
}
.gnav .gnav_inr .sns_area li a:hover svg {
  opacity: 0.6;
}
.gnav .gnav_inr .sns_area li a img {
  vertical-align: middle;
}
.gnav .gnav_inr .sns_area li a svg {
  fill: rgb(40, 39, 39);
}

.gnav.open {
  right: 0;
}

.btn_top {
  position: fixed;
  margin-top: 0;
  z-index: 9999;
  border-radius: 50%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  cursor: pointer;
  background: none;
  transition-property: all;
  transition-duration: 0.5s;
}
@media screen and (min-width: 768px) {
  .btn_top {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 1.75rem;
    width: 50px;
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .btn_top {
    top: 5%;
    left: 1.75rem;
    width: 30px;
    height: 20px;
  }
}

.btn_top span,
.btn_top span::after,
.btn_top span::before {
  position: absolute;
  display: block;
  content: "";
}

.btn_top span::before {
  top: -5px;
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 2px;
  margin: 0 0 0;
  background-color: #FFFFFF;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_top span::before {
    width: 30px;
  }
}

.btn_top span::after {
  bottom: -5px;
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 2px;
  margin: 0 0 0;
  background-color: #FFFFFF;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_top span::after {
    width: 30px;
  }
}

.btn_top.open span::before {
  top: 0;
  transform: rotate(30deg);
  background-color: #FFFFFF;
}

.btn_top.open span::after {
  bottom: -2px;
  transform: rotate(-30deg);
  background-color: #FFFFFF;
}

/* _page
---------------------------------------------------------------------------------------*/
/*---base------------------------------------------------------------------*/
.container {
  max-width: 1680px;
  margin: auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 6%;
  }
}

.container_md {
  max-width: 1280px;
  margin: auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .container_md {
    padding: 0 6%;
  }
}

.container_sm {
  max-width: 860px;
  margin: auto;
}
.page_wrapper {
  max-width: 1280px;
  width: 90%;
  padding: 0 5% 0;
  margin: 320px auto 14.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page_wrapper {
    margin: 160px auto 60px;
    padding: 0 5%;
    width: 100%;
  }
}
.page_wrapper .page_title {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title {
    margin-top: 45px;
    margin-bottom: 90px;
  }
}
.page_wrapper .page_title .en {
  font-size: 6rem;
  position: relative;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title .en {
    font-size: 3.2rem;
  }
}
.page_wrapper .page_title .jp {
  font-size: 1.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title .jp {
    font-size: 1.4rem;
  }
}
.page_wrapper .page_section {
  margin-bottom: 18.25rem;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_section {
    margin-bottom: 18.25rem;
  }
}
.page_wrapper .page_section .page_section_title {
  margin-bottom: 2.5rem;
  text-align: center;
}
.page_wrapper .page_section .page_section_title h2 {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_section .page_section_title h2 {
    font-size: 2rem;
  }
}
.page_wrapper .page_section .page_section_title .txt {
  margin-top: 2em;
  font-size: 90%;
}
.page_wrapper .page_section .page_section_inr {
  margin-bottom: 90px;
}
.page_wrapper .page_section .page_section_inr:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .page_wrapper .page_section .page_section_inr {
    width: 100%;
  }
}

.about .concept_section p {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .about .concept_section p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
  }
}
.about dl .block {
  margin-bottom: 3em;
}
.about dl .block:after {
  margin-bottom: 0;
}
.about dl .block dt {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .about dl .block dt {
    font-size: 2.5rem;
  }
}
.about dl .block dt strong {
  font-size: 130%;
}
.about .outline_section {
  max-width: 780px;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .about .outline_section {
    margin: 60px auto;
  }
}
.about .outline_section table {
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .about .outline_section table {
    font-size: 1.4rem;
  }
}
.about .outline_section table tr:first-child th {
  border-top: 1px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  .about .outline_section table tr:first-child th {
    border: none;
  }
}
.about .outline_section table tr:first-child td {
  border-top: 1px solid #363636;
}
@media screen and (max-width: 767px) {
  .about .outline_section table tr:first-child td {
    border-top: none;
    border-bottom: 1px solid #FFFFFF;
  }
}
.about .outline_section table th {
  border-bottom: 1px solid #FFFFFF;
  padding: 20px 10px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about .outline_section table th {
    display: block;
    width: 100%;
    padding: 12px 0 0;
    border-bottom: none;
  }
}
.about .outline_section table td {
  border-bottom: 1px solid #363636;
  padding: 20px 10px;
}
@media screen and (max-width: 767px) {
  .about .outline_section table td {
    border-bottom: 1px solid #FFFFFF;
    display: block;
    width: 100%;
    padding: 0 0 12px;
    font-size: 1.8rem;
  }
}
.about .outline_section table td ul {
  margin-left: 2em;
}
.about .outline_section table td ul li {
  list-style: disc;
}
.about .outline_section table td span {
  display: block;
  font-size: 1.2rem;
}

.btn_more {
  margin: 2rem 0;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .btn_more {
    margin: 3rem 0 0;
  }
}
.btn_more a {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 20px 40px 20px 65px;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-size: 110%;
}
.btn_more a::before, .btn_more a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.btn_more a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.75rem;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.btn_more a:after {
  left: 0;
  background: #FFFFFF;
  z-index: 1;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.btn_more a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}
.btn_more a:hover {
  color: #FFFFFF;
}
.btn_more a:hover:before {
  left: 2.5rem;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
}
.btn_more a:hover:after {
  right: 0;
  width: 100%;
  background: #d75b11;
}

.btn_more_back {
  margin: 60px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn_more_back {
    margin: 45px auto 0;
  }
}
.btn_more_back.btn_center a {
  margin: auto;
}
.btn_more_back a {
  display: inline-block;
  color: #FFFFFF;
  background: #999999;
  padding: 16px 65px;
  position: relative;
  border-radius: 50px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .btn_more_back a {
    width: 90%;
    margin: auto;
  }
}
.btn_more_back a:hover:after {
  left: 25px;
}
.btn_more_back a:after {
  transition-property: all;
  transition-duration: 0.5s;
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -5px;
  display: inline-block;
  vertical-align: middle;
  color: #FFFFFF;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid #FFFFFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(225deg);
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 45px 5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .row {
    gap: 35px 0;
  }
}
.row .col_3 {
  width: 30%;
}
@media screen and (max-width: 1023px) {
  .row .col_3 {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .row .col_3 {
    width: 100%;
  }
}
.row .col_2 {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .row .col_2 {
    width: 100%;
  }
}
.row a {
  display: block;
}
.row a .thum {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .row a .thum {
    margin: auto;
  }
}
.row a .thum img {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  width: 100%;
}
.row a:hover .thum img {
  transform: scale(1.05);
}

.cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .cat_list {
    width: 100%;
    gap: 5px;
    margin: 30px 0 60px;
  }
}
.cat_list li:last-child a:after {
  display: none;
}
.cat_list li.current a {
  background: #d75b11;
  color: #FFFFFF;
}
.cat_list li a {
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 1.2rem;
  display: block;
  border: 1px solid #FFFFFF;
  display: inline-block;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .cat_list li a {
    padding: 6px 25px;
    font-size: 1rem;
  }
}
.cat_list li a:hover {
  color: #d75b11;
}

.artistt_section .andmore {
  margin-top: 50px;
  text-align: center;
}

.artist_list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 45px 3.5%;
  width: 100%;
}
.artist_list .artist_card {
  width: 31%;
}
@media screen and (max-width: 1023px) {
  .artist_list .artist_card {
    width: 48.25%;
  }
}
@media screen and (max-width: 767px) {
  .artist_list .artist_card {
    width: 48.25%;
  }
}
.artist_list .artist_card a {
  display: block;
}
.artist_list .artist_card a .thum {
  position: relative;
  overflow: hidden;
}
.artist_list .artist_card a .thum img {
  overflow: hidden;
}
.artist_list .artist_card a .inr {
  transition-property: all;
  transition-duration: 0.5s;
  margin-top: 1em;
  text-align: center;
}
.artist_list .artist_card a .inr .title {
  font-size: 110%;
}
.artist_list .artist_card a:hover .thum img {
  transform: scale(1.05);
  overflow: hidden;
}
.artist_list .artist_card a:hover .inr {
  opacity: 0.7;
}

.topics_list li {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px dotted #363636;
}
@media screen and (max-width: 767px) {
  .topics_list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.topics_list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .topics_list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.topics_list li a {
  position: relative;
  width: 100%;
  display: block;
}
.topics_list li a:hover {
  opacity: 0.6;
}
.topics_list li a:hover:after {
  right: 0;
}
.topics_list li a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid rgb(40, 39, 39);
  border-right: 1px solid rgb(40, 39, 39);
  transform: rotate(45deg);
  position: absolute;
  top: 11px;
  right: 5px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition-property: all;
  transition-duration: 0.5s;
}
@media screen and (max-width: 767px) {
  .topics_list li a:after {
    top: 35px;
  }
}
@media screen and (min-width: 768px) {
  .topics_list li .inr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.topics_list li .inr .date {
  font-size: 90%;
}
@media screen and (max-width: 767px) {
  .topics_list li .inr .date {
    width: 55px;
    font-size: 1rem;
  }
}
.topics_list li .inr .cat {
  border: 1px solid #FFFFFF;
  display: inline-block;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 90%;
  margin: 0 20px;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .topics_list li .inr .cat {
    font-size: 1rem;
  }
}
.topics_list li h3 {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .topics_list li h3 {
    margin-left: 0;
    margin-top: 5px;
  }
}

.archive_list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 45px 5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .archive_list {
    gap: 35px 0;
  }
}
.archive_list .archive_card {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .archive_list .archive_card {
    width: 100%;
  }
}
.archive_list .archive_card a {
  display: block;
}
.archive_list .archive_card a .thum {
  position: relative;
  overflow: hidden;
}
.archive_list .archive_card a .inr {
  transition-property: all;
  transition-duration: 0.5s;
  position: relative;
  padding: 0.7em 0 0;
}
.archive_list .archive_card a .inr .date {
  font-size: 90%;
  color: #999999;
  margin-bottom: 0.4em;
}
.archive_list .archive_card a .inr .title {
  font-size: 110%;
  color: #d75b11;
  font-weight: bold;
}
.archive_list .archive_card a:hover .thum img {
  transform: scale(1.05);
}
.archive_list .archive_card a:hover .inr {
  opacity: 0.7;
}

.article_404 {
  margin: 120px auto;
  text-align: center;
}

/* swiper
---------------------------------------------------------------------------------------*/
.swiper-controller {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  z-index: 9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.swiper-controller .swiper-button-next,
.swiper-controller .swiper-rtl .swiper-button-prev {
  right: -20px !important;
}
.swiper-controller .swiper-button-prev,
.swiper-controller .swiper-rtl .swiper-button-next {
  left: -20px !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -20px !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -20px !important;
}

.swiper-pagination-bullet {
  height: 7px !important;
  width: 7px !important;
  background-color: #FFFFFF !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 5px !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 15px !important;
}

.swiper-button-prev,
.swiper-button-next {
  height: 40px !important;
  width: 40px !important;
  font-size: 0 !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 40px !important;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
  font-size: 0 !important;
}

.swiper-button-prev::after {
  background-image: url(images/ico_prev.png) !important;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(images/ico_next.png) !important;
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.project_list .project_card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 6em auto 6em;
}
@media screen and (max-width: 767px) {
  .project_list .project_card {
    margin: 2em auto 4em;
  }
}
.project_list .project_card:nth-child(even) {
  flex-direction: row-reverse;
}
.project_list .project_card .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .project_list .project_card .img {
    width: 100%;
  }
}
.project_list .project_card .img img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .project_list .project_card .img img {
    border-radius: 10px;
    margin-bottom: 1em;
  }
}
.project_list .project_card .inr {
  width: 50%;
  padding: 2.5% 5%;
}
@media screen and (max-width: 767px) {
  .project_list .project_card .inr {
    width: 100%;
  }
}
.project_list .project_card .inr .title {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1.2em;
  color: #d75b11;
}
.project_list .project_card .inr .title:after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #20c42f;
  border-radius: 5px;
  margin: 0.2em 0.1em;
}

.top_wrapper .sidebar-nav {
  position: fixed;
  top: 50%;
  left: 1.75rem;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .top_wrapper .sidebar-nav {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .top_wrapper .sidebar-nav {
    top: 1rem;
    left: 1rem;
  }
}
.top_wrapper .sidebar-nav .sidebar-nav-list {
  display: grid;
  grid-template-columns: 1fr;
}
.top_wrapper .sidebar-nav .sidebar-nav-list .sidebar-nav-item {
  display: block;
  padding: 0.3125rem 0;
  font-size: 1.2rem;
  position: relative;
  transition: 0.3s ease-in-out all;
  width: calc(100% + 0.5rem);
}
@media screen and (max-width: 767px) {
  .top_wrapper .sidebar-nav .sidebar-nav-list .sidebar-nav-item {
    font-size: 0.9rem;
    padding: 0.1125rem 0;
  }
}
.top_wrapper .sidebar-nav .sidebar-nav-list .sidebar-nav-item .is-active {
  color: #d75b11;
}
.top_wrapper .sidebar-nav .sidebar-nav-list .sidebar-nav-item a {
  text-transform: uppercase;
}
.top_wrapper .sidebar-nav .sidebar-nav-list .sidebar-nav-item a:hover {
  color: #d75b11;
}
.top_wrapper .main_area .top_page_section {
  max-width: 1280px;
  width: 90%;
  padding: 190px 5% 0;
  margin: -190px auto 18.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top_wrapper .main_area .top_page_section {
    padding: 120px 0 0;
    margin: -120px auto 10.25rem;
  }
}
.top_page_section .section_title {
  margin-bottom: 5.5rem;
}
.top_page_section .section_title p {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 0.2em;
  color: #d75b11;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top_page_section .section_title p {
    font-size: 3.4rem;
  }
}
.top_page_section .section_title h2 {
  font-weight: 600;
  font-size: 90%;
}
@media screen and (max-width: 767px) {
  .top_page_section .section_title h2 {
    font-size: 85%;
  }
}
.top_page_section .top_page_section_inr {
  width: 94%;
  margin: auto;
}

.meta_section .img_day {
  border-top: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  padding: 4em 0;
  margin: 0 auto 2em;
}
.meta_section .attention {
  font-size: 90%;
}

.about_section h3 {
  font-size: 6rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about_section h3 {
    font-size: 2.5rem;
    margin-bottom: 1em;
  }
}

.sponsor_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1280px;
  width: 90%;
  padding: 0 5% 0;
  margin: auto;
}
.sponsor_banner .sponsor_banner_block {
  max-width: 120px;
  height: auto;
  margin: 2%;
}
@media screen and (max-width: 767px) {
  .sponsor_banner .sponsor_banner_block {
    max-width: 60px;
    width: 100%;
  }
}
.sponsor_banner .sponsor_banner_block a {
  display: block;
  text-align: center;
}
.sponsor_banner .sponsor_banner_block a:hover {
  opacity: 0.6;
}
.sponsor_banner .sponsor_banner_block a p {
  padding: 1em 0;
}

.acccess_section .googlemap iframe {
  width: 100%;
  height: 680px;
}
@media screen and (max-width: 767px) {
  .acccess_section .googlemap iframe {
    height: 280px;
  }
}
.acccess_section .inner {
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .acccess_section .inner {
    margin-bottom: 2rem;
  }
}

/* _footer
---------------------------------------------------------------------------------------*/
.sns_nav {
  position: fixed;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .sns_nav {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .sns_nav {
    top: 2rem;
  }
}
.sns_nav a {
  display: block;
  width: 24px;
}
.sns_nav a svg {
  fill: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .sns_nav a svg {
    fill: #FFFFFF;
  }
}
.sns_nav a:hover {
  opacity: 0.6;
}

.footer {
  padding: 30px 5%;
  margin: 120px auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 5%;
  }
}
.footer .copyright {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    text-align: center;
  }
}