@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
:root {
  --hl: 8rem;
  --hm: 4rem;
  --hs: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  table.nontable table,
  table.nontable tbody,
  table.nontable tr,
  table.nontable th,
  table.nontable td {
    display: block;
    width: 100%;
    padding: 0;
  }
  table.nontable thead {
    display: none;
  }
  table.nontable th:has([data-title]):before,
  table.nontable td:has([data-title]):before {
    content: attr(data-title) "";
    display: block;
    font-size: 75%;
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  table.spblock tr,
  table.spblock th,
  table.spblock td {
    display: block;
  }
}

picture {
  display: block;
}
picture.objectfit {
  overflow: hidden;
}
picture.objectfit img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
  max-width: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

sup {
  font-size: 50%;
}

#mainContentsBox p + p {
  margin-top: 0.5em;
}

.pc,
.tb,
.sp {
  display: none;
}

@media screen and (min-width: 1316.7894736842px) {
  .pc {
    display: inline-block;
  }
}
@media screen and (min-width: 961px) and (max-width: 1388.8888888889px) {
  .pc {
    display: inline-block;
  }
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  .tb {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: inline-block;
  }
}
.large {
  font-size: 2.4rem;
}

.medium {
  font-size: 1.6rem;
}

.small {
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
}

.smaller {
  font-size: 76%;
  line-height: 1.5;
  display: inline-block;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .center.spleft {
    text-align: left;
  }
}

.right {
  text-align: right;
}

.maincolor {
  color: #f9c13b;
}

.subcolor2 {
  color: #3c5997;
}

.color_red {
  color: #c4004b;
}

