@charset "UTF-8";

html {
  background-color: #2d2d2d;
}

body {
  height: 100%;
  margin: 0;
  width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
h7 {
  margin: 0;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}



.topicTxt a {
  color: #212121;
  font-weight: 600;
}

.topicTxt p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #212121;
}

.topicTxt li {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #212121;
  line-height: 1.4em;
  padding: 1em 0em;
}



.topBar img {
  width: 100%;
  object-fit: cover;
}


.topLogoWrapper {
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
}

.topLogo {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
}

.topLogo img {
  width: 100%;
  max-width: 80px;
}




.topMainLogo {
  text-align: center;
  margin-bottom: 10px;
}

.topMainLogo img {
  width: 100%;
  max-width: 500px;
}



.siteName {
  max-width: 1000px;
  margin: 0 auto;
}

.siteName p {
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 1.4em;
  color: #fff;
}




.topBackground {
  background-color: #212121;
}

.topBackground img {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;

}



/*swiper*/

.swiper {
  width: 100%;
  z-index: 1;
  background-color: #282828;
}

.swiper-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  bottom: 0;
}

.swiper-slide {
  line-height: 0;
}










/*sliderのズーム*/
.slider {
  margin-inline: auto;
  overflow: hidden;
  /* 画像がはみ出ないようにする */
}

.slick-img img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}



/*fade*/

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*navArea******************************************/

#navArea {
  z-index: 1000;
}

nav {
  position: fixed;
  top: 0;
  right: -3000px;
  bottom: 0;
  transition: all 0.5s;
  z-index: 3;
  overflow-y: scroll;
  padding-right: 10px;
}

.open nav {
  right: 0px;
}

nav .inner {
  transition-duration: 0.2s;
}

.inner {
  overflow-y: scroll;
  background-color: #e6e6e6;
  width: 70%;
}

.innerMenu {
  text-align: center;
}

.innerMenu h2 {
  color: #212121;
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
  font-size: 16px;
  letter-spacing: 0.25em;
  margin-top: 30px;
  margin-bottom: 30px;
}

.innerMenu img {
  width: 80px;
  padding-top: 30px;
}

.inner a {
  display: block;
}

.mbMenu {
  padding-right: 5px;
}

.mbMenu p {
  color: #212121;
  font-size: 16px;
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
}

.mbMenu a {
  text-decoration: none;
  color: #212121;
  padding-right: 20px;
}

.menuType1 a {
  border-top: 1px solid #212121;
  padding-top: 30px;
  padding-left: 20px;
  height: 50px;
}

.menuType {
  border-top: 1px solid #212121;
  padding-top: 20px;
}

.menuType2 a {
  padding-left: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.menuType3 {
  padding-left: 20px;
  padding-bottom: 20px;
}


.menuType4 a {
  border-top: 1px solid #212121;
  padding-top: 30px;
  padding-left: 20px;
  height: 50px;
}

.menuType1 :hover {
  background-color: #212121;
  color: #e6e6e6;
  transition: 0.3s;
}

.menuType2 :hover {
  background-color: #212121;
  color: #e6e6e6;
  transition: 0.3s;
}





/*mask******************************************/

.open #mask {
  display: block;
  background-color: #212121;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.9;
  cursor: pointer;
  overflow-y: hidden;
  transition: all 1s ease-in-out;
  z-index: 2;

}


/* photogallery */





.dropdown__lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 10000;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #c7a03d;
  height: 60px;
  transition: all .3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #ddc68b;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

/*ドロップダウン ここまで*/

.mainContainerTop {
  background-color: #e6e6e6;
  margin-top: -16px;
  padding-bottom: 200px;
}


.mainContainer {
  background-color: #e6e6e6;
  margin-top: -16px;
  padding-top: 50px;
  padding-bottom: 200px;
}


.mainTitle {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 15px;
  border-bottom: 1px solid #212121;
  margin-bottom: 50px;
}

.mainTitle h3 {
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
}

