*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  border: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, picture, section { display: block; }
ul { list-style: none; }
ol {
  list-style: decimal;
  list-style-position: outside;
}
li > ul, li > ol {
  margin-left: 1.5em;
  margin-bottom: 0;
}
del { text-decoration: line-through; }
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
table td, table th { word-wrap: break-word; }
input, select { vertical-align: middle; }
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
iframe { vertical-align: bottom; }
svg { max-width: 100%; }

[role=button], a, area, button, input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
hr {
  height: 1px;
  background-color: #ccc;
  border: 0;
  margin-bottom: 25px;
  box-sizing: content-box;
  overflow: visible;
}

a {
  background-color: transparent;
  text-decoration: none;
}
a {
  color: #6a3906;
  transition: 0.3s ease;
}
a:hover { opacity: 0.6; }

small { font-size: 80%; }
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub { bottom: -0.25em; }
sup { top: -0.5em; }
embed, iframe, object { max-width: 100%; }

/* Clearings */
.clear:before, .clear:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after, .site-header:after, .site-content:after { clear: both; }


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
body {
  position: relative;
  color: #000;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  line-height: 1.4;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
}
.content_inner {
  width: 80%;
  max-width: 966px;
  margin: 0 auto;
}
p { margin-bottom: 25px; }
@media only screen and (min-width: 1300px) {
}
@media only screen and (min-width: 768px) {
}
@media only screen and (max-width: 768px) {
  body { font-size: 3.2vw; }
  .content_inner { width: 86.6666vw; }
  p { margin-bottom: 5%; }
}


/*--------------------------------------------------------------
Common
--------------------------------------------------------------*/
.is-hidden {
  font-size: 0;
  visibility: hidden;
}
.center { text-align: center; }
.fw-b { font-weight: 600; }
.small { font-size: 80%; }
.mb0 { margin-bottom: 0 !important; }

/* タイトル */
h2 {
  width: 90%;
  max-width: 1086px;
  margin: 0 auto 65px;
}
@media only screen and (max-width: 768px) {
  h2 {
    width: 78.6666%;
    margin-bottom: 8.5333vw;
  }
}

/* ボタン */
.p-top-btn {
  width: 458px;
  margin: 0 auto 70px;
}
.c-btn {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  background-color: #6a3906;
  border-radius: 50px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.c-btn::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/ico_btn_default.png) left top no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-top-btn {
    width: 70.6666vw;
    margin-bottom: 6.6667vw;
  }
  .c-btn {
    font-size: 3.75vw;
    padding: 2.6666vw 0;
  }
  .c-btn::after {
    width: 4vw;
    height: 4vw;
    right: 2.6666vw;
  }
}

/* アイコン */
.icon {
  color: #fff;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #e9546b;
  border-radius: 50px;
  margin-right: 10px;
  padding: 3px 0.7em;
}
@media only screen and (max-width: 768px) {
}

/* 画像マウスオーバー */
a img.hover { transition: 0.3s; }
a img.hover:hover { opacity: 0.7; }

/* Alignments */
.alignleft {
  float: left;
  margin-right: 1.5em;
}
.alignleft:after { clear: both; }
.alignright {
  float: right;
  margin-left: 1.5em;
}
.alignright:after { clear: both; }
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.underline { text-decoration: underline; }

span.br { display: block; }
span.pc-br { display: inline; }
@media only screen and (min-width: 896px) {
  span.pc-br { display: block; }
}

.pc-content { display: none !important; }
.sp-content { display: block !important; }
@media only screen and (min-width: 769px) {
  .pc-content { display: block !important; }
  .sp-content { display: none !important; }
}


/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
header.scrolled { box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .1); }
.container-header {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}
header .logo {
  position: relative;
  z-index: 997;
}

/* 共通ナビ */
.global-nav {
  position: fixed;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .1);
  padding: 35px 0 50px;
  top: 80px;
  right: 0;
  transition: all 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}
.menu-is-open .global-nav {
  opacity: 1;
  visibility: visible;
}
.global-nav ul li {
  font-weight: 600;
  line-height: 1;
}
.global-nav ul li a.active { text-decoration: underline; }