.letterspacing {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .letterspacing {
    letter-spacing: 0;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.start {
  align-items: flex-start;
}
.flex.center {
  align-items: center;
}
.flex.end {
  align-items: flex-end;
}
.flex.left {
  justify-content: left;
  align-items: center;
}
.flex.left > *:not(:last-child) {
  margin-right: 1em;
}
.flex.c2 > * {
  width: calc((100% - var(--hs) * 1) / 2);
}
.flex.c3 > * {
  width: calc((100% - var(--hs) * 2) / 3);
}
.flex.c4 > * {
  width: calc((100% - var(--hs) * 3) / 4);
}
.flex.c2 > *, .flex.c2-1 > *, .flex.c3 > *, .flex.c4 > * {
  list-style: none;
}
.flex.c2 > *.wide2, .flex.c2-1 > *.wide2, .flex.c3 > *.wide2, .flex.c4 > *.wide2 {
  width: calc((100% - var(--hs) * 2) / 3 * 2 + var(--hs) * 0);
}
.flex.c2 > *.wide3, .flex.c2-1 > *.wide3, .flex.c3 > *.wide3, .flex.c4 > *.wide3 {
  width: calc((100% - var(--hs) * 3) / 4 * 3 + var(--hs) * 0);
}
.flex.c2 > *.wide, .flex.c2-1 > *.wide, .flex.c3 > *.wide, .flex.c4 > *.wide {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flex.c2.spone, .flex.c2-1.spone, .flex.c3.spone, .flex.c4.spone {
    flex-wrap: wrap;
  }
  .flex.c2.spone > *, .flex.c2-1.spone > *, .flex.c3.spone > *, .flex.c4.spone > * {
    width: 100%;
    margin-bottom: 1rem;
  }
  .flex.c2.spone > *:last-child, .flex.c2-1.spone > *:last-child, .flex.c3.spone > *:last-child, .flex.c4.spone > *:last-child {
    margin-bottom: 0;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.g4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.g2 > *.wide2, .grid.g3 > *.wide2, .grid.g4 > *.wide2 {
  grid-column: span 2;
}
.grid.g2 > *.wide3, .grid.g3 > *.wide3, .grid.g4 > *.wide3 {
  grid-column: span 3;
}
.grid.g2 > *.wide4, .grid.g3 > *.wide4, .grid.g4 > *.wide4 {
  grid-column: span 4;
}
@media screen and (max-width: 768px) {
  .grid.g2.spone, .grid.g3.spone, .grid.g4.spone {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.g2.spone > *.wide2, .grid.g2.spone > *.wide3, .grid.g2.spone > *.wide4, .grid.g3.spone > *.wide2, .grid.g3.spone > *.wide3, .grid.g3.spone > *.wide4, .grid.g4.spone > *.wide2, .grid.g4.spone > *.wide3, .grid.g4.spone > *.wide4 {
    grid-column: span 1;
  }
}

.initBoxover {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.initBox {
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .initBox {
    width: 90%;
  }
  .initBox .initBox2 {
    width: 100%;
  }
}

.initBox2 {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .initBox2 {
    width: 90%;
  }
}

ul.myUl > li {
  margin-left: 1em;
  list-style: disc;
}
ul.cautionUl > li {
  margin-left: 1em;
  text-indent: -1em;
  list-style: none;
}
ul.cautionUl > li:has(.material-symbols-outlined) {
  margin-left: 1em;
}
ul.cautionUl > li:has(.material-symbols-outlined) .material-symbols-outlined {
  font-size: 140%;
  vertical-align: middle;
  display: inline-block;
}

.pt0 {
  padding-top: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 0.5em;
}

.mt1 {
  margin-top: 1em;
}

.mt2 {
  margin-top: 2em;
}

.pb0 {
  padding-bottom: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 0.5em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb2 {
  margin-bottom: 2em;
}

.mbL {
  margin-bottom: var(--hl);
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  .mbL {
    margin-bottom: var(--hl);
  }
}
@media screen and (max-width: 768px) {
  .mbL {
    margin-bottom: calc(0.6666666667 * var(--hl));
  }
}

.mbM {
  margin-bottom: var(--hm);
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  .mbM {
    margin-bottom: var(--hm);
  }
}
@media screen and (max-width: 768px) {
  .mbM {
    margin-bottom: calc(0.6666666667 * var(--hm));
  }
}

.mbS {
  margin-bottom: var(--hs);
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  .mbS {
    margin-bottom: var(--hs);
  }
}
@media screen and (max-width: 768px) {
  .mbS {
    margin-bottom: calc(var(--hs) / 2);
  }
}

.pagination {
  text-align: center;
}
.pagination .nav-links {
  display: inline-block;
  margin: 0 auto;
}
.pagination .nav-links .page-numbers {
  display: flex;
  justify-content: center;
}
.pagination .nav-links .page-numbers li {
  list-style: none;
  margin: 0 0.5em;
}
.pagination .nav-links .page-numbers li a, .pagination .nav-links .page-numbers li:not(:has(a)) span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
}
.pagination .nav-links .page-numbers li a {
  transition: 0.5s;
  text-decoration: none;
  color: #231815;
  background: #f0f0f0;
}
.pagination .nav-links .page-numbers li a:hover {
  background: #231815;
  color: white;
}
.pagination .nav-links .page-numbers li:not(:has(a)) span.current {
  color: #FFF;
  background: #f9c13b;
}
.ggbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.ggbox.type2 {
  padding-top: 75%;
}
.ggbox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .ggbox {
    padding-top: 75%;
  }
}

.material-symbols-outlined {
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .spscroll {
    position: relative;
    width: 100%;
    overflow-x: scroll;
  }
  .spscroll::after {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(0);
    animation: spscrollicon_after ease-in-out 2s infinite;
  }
  .spscroll::after {
    font-family: "Material Symbols Outlined";
    content: "\ebb9";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #231815;
  }
  .spscroll.isactive::after {
    animation: spscrollicon 1s forwards;
  }
}
@keyframes spscrollicon_after {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%);
    opacity: 0;
  }
}
@keyframes spscrollicon {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.scrollin.nonactive {
  opacity: 0;
}
.scrollin.isactive:not(.leftin) {
  animation: fadeIn 1s ease 0s 1 normal backwards;
}
.scrollin.isactive.leftin {
  animation: fadeInLeft 1s ease 0s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-optical-sizing: auto;
  font-style: normal;
}
*:before, *:after {
  pointer-events: none;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #231815;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: unset;
  overflow-x: hidden;
  font-feature-settings: "palt";
  overflow-x: clip;
}

a {
  color: #f15a24;
  transition: 0.5s;
}
a img {
  transition: 0.5s;
}
a:hover {
  color: #f9c13b;
}
a:hover img {
  opacity: 0.5;
}
a.tel {
  pointer-events: none;
  text-decoration: none;
  color: #231815;
}
@media screen and (max-width: 768px) {
  a.tel {
    color: #3c5997;
    text-decoration: underline;
    pointer-events: all;
  }
  a.tel:hover {
    color: #b27742;
  }
}
a.mybtn {
  text-decoration: none;
  display: inline-block;
  color: #231815;
  border-bottom: 1px solid #231815;
}
a.mybtn::after {
  font-family: "Material Symbols Outlined";
  content: "\e315";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  font-size: 90%;
  width: 1em;
  height: 1em;
  background: #231815;
  color: white;
  display: inline-block;
  border-radius: 50%;
  margin-left: 0.5em;
  line-height: 1.2;
  vertical-align: middle;
}
a.mybtn:hover {
  color: #f15a24;
  border-color: #f15a24;
}
a.mybtn:hover::after {
  background: #f15a24;
}
a.imagebtn {
  aspect-ratio: 800/450;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: white;
}
a.imagebtn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
a.imagebtn .text {
  color: white;
}
a.imagebtn picture {
  width: 100%;
  aspect-ratio: 800/450;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
a.imagebtn picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: none;
}
a.imagebtn:hover picture img {
  transform: scale(1.1);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  a.imagebtn {
    aspect-ratio: 800/400;
  }
  a.imagebtn picture {
    aspect-ratio: 800/400;
  }
}

.conversionBox a {
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 3em;
  overflow: hidden;
  color: white;
}
.conversionBox a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 200%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, #f9c13b 0%, #f15a24 50%, #f9c13b 100%);
  transition: 0.5s;
}
.conversionBox a:hover::after {
  left: -50%;
}
.conversionBox.center a {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .conversionBox {
    position: relative;
    z-index: 0;
  }
  .conversionBox a {
    width: 100%;
    height: auto;
    padding: 0.5em 0;
  }
}

header {
  position: relative;
  z-index: 10;
}
header:not(:has(.mv)) {
  position: sticky;
  top: 0;
}
header #headerBox {
  --stripe: 7.3%;
  background: repeating-linear-gradient(to right, #fff78c 0, #fff78c var(--stripe), #fffbc7 var(--stripe), #fffbc7 calc(var(--stripe) * 2));
  box-shadow: 0 0 8px rgba(35, 24, 21, 0.3);
}
header #headerBox h1 picture {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: nowrap;
}
header #headerBox h1 picture::before {
  content: "";
  display: block;
  width: 130px;
  aspect-ratio: 477/640;
  background: url(../img/common/fruits2.png) no-repeat 50% 100%;
  background-size: contain;
  transition: 0.5s;
}
header #headerBox h1 picture a {
  width: 19.4270833333%;
  margin: 1rem 0;
}
header #headerBox h1 picture a img {
  max-height: 110px;
}
@media screen and (max-width: 768px) {
  header #headerBox h1 picture {
    text-align: center;
  }
  header #headerBox h1 picture::before {
    content: none;
  }
  header #headerBox h1 picture a {
    width: min(70vw, 150px);
    margin: 1rem auto;
  }
}
header #headerBox #mainnavBox {
  position: fixed;
  top: 2rem;
  right: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  z-index: 3;
}
header #headerBox #mainnavBox .language li,
header #headerBox #mainnavBox #globalnav li {
  list-style: none;
}
header #headerBox #mainnavBox #spmenucheck {
  display: none;
}
@media screen and (max-width: 768px) {
  header #headerBox #mainnavBox #spmenucheck:checked ~ #spmenuchecklabel::before {
    transform: rotate(360deg);
    content: "\e5cd";
  }
  header #headerBox #mainnavBox #spmenucheck:checked ~ #globalnav {
    display: block;
  }
}
header #headerBox #mainnavBox #spmenuchecklabel {
  display: none;
}
@media screen and (max-width: 768px) {
  header #headerBox #mainnavBox #spmenuchecklabel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 6rem;
    background: white;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  header #headerBox #mainnavBox #spmenuchecklabel::before {
    font-family: "Material Symbols Outlined";
    content: "\e5d2";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
    color: #231815;
    transition: 0.5s;
  }
}
header #headerBox #mainnavBox .language ul {
  display: flex;
  flex-wrap: nowrap;
  margin-right: var(--hs);
}
header #headerBox #mainnavBox .language ul li.nowlanguage a {
  color: #231815;
  text-decoration: none;
  pointer-events: none;
}
header #headerBox #mainnavBox .language ul li:not(:first-child)::before {
  content: " / ";
}
header #headerBox #mainnavBox #globalnav ul.depth1 {
  display: flex;
  flex-wrap: nowrap;
  background: #b27742;
  border-radius: 1.5em;
  padding: 0 1em;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li {
  line-height: 1;
  position: relative;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li a {
  padding: 1em;
  display: inline-block;
  text-decoration: none;
  color: white;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li a:hover {
  background: #f9c13b;
  color: #231815;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li ul {
  display: none;
  position: absolute;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li ul.depth2 {
  width: 200%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(35, 24, 21, 0.3);
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li ul.depth2 > li {
  text-align: left;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li ul.depth2 > li:not(:last-child) {
  border-bottom: 1px dotted rgba(35, 24, 21, 0.75);
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li ul.depth2 > li a {
  color: #231815;
  display: block;
  position: relative;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li ul.depth2 > li a::before {
  font-family: "Material Symbols Outlined";
  content: "\e315";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  transition: 0.5s;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li ul.depth2 > li a:hover::before {
  right: 0.5em;
}
header #headerBox #mainnavBox #globalnav ul.depth1 > li:hover ul.depth2 {
  display: block;
}
@media screen and (max-width: 768px) {
  header #headerBox #mainnavBox #globalnav ul.depth1 > li:hover ul.depth2 {
    display: flex;
  }
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  header #headerBox #mainnavBox #globalnav ul.depth1 > li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  header #headerBox #mainnavBox #globalnav {
    display: none;
  }
  header #headerBox #mainnavBox #globalnav ul {
    width: 100%;
    position: fixed;
    bottom: 6rem;
    left: 0;
    box-shadow: 0 0 8px rgba(35, 24, 21, 0.3);
  }
  header #headerBox #mainnavBox #globalnav ul.depth1 {
    border-radius: 0;
    flex-wrap: wrap;
    padding: 1rem;
  }
  header #headerBox #mainnavBox #globalnav ul.depth1 > li {
    width: 100%;
  }
  header #headerBox #mainnavBox #globalnav ul.depth1 > li:not(:last-child) {
    border-bottom: 1px dotted rgba(35, 24, 21, 0.5);
  }
  header #headerBox #mainnavBox #globalnav ul.depth1 > li .depth2 {
    opacity: 0.6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    bottom: auto;
    left: auto;
    box-shadow: none !important;
    width: 100% !important;
  }
  header #headerBox #mainnavBox #globalnav ul.depth1 > li .depth2 > li {
    border-bottom: none !important;
    width: calc((100% - 2rem) / 2);
    font-size: 1.4rem;
  }
}
header #headerBox #mainnavBox .conversionBox {
  margin-left: var(--hs);
}
header #headerBox #mainnavBox .conversionBox a {
  width: 7em;
  height: calc(3em + var(--hs));
  margin-top: calc(var(--hs) * -1);
}
@media screen and (max-width: 768px) {
  header #headerBox #mainnavBox .conversionBox {
    position: fixed;
    left: 25%;
    bottom: 0;
    margin-left: 0;
    width: 50%;
  }
  header #headerBox #mainnavBox .conversionBox a {
    width: 100%;
    height: 6rem;
  }
}
header #headerBox.mv {
  height: 100vh;
  box-shadow: none;
  position: relative;
}
header #headerBox.mv::before, header #headerBox.mv::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 492/182;
  width: min(25.625%, 492px);
  z-index: 0;
}
header #headerBox.mv::before {
  background-image: url(../img/home/mv_bg_decoration01.png);
  background-position: 0 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  header #headerBox.mv::before {
    content: none;
  }
}
header #headerBox.mv::after {
  background-image: url(../img/home/mv_bg_decoration02.png);
  background-position: 100% 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  header #headerBox.mv::after {
    width: 50%;
  }
}
header #headerBox.mv h1 picture {
  height: calc(100vh - 3em);
}
header #headerBox.mv h1 picture::before {
  content: none;
}
header #headerBox.mv h1 picture a {
  width: min(54.7916666667vw, 700px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
header #headerBox.mv h1 picture a img {
  width: 100%;
  height: min(49.144486692vw, 517px);
  aspect-ratio: 1052/517;
  display: block;
  max-height: none;
}
@media screen and (max-width: 768px) {
  header #headerBox.mv h1 picture a {
    width: 90%;
  }
}
header #headerBox.mv #mvbg01,
header #headerBox.mv #mvbg02,
header #headerBox.mv #mvfooter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
header #headerBox.mv #mvbg01 picture,
header #headerBox.mv #mvbg02 picture,
header #headerBox.mv #mvfooter picture {
  max-width: 1280px;
  margin: 0 auto;
}
header #headerBox.mv #mvbg02 picture,
header #headerBox.mv #mvfooter picture {
  margin-top: auto;
}
header #headerBox.mv #mvbg02 {
  z-index: 0;
}
@media screen and (min-width: 1921px) {
  header #headerBox.mv {
    height: auto;
    aspect-ratio: 1920/1080;
  }
  header #headerBox.mv h1 picture {
    height: auto;
    aspect-ratio: 1920/1080;
  }
  header #headerBox.mv h1 picture a {
    transform: translate(-50%, 0);
    top: 10.4166666667vw;
    width: 54.7916666667vw;
  }
  header #headerBox.mv #mvbg01 picture,
  header #headerBox.mv #mvbg02 picture,
  header #headerBox.mv #mvfooter picture {
    max-width: none;
  }
}
header #headerBox.slim h1 picture::before {
  content: none;
}
header #headerBox.slim h1 picture a {
  margin: 1rem 3rem;
}
header #headerBox.slim h1 picture a img {
  max-height: 70px;
}
@media screen and (max-width: 768px) {
  header #headerBox {
    overflow-x: clip;
  }
  header #headerBox.mv {
    height: calc(100vh - 6rem);
  }
}