.subTitle {
  width: 100%;
  max-width: 1000px;
  text-align: left;
  margin: 0 auto;
  background-color: #212121;
  margin: 80px 0px 10px 0px;
  border-radius: 5px;
}

.subTitle h3 {
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
  color: #e6e6e6;
  padding: 20px;
  font-size: 16px;
  line-height: 1.4em;
}

.subTitle a {
  color: #e6e6e6;
}


.announceTitle {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #212121;
  border-bottom: 1px solid #212121;
  margin-bottom: 50px;
}

.announceTitle h3 {
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
}






.reversekBtn {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

}

.reversekBtn a {
  color: #282828;
}

.reversekBtn a :hover {
  text-decoration-line: underline;

}

.reversekBtn p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8em;
  text-align: right;
  font-size: 13px;
}


.topicWrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}


.topicTitle {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 15px;
  margin-bottom: 50px;

}

.topicTitle h3 {
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
}

.topicTitle p {
  padding-top: 30px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 200;
  color: #5d5d5d;
}

.topicTitle2 h4 {
  margin-top: 50px;
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
  border-top: 1px solid #212121;
  border-bottom: 1px solid #212121;
  padding: 15px 0px 15px 0px;
  line-height: 1.6em;
}

.topicTxt p {
  padding-top: 50px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
}

.topicTxt h6 {
  padding-top: 50px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 3em;
  font-size: 16px;
}


.topicTxt h5 {
  padding-top: 50px;
  margin-bottom: -25px;
  font-family: "aralet-n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
  font-size: 16px;
}

.topicTxt_end p {
  padding-top: 50px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
  text-align: end;
}



.dlIcon {
  margin-top: 100px;
  border-top: 1px solid #212121;
}

.dlIcon p {
  font-size: 11px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  background-color: #b44131;
  color: #fff;
  padding: 10px 0px 10px 0px;
  display: inline-block;
  width: 120px;
  text-align: center;
}

.topicContainer {
  display: flex;
  max-width: 50%;
  margin: 0 auto;
}

.topicContainer_wide {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}




.topicImg_800 {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

.topicImg_800 p {
  text-align: center;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-size: 13px;
  line-height: 1.4em;
}

.topicImg_800 img {
  width: 80%;
}


.topicContainer_800 {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}


.topicIcon_800 {
  padding-left: 0px;
  padding-right: 0px;
  margin: 0 auto;
}

.topicIcon_800 img {
  text-align: center;
}

.topicIcon_800 p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
}

.topicIcon_800 :hover {
  transition: 0.4s;
  position: relative;
  top: 2px;
}







.topicIcon {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.topicIcon p {
  padding-top: 10px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
}

.topicIcon :hover {
  transition: 0.4s;
  position: relative;
  top: 2px;
}




.topicIcon_wide :hover {
  transition: 0.4s;
  position: relative;
  top: 2px;
}

.topicIcon_wide {
  margin: 0 auto;
}

.topicIcon_wide img {
  max-width: 100%;
}




.topicImg {
  max-width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}

.topicImg p {
  text-align: center;
  padding-top: 10px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-size: 13px;
  line-height: 1.4em;
}

.topicImg img {
  max-width: 350px;
  width: 100%;
}





.dlTitle {
  text-align: center;
}

.dlTitle p {
  padding-top: 10px;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-size: 15px;
  line-height: 1.4em;
}





/* comingsoon */

.comingsoon {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 100px;
}

.comingsoon img {
  width: 40%;
}


/* sponsor */

.spnTitle {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #212121;
  border-bottom: 1px solid #212121;
  margin-top: 50px;
  margin-bottom: 50px;
}

.spnTitle h3 {
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
}





/*news タイリング*/

/*グリッド ↓ */

.newsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 3em;
  width: 100%;
}

.newsGrid>div {
  overflow: auto;
  min-width: 0;
}

.newsGrid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 3em;
  width: 100%;
  text-align: center;
}

.newsGrid2>div {
  overflow: auto;
  min-width: 0;
}

.spsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  width: 100%;
}