/* ハンバーガーメニュー */
.header_trigger {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  top: 5px;
  right: 0;
  cursor: pointer;
  z-index: 999;
}
.header_trigger span {
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background-color: #6a3906;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  will-change: opacity;
}
.menu-is-open .header_trigger span { background-color: transparent; }
.header_trigger span::after,
.header_trigger span::before {
  position: absolute;
  display: block;
  content: " ";
  width: 40px;
  height: 2px;
  background-color: #6a3906;
  top: 50%;
  left: 0;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  will-change: transform;
}
.menu-is-open .header_trigger span::after,
.menu-is-open .header_trigger span::before {
  margin-top: 0;
}
.header_trigger span::before { margin-top: -11px; }
.menu-is-open .header_trigger span::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header_trigger span::after { margin-top: 9px; }
.menu-is-open .header_trigger span::after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media only screen and (min-width: 769px) {
  header {
      height: 80px;
      padding-top: 12px;
  }
  header .logo { width: 191px; }
  .global-nav ul {
      width: 100%;
      max-width: 1086px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px 0;
      margin: 0 auto;
  }
  .global-nav ul li {
      position: relative;
      width: 25%;
      font-size: 18px;
      border-right: 1px solid #6a3906;
      text-align: center;
  }
  .global-nav ul li:nth-child(4n) { border-right: none; }
  .global-nav ul li a {display: block; }
}
@media only screen and (max-width: 768px) {
  header {
      height: 60px;
      padding: 8px 4% 0 4%;
  }
  header .logo { width: 45%; }
  .global-nav {
      padding: 60px 9.6666vw 20px;
      top: 0;
      right: 0;
  }
  .global-nav ul {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      gap: 5.6666vw 0;
  }
  .global-nav ul li {
      width: 50%;
      font-size: 3.4666vw;
  }
  .global-nav ul li:nth-child(2n) { width: 50%; }

  /* ハンバーガーメニュー */
  .header_trigger {
      width: 30px;
      height: 30px;
      top: 5px;
      right: 0;
  }
  .header_trigger span { width: 30px; }
  .header_trigger span::after,
  .header_trigger span::before { width: 30px; }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header .logo { width: 23%; }
}


/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
footer {
  position: relative;
  background-color: #f9f8f2;
  font-size: 16px;
  padding: 40px 0 30px;
}
footer .content_inner {
  width: 90%;
  max-width: 1086px;
}
footer dl {
  display: flex;
  justify-content: center;
  gap: 0 30px;
}
footer dl dt { font-weight: 700; }
@media only screen and (max-width: 768px) {
  footer {
    font-size: 3.2vw;
    padding: 7.3333vw 0;
  }
  footer dl {
    flex-direction: column;
    gap: 4vw 0;
  }
}


/*--------------------------------------------------------------
トップページ
--------------------------------------------------------------*/
/* MV */
.main_visual {
  position: relative;
  background-color: #10b5d0;
  padding: 30px 0 120px;
}
.main_visual h1 {
  position: relative;
  width: 80%;
  max-width: 966px;
  margin: 0 auto;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .main_visual { padding: 7.0666vw 0 13.3333vw; }
  .main_visual h1 { width: 100%; }
}

/* 開催決定！ */
.p-top-held-decision { margin-top: -45px; }
.p-top-held-decision h2 {
  position: relative;
  color: #fff;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.24;
  background-color: #e9546b;
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
  padding: 13px 0;
  text-align: center;
}
.p-top-held-decision .held-decision_inner {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 40px 60px;
}
.p-top-held-decision .txt_outline ul li {
  position: relative;
  font-size: 22.5px;
  line-height: 1.4;
  padding-left: 145px;
}
.p-top-held-decision .txt_outline ul li + li { margin-top: 25px; }
.p-top-held-decision .txt_outline ul li .icon {
  position: absolute;
  width: 125px;
  font-size: 20px;
  font-weight: 700;
  margin-right: 0;
  padding: 4px 0;
  text-align: center;
  top: 2px;
  left: 0;
}
.p-top-held-decision .txt_outline ul li p { margin-bottom: 0; }
@media only screen and (max-width: 768px) {
  .p-top-held-decision { margin-top: -5.4666vw; }
  .p-top-held-decision h2 {
    font-size: 4.5333vw;
    border-radius: 10px 10px 0 0;
    padding: 1.12vw 0;
  }
  .p-top-held-decision .held-decision_inner {
    border-radius: 0 0 10px 10px;
    padding: 5.3333vw;
  }
  .p-top-held-decision .txt_outline ul li {
    font-size: 3.5999vw;
    padding-left: 20vw;
  }
  .p-top-held-decision .txt_outline ul li + li { margin-top: 4vw; }
  .p-top-held-decision .txt_outline ul li .icon {
    width: 18vw;
    font-size: 2.9333vw;
    top: 0.5333vw;
  }
}