#mainContentsBox h3 {
  text-align: center;
  font-size: 5rem;
  letter-spacing: 0.1em;
  color: #f15a24;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #mainContentsBox h3 {
    font-size: 3.4rem;
    letter-spacing: 0;
  }
}
#mainContentsBox h3 small {
  margin-top: 0.5em;
  display: block;
  color: #231815;
  font-size: 1.4rem;
  letter-spacing: 0;
}
#mainContentsBox h4 {
  margin: var(--hl) 0 1em;
  font-size: 2.2rem;
  padding-bottom: 1rem;
  line-height: 1.5;
  position: relative;
}
#mainContentsBox h4::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #f15a24, #f9c13b);
  position: absolute;
  bottom: 0;
  left: 0;
}
#mainContentsBox h4::after {
  content: "";
  display: block;
  width: 13.0208333333%;
  aspect-ratio: 400/268;
  bottom: -1em;
  background: url(../img/common/fruits.png) no-repeat 50% 100%;
  background-size: contain;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  #mainContentsBox h4::after {
    width: 20.202020202%;
  }
}
#mainContentsBox h5 {
  font-size: 1.8rem;
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.5em;
}
#mainContentsBox h5::before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
  color: #f9c13b;
}
#mainContentsBox h6 {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
#mainContentsBox h6.borderB {
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted #231815;
}
#mainContentsBox picture:has(.line2), #mainContentsBox picture:has(.line3), #mainContentsBox picture:has(.line4) {
  position: relative;
}
#mainContentsBox picture:has(.line2)::before, #mainContentsBox picture:has(.line2)::after, #mainContentsBox picture:has(.line3)::before, #mainContentsBox picture:has(.line3)::after, #mainContentsBox picture:has(.line4)::before, #mainContentsBox picture:has(.line4)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid transparent;
}
#mainContentsBox picture:has(.line2)::before {
  width: 50%;
  height: 100%;
  border-right-color: white;
}
#mainContentsBox picture:has(.line2)::after {
  content: none;
}
#mainContentsBox picture:has(.line3)::before {
  width: 33%;
  height: 100%;
  border-right-color: white;
}
#mainContentsBox picture:has(.line3)::after {
  width: 66%;
  height: 100%;
  border-right-color: white;
}
#mainContentsBox picture:has(.line4)::before {
  width: 50%;
  height: 100%;
  border-right-color: white;
}
#mainContentsBox picture:has(.line4)::after {
  width: 100%;
  height: 50%;
  border-bottom-color: white;
}
#mainContentsBox section + section {
  margin-top: var(--hl);
}
#mainContentsBox section:nth-child(2n+1):not(#breadcrumb) {
  position: relative;
  padding: var(--hm) 0;
}
#mainContentsBox section:nth-child(2n+1):not(#breadcrumb)::after {
  content: "";
  display: block;
  width: 200vw;
  height: 100%;
  background: rgba(242, 238, 231, 0.3);
  position: absolute;
  top: 0;
  left: -100vw;
  transition: 0;
  z-index: -1;
}
#mainContentsBox section:nth-child(2n+1):has(#footercontactBox) {
  padding: 0;
}
#mainContentsBox section:nth-child(2n+1):has(#footercontactBox)::after {
  content: none;
}
#mainContentsBox section:nth-child(2n+1) picture:has(.line2)::before {
  border-right-color: #f2eee7;
}
#mainContentsBox section:nth-child(2n+1) picture:has(.line3)::before {
  border-right-color: #f2eee7;
}
#mainContentsBox section:nth-child(2n+1) picture:has(.line3)::after {
  border-right-color: #f2eee7;
}
#mainContentsBox section:nth-child(2n+1) picture:has(.line4)::before {
  border-right-color: #f2eee7;
}
#mainContentsBox section:nth-child(2n+1) picture:has(.line4)::after {
  border-bottom-color: #f2eee7;
}
#mainContentsBox table:not(.noborder) tbody {
  border-top: 1px solid rgba(35, 24, 21, 0.5);
  border-left: 1px solid rgba(35, 24, 21, 0.5);
}
#mainContentsBox table:not(.noborder) tbody tr th,
#mainContentsBox table:not(.noborder) tbody tr td {
  border-right: 1px solid rgba(35, 24, 21, 0.5);
  border-bottom: 1px solid rgba(35, 24, 21, 0.5);
  vertical-align: top;
  padding: 0.5em 1em;
}
#mainContentsBox table:not(.noborder) tbody tr th {
  background: rgba(249, 193, 59, 0.1);
}
#mainContentsBox table:not(.noborder) tbody tr:nth-child(2n+1) {
  background: rgba(249, 193, 59, 0.1);
}
#mainContentsBox table:not(.noborder):not(:has(thead)) tr th {
  text-align: left;
  width: 25%;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  #mainContentsBox table:not(.noborder).spblock tbody tr:nth-child(2n+1) {
    background: white;
  }
  #mainContentsBox table:not(.noborder).spblock:not(:has(thead)) tr th {
    width: 100%;
    max-width: none;
  }
}
#mainContentsBox dl.introduction dt {
  border-bottom: 1px dotted #231815;
}
#mainContentsBox dl.introduction dd ul {
  margin-left: 0;
}
#mainContentsBox dl.introduction dd ul li {
  display: inline;
  list-style: none;
}
#mainContentsBox dl.introduction dd ul li:not(:last-child)::after {
  content: "、";
}
#mainContentsBox #breadcrumb {
  background: #f9c13b;
  text-align: left;
}
#mainContentsBox #breadcrumb ul {
  padding: 1rem 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
}
#mainContentsBox #breadcrumb ul li {
  font-size: 1.2rem;
  list-style: none;
  line-height: 1;
}
#mainContentsBox #breadcrumb ul li a {
  text-decoration: none;
  color: #231815;
  display: flex;
  align-items: center;
}
#mainContentsBox #breadcrumb ul li a:after {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  margin: 0 0.25em;
}
#mainContentsBox #breadcrumb ul li a:hover {
  color: #f15a24;
}
@media screen and (max-width: 768px) {
  #mainContentsBox #breadcrumb ul {
    padding: 1rem 0 2rem;
  }
}
#mainContentsBox .tabset > nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
#mainContentsBox .tabset > nav a {
  display: block;
  text-decoration: none;
  color: white;
}
#mainContentsBox .viewmore a {
  display: inline-block;
  padding: 0.5em 3em;
  text-decoration: none;
  position: relative;
  border: 1px solid #231815;
  color: #231815;
}
#mainContentsBox .viewmore a::before, #mainContentsBox .viewmore a::after {
  content: "";
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#mainContentsBox .viewmore a::before {
  width: 3em;
  border-bottom: 1px solid #231815;
  right: -1.5em;
}
#mainContentsBox .viewmore a::after {
  width: 0;
  border: 0.5rem solid transparent;
  border-left-color: #231815;
  right: calc(-1.5em - 0.5rem);
}
#mainContentsBox .viewmore a:hover {
  color: #f15a24;
  border-color: #f15a24;
}
#mainContentsBox .viewmore a:hover::before {
  border-bottom-color: #f15a24;
  right: -2em;
}
#mainContentsBox .viewmore a:hover::after {
  border-left-color: #f15a24;
  right: calc(-2em - 0.5rem);
}
#mainContentsBox .viewmore.white a {
  border-color: white;
  color: white;
}
#mainContentsBox .viewmore.white a::before {
  border-bottom-color: white;
}
#mainContentsBox .viewmore.white a::after {
  border-left-color: white;
}
#mainContentsBox .viewmore.white a:hover {
  mix-blend-mode: color-dodge;
  /*
  color: white(0.5);
  border-color: white(0.5);
  &::before {
  	border-bottom-color: white(0.5);
  }
  &::after {
  	border-left-color: white(0.5);
  }
  */
}
#mainContentsBox .btnbox {
  margin: var(--hl) 0;
  display: flex;
  justify-content: center;
}
#mainContentsBox .btnbox a {
  display: block;
  width: 38%;
  margin: 0 1.5rem;
  color: white;
  background: #f15a24;
  position: relative;
  text-align: center;
  text-decoration: none;
  padding: 0.5em 0;
  font-size: 2rem;
}
#mainContentsBox .btnbox a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(205, 203, 203, 0) 90%, #cdcbcb 100%);
  mix-blend-mode: multiply;
}
#mainContentsBox .btnbox a:hover {
  background: #f15a24;
}
#mainContentsBox .btnbox a.conversion {
  background: #f9c13b;
}
#mainContentsBox .btnbox a.conversion:hover {
  background: #f15a24;
}
#mainContentsBox .btnbox a.goback {
  background: gray;
}
#mainContentsBox .btnbox a.goback:hover {
  background: #f15a24;
}
@media screen and (max-width: 768px) {
  #mainContentsBox .btnbox {
    margin: var(--hm) 0;
    flex-wrap: wrap;
  }
  #mainContentsBox .btnbox a {
    width: 68%;
  }
  #mainContentsBox .btnbox a:not(:last-child) {
    margin-bottom: 1rem;
  }
}
#mainContentsBox .newslist {
  /*
  transform: translateY(calc(((((1.5rem * 2) + 6rem)) / 2) * -1) + 1rem);
  */
  margin-bottom: var(--hl);
}
@media screen and (max-width: 768px) {
  #mainContentsBox .newslist {
    margin-bottom: calc(var(--hl) / 2);
  }
}
#mainContentsBox .newslist li {
  list-style: none;
}
#mainContentsBox .newslist li a {
  color: #231815;
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px dotted rgba(35, 24, 21, 0.3);
  text-decoration: none;
  letter-spacing: 0.1em;
}
#mainContentsBox .newslist li a .date {
  width: 7em;
}
#mainContentsBox .newslist li a:hover {
  color: #f15a24;
}
@media screen and (max-width: 768px) {
  #mainContentsBox .newslist li a {
    flex-wrap: wrap;
  }
  #mainContentsBox .newslist li a .date {
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
}
#mainContentsBox .newslist li + li {
  margin-top: 1rem;
}
#mainContentsBox .cautionBox {
  border: 1px solid rgba(35, 24, 21, 0.5);
  padding: 1em 1.5em;
  background: rgba(242, 238, 231, 0.3);
}
#mainContentsBox .andmore {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  position: relative;
}
#mainContentsBox .andmore::after {
  font-family: "Material Symbols Outlined";
  content: "\f8ab";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid #231815;
  background: white;
  line-height: 1;
}
#mainContentsBox .andmore:hover {
  display: block;
}
#mainContentsBox .andmore:hover::after {
  content: none;
}
@media screen and (max-width: 768px) {
  #mainContentsBox .andmore {
    display: block;
  }
}
#mainContentsBox #sitemap nav > ul {
  position: relative;
}
#mainContentsBox #sitemap nav > ul:not(:last-child)::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-left: 1px solid gray;
  position: absolute;
  top: 0;
  left: -1.5em;
}
#mainContentsBox #sitemap nav ul {
  margin-left: 2.5em;
}
#mainContentsBox #sitemap nav ul li {
  list-style: none;
  position: relative;
  line-height: 2;
}
#mainContentsBox #sitemap nav ul li::before {
  content: "";
  width: 1em;
  height: 100%;
  border-left: 1px solid gray;
  position: absolute;
  top: 0;
  left: -1.5em;
}
#mainContentsBox #sitemap nav ul li:last-child::before {
  height: 1em;
  border-bottom: 1px solid gray;
}
#mainContentsBox #entry,
#mainContentsBox #footercontactBox {
  text-align: center;
}
#mainContentsBox #entry h6,
#mainContentsBox #footercontactBox h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  font-weight: normal;
  margin-bottom: 1rem;
}
#mainContentsBox #entry h6 .large,
#mainContentsBox #footercontactBox h6 .large {
  font-size: 3rem;
}
#mainContentsBox #entry h6::before, #mainContentsBox #entry h6::after,
#mainContentsBox #footercontactBox h6::before,
#mainContentsBox #footercontactBox h6::after {
  content: "";
  display: block;
  width: 1em;
  height: 2em;
}
#mainContentsBox #entry h6::before,
#mainContentsBox #footercontactBox h6::before {
  border-left: 1px solid #231815;
  transform: rotate(-15deg);
}
#mainContentsBox #entry h6::after,
#mainContentsBox #footercontactBox h6::after {
  border-right: 1px solid #231815;
  transform: rotate(15deg);
}
@media screen and (max-width: 768px) {
  #mainContentsBox #entry h6::before, #mainContentsBox #entry h6::after,
  #mainContentsBox #footercontactBox h6::before,
  #mainContentsBox #footercontactBox h6::after {
    height: 4em;
  }
  #mainContentsBox #entry h6::before,
  #mainContentsBox #footercontactBox h6::before {
    margin-right: 1em;
  }
  #mainContentsBox #entry h6::after,
  #mainContentsBox #footercontactBox h6::after {
    margin-left: 1em;
  }
}
#mainContentsBox #entry .conversionBox a,
#mainContentsBox #footercontactBox .conversionBox a {
  font-size: 3rem;
  font-weight: 800;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #mainContentsBox #entry .conversionBox a,
  #mainContentsBox #footercontactBox .conversionBox a {
    font-size: 2rem;
  }
}
#mainContentsBox #entry .close .conversionBox,
#mainContentsBox #footercontactBox .close .conversionBox {
  opacity: 0.5;
}
#mainContentsBox #entry .close .conversionBox a::after,
#mainContentsBox #footercontactBox .close .conversionBox a::after {
  background: rgba(35, 24, 21, 0.3);
}