.spsGrid>div {
  overflow: auto;
  min-width: 0;
}



/*グリッドここまで*/

.newsWrapper a {
  text-decoration: none;
}

.newsWrapper :hover {
  opacity: 0.8;
  transition: 0.4s;
}

.newsContent {
  width: 100%;
  max-width: 100%;
}

.newsImg img {
  width: 100%;
}

.AnnounceTxt_body {
  text-align: justify;
  line-height: 2em;
  font-size: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.newsItem {
  display: flex;
  margin-bottom: 10px;

}

.newBadge p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #e6e6e6;
  background-color: #b44131;
  display: inline;
  padding: 10px;
  margin-right: 10px;

}

.newDate p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  display: inline;

}

.newsGridTitle h3 {
  font-family: "aralet-n", sans-serif;
  font-weight: 200;
  color: #282828;
  margin-bottom: 10px;
  line-height: 1.4em;
}


.executiveArea {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}



.executiveContainer {
  padding: 30px;
  margin: 0 auto;
}


.greetingImg1 {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background-image: url(../../image/img/executive_01_inatoshinobu.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 30%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.greetingImg2 {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background-image: url(../../image/img/executive_02_itoutatuya.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 15%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.greetingImg3 {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background-image: url(../../image/img/executive_03_sugiesigeki.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 15%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.greetingImg4 {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background-image: url(../../image/img/executive_04_itotadahiko.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 15%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.executiveTxt p {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.6em;
  font-size: 16px;
  text-align: center;
  padding-bottom: 10px;
}

.executiveTxt h4 {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #282828;
  line-height: 1.6em;
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
}

.greetingType {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
  width: 400px;
  text-align: justify;
}

.NormalType {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.6em;

}


.limitedText {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


/* ルートマップ */

.routeMapsWrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 150px;
}

.routeMapsWrapper2 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.regularType {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
  text-align: justify;
}

.regularTypeRed {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #b44131;
  line-height: 1.8em;
  text-align: justify;
  margin-top: 20px;

}

.regularType2 {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
  text-align: justify;
  padding: 50px 0px 0px 0px;
}

.regularTypeIndent {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  line-height: 1.8em;
  text-align: justify;
  padding: 20px 0px 0px 0px;
}

.regularTypeIndent2 {
  padding-top: 100px;
}

.regularTypeIndent2 p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  text-align: justify;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4em;
  padding-bottom: 0.5em;
}

.regularTypeIndent2 h3 {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #e6e6e6;
  background-color: #212121;
  text-align: justify;
  padding: 10px;
  display: inline-block;
  margin-bottom: 1em;
  border-radius: 5px;
  letter-spacing: 2px;
}


.regularType3 {
  padding-top: 100px;
}

.regularType3 p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  text-align: justify;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.4em;
  padding-bottom: 0.5em;
}

.regularType3 h3 {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #e6e6e6;
  background-color: #b44131;
  text-align: justify;
  padding: 10px;
  display: inline-block;
  margin-bottom: 1em;
  border-radius: 5px;
}



.routeMapsContent {
  padding: 10px 0px 10px 0px;
}

.routeMapsContent img {
  width: 100%;
}

.shuttleWrapper {
  margin: 20px 0px 20px 0px;
}

.shuttleWrapper p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  color: #282828;
  line-height: 1.6em;
  font-size: 18px;
  padding-top: 20px;
}


.shuttleContainer {
  display: flex;
  align-items: center;
  padding: 20px 0px 20px 0px;
}

.shuttleContainer h3 {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  color: #282828;
  line-height: 1.8em;
  font-size: 21px;
}

.shuttleContainer img {
  width: 30px;
  padding-right: 15px;
}

.shuttleContent_a {
  display: flex;
  align-items: center;
}

.shuttleContent_b {
  display: flex;
  align-items: center;
}


.shuttleContent_a h3 {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 1.4em;
  background-color: #b44131;
  color: #e6e6e6;
  padding: 20px 10px;
  border-radius: 5px;
  text-align: center;
  width: 200px;
}


.shuttleContent_b h3 {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 1.4em;
  background-color: #2267a8;
  color: #e6e6e6;
  padding: 20px 10px;
  border-radius: 5px;
  text-align: center;
  width: 200px;
}

.shuttleContent_a img {
  width: 50px;
  padding: 0px 10px 0px 10px;
}

.shuttleContent_b img {
  width: 50px;
  padding: 0px 10px 0px 10px;
}






/* sponsor */

.sponsorWrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.sponsorlistItem {
  padding: 0px 20px 0px 20px;
}

.sponsorlistItem li {
  font-family: "yu-gothic-pr6n", sans-serif;
  line-height: 1.4em;
  font-size: 18px;
  padding-bottom: 18px;
}

/* bannerバナー */

.bannerWrapper {
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
}

.bannerContent {
  display: flex;
  flex-direction: row;
}

.bannerContent img {
  width: 95%;
  padding: 10px 10px 10px 10px;
}

.bannerContent :hover {
  opacity: 0.8;
  transition: 0.4s;
}

.photoWrapper {
  margin-bottom: 30px;
  text-align: center;
}

.photoWrapper img {
  width: 100%;
  max-width: 1000px;
}

.photoWrapper2 {
  margin-bottom: 30px;
  text-align: center;
}

.photoWrapper2 img {
  width: 100%;
  max-width: 1000px;
}



table {
  border-collapse: collapse;
  width: 100%;
  overflow: auto;
  white-space: nowrap;

}



.timeCell {
  width: 50px;
  padding-right: 20px;
  text-align: right;
}

.txtCell {
  width: 100px;
  padding-left: 20px;
  padding-right: 20px;
}

.stageCell {
  width: 100px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}


table td {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  line-height: 1.4em;
  font-size: 18px;
  color: #212121;
  padding: 20px 0px 20px 0px;
  border-bottom: 1px solid #212121;
}


.fesWrapper {
  margin-top: 50px;
}

.fesWrapper p {
  font-family: "yu-gothic-pr6n", sans-serif;
  line-height: 1.4em;
  font-size: 14px;
  padding-top: 5px;
}

.yoiFes img {
  width: 100%;
  max-width: 1000px;
}






/*pageTopButton*/

#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 2;
}

#pageTop a {
  background: #b44131;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  transition: all .3s ease;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  font-family: "aralet-n", sans-serif;
}

#pageTop a:hover {
  text-decoration: none;
}


/* 常滑山車マップ */

.dashiMapsWrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.dashiMaps-img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.dashiLabel img {
  width: 10.5%;
}

.hover-target img:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.dashiName1-img {
  position: absolute;
  top: 13%;
  left: 12%;
}

.dashiName2-img {
  position: absolute;
  top: 8%;
  left: 25%;
}

.dashiName3-img {
  position: absolute;
  top: 4%;
  left: 39%;
}

.dashiName4-img {
  position: absolute;
  top: 4%;
  left: 52%;
}

.dashiName5-img {
  position: absolute;
  top: 8%;
  left: 66%;
}

.dashiName6-img {
  position: absolute;
  top: 8%;
  left: 66%;
}

.dashiName6-img {
  position: absolute;
  top: 13%;
  left: 79%;
}

.dashiName7-img {
  position: absolute;
  top: 27%;
  left: 70%;
}

.dashiName8-img {
  position: absolute;
  top: 32%;
  left: 84%;
}

.dashiName9-img {
  position: absolute;
  top: 43%;
  left: 70%;
}

.dashiName10-img {
  position: absolute;
  top: 51%;
  left: 84%;
}

.dashiName11-img {
  position: absolute;
  top: 70%;
  left: 79%;
}

.dashiName12-img {
  position: absolute;
  top: 78%;
  left: 66%;
}

.dashiName13-img {
  position: absolute;
  top: 81%;
  left: 52%;
}

.dashiName14-img {
  position: absolute;
  top: 81%;
  left: 39%;
}

.dashiName15-img {
  position: absolute;
  top: 78%;
  left: 25%;
}

.dashiName16-img {
  position: absolute;
  top: 70%;
  left: 12%;
}

.dashiName17-img {
  position: absolute;
  top: 55.5%;
  left: 9%;
}

.dashiName18-img {
  position: absolute;
  top: 41%;
  left: 9%;
}

.dashiName19-img {
  position: absolute;
  top: 27%;
  left: 9%;
}

.dashiName20-img {
  position: absolute;
  top: 37%;
  left: 25%;
}

.dashiName21-img {
  position: absolute;
  top: 25.5%;
  left: 43%;
}

.dashiName22-img {
  position: absolute;
  top: 59%;
  left: 43%;
}

.dashiName23-img {
  position: absolute;
  top: 4%;
  left: 48%;
}

.dashiName24-img {
  position: absolute;
  top: 8%;
  left: 66%;
}

.dashiName25-img {
  position: absolute;
  top: 22%;
  left: 15%;
}

.dashiName26-img {
  position: absolute;
  top: 66%;
  left: 37%;
}

.dashiName27-img {
  position: absolute;
  top: 51%;
  left: 75%;
}











/* footer */


.footer {
  width: 100%;
}

.footerWrapper {
  width: 100%;
  height: auto;
  background-image: url(../../image/img/dashi_group_footer.jpg);
  background-size: cover;
}

.footerContent {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0px 20px 0px;
}




.footerItem_A {
  display: flex;
  justify-content: space-between;
}

.footerItem_B {
  display: flex;
  margin-bottom: 100px;
}

.footerItem_1 img {
  width: 100%;
  max-width: 60px;
}

.footerItem_2 {
  padding-left: 20px;
  padding-top: 7px;
  font-family: "aralet-n", sans-serif;
  color: #e6e6e6;
  line-height: 1.4em;
}



.footerItem_3 img {
  width: 25px;
  padding-left: 20px;
}

.footerItem_3 a :hover {
  opacity: 0.5;
  transition: 0.4s;
}

.footerItem_4 {
  color: #e6e6e6;
  font-size: 12px;
}






/* アコーディオン */



/*ベース*/
.toggle {
  display: none;
}

.Label {
  display: block;
  font-family: "aralet-n", sans-serif;
  font-size: 18px;
  padding: 1em;
  line-height: 1.8em;
  color: #fff;
  background: #b44131;
  border-radius: 5px;
  margin-top: 100px;
  font-size: 16px;
}

.Label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}

.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.content {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}

.toggle:checked+.Label+.content {
  height: auto;
  padding: 20px;
  transition: all .3s;
}

.toggle:checked+.Label::before {
  transform: rotate(-45deg) !important;
}








/* ulタグ */
.scrollTxt {
  width: 100%;
  max-width: 1200px;
  display: flex;
  list-style: none;
  padding-inline: 0;
  gap: 0;
  overflow: hidden;
  margin: 0 auto;
}

/* liタグ */
.scrollTxt li {
  font-family: "aralet-n", sans-serif;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  padding: 1em 3em;
  margin: 0;
  animation: marquee-left 25s linear infinite;
  letter-spacing: 0.1em;

}

/* PCの時のフォントサイズ */
@media (min-width: 600px) {
  .scrollTxt li {
    font-size: 16px;
  }
}

/* アニメーション */
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}

/* フォトコン */


.photoconGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 3em;
  width: 100%;
  margin-top: 50px;
}

.photoconGrid>div {
  overflow: auto;
  min-width: 0;
}

.photocon2024 img {
  width: 100%;
}

.photocon2024 p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #212121;
  line-height: 1.4em;
  padding-top: 6px;
  text-align: center;
}

.photocon2024 :hover {
  opacity: 0.8;
  transition: 0.2s;
}


.photocon_2024 img {
  width: 100%;
}

.photocon_2024 p {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #212121;
  line-height: 1.4em;
  padding-top: 6px;
  text-align: center;
}