#footerBox {
  margin-top: var(--hl);
  /*box-shadow: inset 0 3px 8px black(0.3); */
  background: #f9c13b;
  padding: var(--hm) 0 2rem;
  font-size: 1.4rem;
}
#footerBox li {
  list-style: none;
}
#footerBox a {
  text-decoration: none;
  color: #231815;
}
#footerBox a:hover {
  color: white;
}
#footerBox #pagetop a {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -7rem;
  bottom: 2rem;
  z-index: 8;
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f15a24;
  line-height: 1;
}
#footerBox #pagetop a span {
  font-size: 4rem;
  color: white;
}
@media screen and (max-width: 768px) {
  #footerBox #pagetop a {
    bottom: 8rem;
  }
}
#footerBox #pagetop.isactive a {
  right: 2rem;
}
#footerBox .flex .leftBox {
  flex: 1;
}
#footerBox .flex .leftBox h1 {
  font-size: 1.6rem;
}
#footerBox .flex .rightBox #globalnavF ul {
  display: grid;
}
#footerBox .flex .rightBox #globalnavF ul li a {
  display: block;
}
#footerBox .flex .rightBox #globalnavF ul li a::before {
  color: #231815;
  margin-right: 0.25em;
}
#footerBox .flex .rightBox #globalnavF ul.depth1 {
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--hm);
}
@media screen and (max-width: 768px) {
  #footerBox .flex .rightBox #globalnavF ul.depth1 {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--hs);
  }
}
#footerBox .flex .rightBox #globalnavF ul.depth1 > li > a {
  padding-bottom: 0.25em;
  border-bottom: 1px solid #231815;
  margin-bottom: 0.25em;
}
#footerBox .flex .rightBox #globalnavF ul.depth1 > li > a::before {
  content: "■";
}
#footerBox .flex .rightBox #globalnavF ul.depth1 > li:first-child, #footerBox .flex .rightBox #globalnavF ul.depth1 > li:nth-child(2) {
  grid-row: span 5;
}
#footerBox .flex .rightBox #globalnavF ul.depth2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1rem;
}
#footerBox .flex .rightBox #globalnavF ul.depth2 > li a::before {
  content: "・";
}
@media screen and (max-width: 768px) {
  #footerBox .flex .leftBox,
  #footerBox .flex .rightBox {
    flex: auto;
    width: 100%;
  }
  #footerBox .flex .leftBox {
    margin-bottom: var(--hs);
  }
}
#footerBox .copyright {
  display: block;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #footerBox .copyright {
    margin-top: var(--hm);
  }
}
@media screen and (max-width: 768px) {
  #footerBox {
    padding-bottom: 7rem;
  }
}

#home #headline {
  background: #f9c13b;
  font-size: 1.4rem;
  margin-bottom: var(--hl);
  padding: 1em 0 !important;
}
#home #topnews {
  background: #f2eee7;
  padding: var(--hm) 0;
}
#home #topnews .initBox .bannerBox .grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
}
#home #topnews .initBox .bannerBox .grid li {
  list-style: none;
}
#home #topnews .initBox .bannerBox .grid li.wide2 {
  grid-column: span 2;
}
#home #topnews .initBox .bannerBox .grid li.wide2 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #home #topnews .initBox .bannerBox .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#home #menubanner .flex.c2 li a.imagebtn {
  font-size: 5rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #home #menubanner .flex.c2 li a.imagebtn {
    font-size: 3.4rem;
    letter-spacing: 0;
  }
}
#home #menubanner .flex.c2 li a.imagebtn small {
  margin-top: 0.5em;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
}

#about #coursemap h3 {
  margin-bottom: 0;
}
#about #coursemap .spscroll {
  padding: 1.5em;
  background: white;
}
@media screen and (max-width: 768px) {
  #about #coursemap .spscroll img {
    max-width: none;
    height: 450px;
  }
}
#about #coursemap #map {
  position: relative;
}
#about #coursemap #map .textbox {
  position: absolute;
  top: 5rem;
  right: 10%;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about #coursemap #map .textbox {
    position: relative;
    right: auto;
    width: 100%;
    margin-bottom: var(--hs);
  }
}
#about #coursemap #map .mapbox {
  position: relative;
}
#about #coursemap #map .mapbox picture {
  overflow-x: scroll;
}
#about #coursemap #map .mapbox img {
  max-width: none;
  min-width: 1500px;
}
@media screen and (max-width: 768px) {
  #about #coursemap #map .mapbox img {
    min-width: 1000px;
  }
}
#about #coursemap #map .mapbox::after {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(0);
  animation: spscrollicon_after ease-in-out 2s infinite;
  font-family: "Material Symbols Outlined";
  content: "\ebb9";
  vertical-align: middle;
  font-size: 150%;
  font-weight: 200;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #231815;
}
#about #coursemap #map .mapbox.isactive::after {
  animation: spscrollicon 1s forwards;
}
#about #coursemap .grid.g4 dl {
  display: flex;
  flex-direction: column;
}
#about #coursemap .grid.g4 dl dt {
  order: 2;
  font-size: 1.4rem;
  position: relative;
}
#about #coursemap .grid.g4 dl dt span.drink, #about #coursemap .grid.g4 dl dt span.eat {
  content: "";
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  top: -1.25em;
  right: -0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #f15a24;
  color: white;
}
#about #coursemap .grid.g4 dl dt span.drink {
  background: #3c5997;
}
#about #coursemap .grid.g4 dl dt span.small {
  opacity: 0.8;
}
#about #coursemap .grid.g4 dl dd {
  order: 1;
  margin-bottom: 0.5rem;
}
#about .minamikawachi-fruit {
  text-align: center;
}
#about .minamikawachi-fruit img {
  max-width: 200px;
}
#about .prizeitems dl {
  font-size: 1.4rem;
}
#about .prizeitems dl dt {
  background: #f9c13b;
  padding: 0.5em 0;
  text-align: center;
}
#about .prizeitems dl dd table th {
  width: auto;
}
#about #environment ul li {
  list-style: none;
}
#about #environment ul li a {
  display: block;
  border: 1px solid gray;
  padding: 1.5em;
  background: white;
  color: #231815;
  text-decoration: none;
  font-size: 130%;
  font-weight: 600;
}
#about #environment ul li a .small {
  color: rgba(35, 24, 21, 0.5);
  transition: 0.5s;
}
#about #environment ul li a:hover {
  color: #f15a24;
  box-shadow: 0 0 8px rgba(35, 24, 21, 0.3);
  border-color: #f15a24;
  background: rgba(241, 90, 36, 0.05);
}
#about #environment ul li a:hover .small {
  color: #f15a24;
}
#about #environment ul li.osakamon a {
  position: relative;
}
#about #environment ul li.osakamon a::after {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: calc(100% - 2rem);
  aspect-ratio: 310/198;
  background: url(../img/home/banner_osakamon.png) no-repeat 100% 50%;
  background-size: contain;
}

#runner #information .conversionBox a {
  letter-spacing: 0.1em;
  pointer-events: none;
}
#runner #information .conversionBox a::after {
  background: rgba(35, 24, 21, 0.3);
}
@media screen and (max-width: 768px) {
  #runner #information p.center {
    text-align: left;
  }
}
#runner #accommodation .grid li {
  list-style: none;
  border: 1px solid rgba(35, 24, 21, 0.3);
  padding: 1.5em;
}
#runner #accommodation .grid li h6 {
  border-bottom: 1px dotted #231815;
  padding-bottom: 0.5rem;
}
#runner #accommodation .grid li table {
  font-size: 1.4rem;
}
#runner #accommodation .grid li table tr th {
  white-space: nowrap;
  vertical-align: top;
}
#runner #accommodation .grid li table tr td {
  padding-left: 1rem;
}

#event #timetable .timetableTable {
  width: 100%;
}
#event #timetable .timetableTable tr,
#event #timetable .timetableTable th,
#event #timetable .timetableTable td {
  height: 12rem;
  padding: 0;
}
#event #timetable .timetableTable tr th {
  text-align: center;
  vertical-align: middle;
  padding: 0 1em;
}
#event #timetable .timetableTable tr td {
  position: relative;
}
#event #timetable .timetableTable tr td > div {
  line-height: 1.25;
  position: absolute;
  width: calc(100% - 8rem);
  left: 7rem;
  padding: 0.5em 1em;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(35, 24, 21, 0.3);
}
#event #timetable .timetableTable tr td > div > div {
  position: relative;
}
#event #timetable .timetableTable tr td > div > div .material-symbols-outlined {
  font-size: 1.8rem;
  vertical-align: middle;
  margin-left: 0.25em;
}
#event #timetable .timetableTable tr td > div > div small {
  display: none;
  width: 150%;
  max-width: 20em;
  padding: 2em;
  background: rgba(35, 24, 21, 0.7);
  color: white;
  position: absolute;
  bottom: 2em;
  left: 0;
}
#event #timetable .timetableTable tr td > div > div small::after {
  content: "";
  width: 0;
  height: 0;
  border: 0.5rem solid transparent;
  border-top-color: rgba(35, 24, 21, 0.7);
  position: absolute;
  bottom: -1rem;
  left: 1em;
}
#event #timetable .timetableTable tr td > div > div:hover small {
  display: inline-block;
}
#event #timetable .timetableTable tr td > div > div:first-child::before {
  content: "";
  position: absolute;
  display: block;
  border-top: 1px solid #231815;
  width: 7rem;
  top: 0;
  left: calc(-7rem - 1em);
}
#event #timetable .timetableTable tr td > div > div:first-child::after {
  position: absolute;
  display: inline-block;
  width: 2.5em;
  text-align: center;
  top: 0;
  left: calc((7rem + 1em - 1.25em) * -1);
  transform: translateY(-50%);
  font-weight: 600;
  background: #231815;
  color: white;
}
#event #timetable .timetableTable tr td > div.time0 {
  top: 0;
}
#event #timetable .timetableTable tr td > div.time0 > div:first-child::after {
  content: "00";
}
#event #timetable .timetableTable tr td > div.time10 {
  top: 2rem;
}
#event #timetable .timetableTable tr td > div.time10 > div:first-child::after {
  content: "10分";
}
#event #timetable .timetableTable tr td > div.time20 {
  top: 4rem;
}
#event #timetable .timetableTable tr td > div.time20 > div:first-child::after {
  content: "20分";
}
#event #timetable .timetableTable tr td > div.time30 {
  top: 6rem;
}
#event #timetable .timetableTable tr td > div.time30 > div:first-child::after {
  content: "30分";
}
#event #timetable .timetableTable tr td > div.time40 {
  top: 8rem;
}
#event #timetable .timetableTable tr td > div.time40 > div:first-child::after {
  content: "40分";
}
#event #timetable .timetableTable tr td > div.time50 {
  top: 10rem;
}
#event #timetable .timetableTable tr td > div.time50 > div:first-child::after {
  content: "50分";
}
#event #timetable .timetableTable tr td > div.span10 {
  height: 2rem;
}
#event #timetable .timetableTable tr td > div.span20 {
  height: 4rem;
}
#event #timetable .timetableTable tr td > div.span30 {
  height: 6rem;
}
#event #timetable .timetableTable tr td > div.span40 {
  height: 8rem;
}
#event #timetable .timetableTable tr td > div.span50 {
  height: 10rem;
}
#event #timetable .timetableTable tr td > div.span60 {
  height: 12rem;
}
#event #timetable .timetableTable tr td > div.bg3 {
  background: #73A7C9;
  color: white;
}
#event #timetable .timetableTable tr td > div.bg2 {
  background: #A1C4A9;
}
#event #timetable .timetableTable tr td > div.bg4 {
  background: #F4EBD0;
}
#event #timetable .timetableTable tr td > div.bg1 {
  background: #F2D7B0;
}
#event #timetable .timetableTable tr td > div.bg5 {
  background: #E8A87C;
}
#event #project .initBox > .grid picture {
  margin-bottom: 0.5rem;
}
#event #project .initBox > .grid > dl {
  background: rgba(249, 193, 59, 0.1);
}
#event #project .initBox > .grid > dl > dt {
  font-size: 1.8rem;
  background: #f9c13b;
  padding: 0.25em 0;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px dotted #231815;
}
#event #project .initBox > .grid > dl > dd {
  padding: 1em;
  padding-bottom: 2em;
}
#event #project .initBox > .grid > dl > dd > .flex.c2 > dl > dt {
  border: 1px solid rgba(35, 24, 21, 0.5);
  padding: 0.25em 0;
  text-align: center;
  background: white;
  margin-bottom: 1em;
}
#event #project .initBox > .grid > dl > dd > .flex.c2 > dl > dd {
  font-size: 1.4rem;
}
#event #project .initBox > .grid > dl > dd > .flex.c2 > dl > dd > .flex.c2 > dl > dt {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}
#event #project .initBox > .grid > dl > dd > .flex.c2 > dl > dd > .flex.c2 > dl > dd {
  font-size: 1.4rem;
}
#event #project .initBox > .grid > dl > dd > .flex.c2 > dl > dd > .flex.c2 > dl > dd picture .right {
  width: 30%;
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
#event #project .initBox .participatingBox > .flex.c3:not(:last-child) {
  padding-bottom: var(--hm);
  border-bottom: 1px dotted #231815;
  margin-bottom: var(--hm);
}
@media screen and (max-width: 768px) {
  #event #project .initBox .participatingBox > .flex.c3 > .wide2 {
    order: 2;
  }
  #event #project .initBox .participatingBox > .flex.c3 picture {
    order: 1;
    margin-bottom: 0.5rem;
  }
}
#event #guest .grid.g2 picture,
#event #guest .grid.g3 picture {
  margin-bottom: 0.5rem;
}
#event #guest .grid.g2 h5,
#event #guest .grid.g3 h5 {
  font-size: 1.8rem;
  background: #f9c13b;
  padding: 0.25em 0;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px dotted #231815;
  margin-bottom: 0;
}
#event #guest .grid.g2 h5::before,
#event #guest .grid.g3 h5::before {
  content: none;
}
#event #guest .grid.g2 > div,
#event #guest .grid.g3 > div {
  background: rgba(249, 193, 59, 0.1);
}
#event #guest .grid.g2 > div > h5,
#event #guest .grid.g3 > div > h5 {
  border-bottom: 2rem solid white;
}
#event #guest .grid.g2 > div > dl > dt,
#event #guest .grid.g3 > div > dl > dt {
  font-size: 1.8rem;
  border-top: 1px dotted #231815;
  border-bottom: 1px dotted #231815;
  margin: 1em;
  padding: 1em 0;
  margin-bottom: 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
}
#event #guest .grid.g2 > div > dl > dd,
#event #guest .grid.g3 > div > dl > dd {
  padding: 1em;
  padding-bottom: 2em;
}
#event #guest .grid.g2 > div > dl > dd .profile,
#event #guest .grid.g3 > div > dl > dd .profile {
  margin-top: 1em;
  font-size: 1.4rem;
  position: relative;
}
#event #guest .grid.g2 > div > dl > dd .profile table tbody tr th,
#event #guest .grid.g3 > div > dl > dd .profile table tbody tr th {
  white-space: nowrap;
}
#event #guest .grid.g2 > div > dl > dd .profile::before,
#event #guest .grid.g3 > div > dl > dd .profile::before {
  content: "プロフィール";
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
#event #guest .grid.g2 > div > dl > dd .profile::after,
#event #guest .grid.g3 > div > dl > dd .profile::after {
  content: "";
  width: calc(100% - 6.5em);
  height: 0;
  border-bottom: 1px dotted #231815;
  position: absolute;
  top: 0.5em;
  right: 0;
}
#event #guest .grid.g2 > div > dl > dd .profile > *,
#event #guest .grid.g3 > div > dl > dd .profile > * {
  margin-top: 1rem;
}
#event #guest .grid.g2 > div > dl > dd .introduction + .introduction,
#event #guest .grid.g3 > div > dl > dd .introduction + .introduction {
  margin-top: 1rem;
}
#event #guest .grid.g2 > div > dl > dd .introduction p,
#event #guest .grid.g3 > div > dl > dd .introduction p {
  display: inline-block;
  float: left;
  border: 1px solid rgba(35, 24, 21, 0.5);
  padding: 0 0.5rem;
  font-size: 1rem;
  margin-right: 0.25em;
}
#event #guest .grid.g2 > div > dl > dd .introduction dt,
#event #guest .grid.g3 > div > dl > dd .introduction dt {
  margin-bottom: 0.5rem;
}
#event #guest .grid.g2 > div > dl > dd .introduction dd,
#event #guest .grid.g3 > div > dl > dd .introduction dd {
  font-size: 1.2rem;
}

#spsnscheck {
  display: none;
}
@media screen and (max-width: 768px) {
  #spsnscheck:checked ~ #spmenuchecklabel::before {
    transform: rotate(360deg);
    content: "\e5cd";
  }
  #spsnscheck:checked ~ .snsicons {
    right: 1em;
  }
}

#spsnschecklabel {
  display: none;
}
@media screen and (max-width: 768px) {
  #spsnschecklabel {
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 6rem;
    background: #3c5997;
    color: white;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
  }
  #spsnschecklabel::before {
    font-family: "Material Symbols Outlined";
    content: "\e80d";
    vertical-align: middle;
    font-size: 150%;
    font-weight: 200;
    transition: 0.5s;
  }
}

.snsicons {
  position: fixed;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  z-index: 10;
}
.snsicons ul li {
  list-style: none;
  width: 40px;
  margin: 0.5em 0;
}
.snsicons ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(35, 24, 21, 0.3);
  border: 1px solid transparent;
}
.snsicons ul li a:hover {
  border-color: #f15a24;
  transform: scale(1.1);
}
.snsicons ul li a img {
  width: 25px;
}
.snsicons ul li.sns_x a img {
  width: 20px;
}
.snsicons ul li.sns_facebook a img, .snsicons ul li.sns_line a img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .snsicons {
    transition: 0.5s;
    right: calc((40px + 1em) * -1);
  }
}

.comingsoon {
  display: flex;
  width: 100%;
  height: 8em;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
}/*# sourceMappingURL=style.css.map */