@charset "utf-8";

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  height: 100%;
  background-color: rgb(246, 247, 248) !important;
  margin: 0;
  /* ページのマージンを削除 */
  background-image: linear-gradient(0deg, rgb(246, 247, 248), #fff);
}

:root {
  --c-b1: rgb(22, 21, 115);
  --c-b2: rgb(32, 82, 148);
  --c-b3: rgb(73, 78, 147);
  --c-m1: rgb(228, 0, 127);
  --c-m2: rgb(211, 94, 133);
  --c-m3: rgb(249, 61, 219);
  --c-m4: rgb(246, 193, 216);
  --colorw1: rgb(246, 247, 248);
  --cBez1: cubic-bezier(0.075, 0.82, 0.165, 1);
  --cBez2: cubic-bezier(0.165, 0.84, 0.44, 1);
  --abCenter: translate(-50%, -50%);
  --font-size-small-01: 12px;
  --font-size-base: 16px;
  --font-size-middle-01: 20px;
  --font-size-middle-02: 24px;
  --font-size-large-01: 32px;
  --font-size-large-02: 36px;
}

@font-face {
  font-family: "851ゴチカクット";
  src: url(../font/851Gkktt.ttf);
}

@font-face {
  font-family: "きよすなSans-B";
  src: url(../font/KiyosunaSans-B-1.0.1.otf);
}

@font-face {
  font-family: "しねきゃぷしょん";
  src: url(../font/cinecaption226.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "つなぎゴシック";
  src: url(../font/TsunagiGothic.ttf);
}

@font-face {
  font-family: "さわらび明朝";
  src: url(../font/SawarabiMincho-Regular.ttf);
}

@font-face {
  font-family: "Notoserif";
  src: url(../font/NotoSerifJP-Bold.otf);
}

.map-control:has(.sub-header) img,
.modal-window img,
.button-open img,
.single-slide > div > img,
#dropdownList li a p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: var(--abCenter);
}

.main-center {
  max-width: 800px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

#wrapper {
  width: 100%;
  scrollbar-gutter: unset;
  box-sizing: border-box;
  height: unset;
  min-height: 100vh;
  position: relative;
  background-color: #f1f1f1;
}

.wrapper {
  margin-top: 48px;
}

.container-fluid {
  min-height: calc(100vh - 18px);
}

ul {
  padding-left: 0;
}

p {
  margin-bottom: 0 !important;
}

p,
a,
ul,
li,
div {
  font-size: 1.6rem;
}

div:has(>a.c-link){
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}

a.c-link {
  color: unset;
  text-decoration: none;
  display: block;
  opacity: 1;
}

a.c-link:hover{
  opacity: 0.8;
}

.sawarabi {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 400;
}

.cine {
  font-family: "しねきゃぷしょん", sans-serif;
}

.dms {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

.map-control {
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/*ローディング部分の回転エフェクト定義*/
@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*ローディング画面の背景部分*/
#loading {
  width: 100%;
  height: 100vh;
  background-color: #f6f7f8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
}

/*ローディング回転部分*/
#loading-text {
  width: 80%;
  height: auto;
  top: -8vw;
  position: absolute;
}

.loading-image {
  width: 40%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 34.2%;
  transform: var(--abCenter);
  -webkit-transform: var(--abCenter);
  -ms-transform: var(--abCenter);
  animation: ido 1s infinite;
  animation-timing-function: steps(2, start);
  -webkit-animation-timing-function: steps(2, start);
}

.bus-loading {
  position: relative;
  width: 42vw;
}

.loading-child {
  position: absolute;
}

.load-bus {
  width: 90%;
  left: -0vw;
  top: -1.4vw;
}

.load-circle {
  top: 13.9vw;
  left: 72.8%;
  width: 15%;
  animation: rotation 1.8s linear infinite;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes ido {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-10px);
  }
}

@keyframes ido2 {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-4px);
  }
}

.fadeIn {
  opacity: 0;
  transition: opacity 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

header {
  background-color: var(--c-b3);
  color: rgb(246, 247, 248);
  position: relative;
  z-index: 11;
  width: 100%;
}

header > div {
  position: relative;
  height: 4.8rem !important;
  background-color: var(--c-b3);
}

header h1 {
  font-family: "851ゴチカクット", sans-serif;
  margin-bottom: 0;
  display: inline-block;
  width: 24rem;
  font-size: 2.4rem;
  color: #fff;
    position: absolute;
  top: 50%;
  left:20px;
  transform: translateY(-50%);
}

.loading {
  position: absolute;
  width: 100%;
  height: 100vh;

  z-index: 99;
}

.load-box {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #fff;
}

.load-box div:has(> .lo-signal),
.load-box div:has(> .lo-bus),
.load-box div:has(> .lo-wh) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lo-bus {
  position: relative;
  top: 0;
}

.load-box div:has(> .lo-bus) {
  animation: shaking 1s infinite;
}

.load-box div:has(> .lo-wh) {
  animation: shaking2 1s infinite;
}

.lo-wh {
  position: relative;
  top: 0;
}

@keyframes shaking {
  0% {
    top: 50%;
  }

  45% {
    top: 50%;
  }

  46% {
    top: calc(50% + 2px);
  }

  48% {
    top: calc(50% - 3px);
  }

  50% {
    top: 50%;
  }

  59% {
    top: 50%;
  }

  60% {
    top: calc(50% + 2px);
  }

  62% {
    top: calc(50% - 3px);
  }

  64% {
    top: 50%;
  }

  100% {
    top: 50%;
  }
}

@keyframes shaking2 {
  0% {
    top: 50%;
  }

  46% {
    top: 50%;
  }

  47% {
    top: calc(50% - 1px);
  }

  49% {
    top: calc(50% + 3px);
  }

  51% {
    top: 50%;
  }

  60% {
    top: 50%;
  }

  61% {
    top: calc(50% - 1px);
  }

  63% {
    top: calc(50% + 3px);
  }

  65% {
    top: 50%;
  }

  100% {
    top: 50%;
  }
}

#blue-sig {
  display: none;
}

/* ① 初回 "右から左へ" アニメーション */
@keyframes move-in {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

.move-in {
  animation: move-in 1s ease-out forwards;
}

/* ④ "左へ画面外" に移動するアニメーション */
@keyframes move-out {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100vw);
  }
}

.move-out {
  animation: move-out 1s ease-in forwards;
}

#sig-flash {
  position: absolute;
  width: 10%;
  top: -3%;
  left: 11.4%;
  display: none;
}

#sig-flash.flash {
  animation: flash-sig 1s forwards ease-in-out;
}

@keyframes flash-sig {
  0% {
    opacity: 0.8;
    transform: scale(1);
    filter: drop-shadow(0, 0, 4px, #fff);
  }

  50% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0, 0, 0, #fff);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.svgtop {
  position: absolute;
}

.btn-g {
  font-size: 1.6rem;
  width: 14rem;
  text-align: center;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  right: 2rem;
  background-color: var(--c-b1);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  border: solid 1px #fdfdfd;
  padding: 0.4rem 1rem;
  font-family: "Kosugi Maru", sans-serif;
  transition: 0.2s color var(--cBez2);
}

/*==================================================
　ハンバーガーメニュー
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  background: var(--c-b1);
  box-shadow: 0 2px 4px 2px rgb(235, 104, 148);
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  top:48px;
  left: 1rem;
  z-index: 12;
  display: block;
  transition: box-shadow 0.6s var(--cBez1);
}

.openbtn:hover {
  box-shadow: 0 2px 3px 1px #fff, 0 2px 6px 4px var(--c-m1);
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 62%;
  left: 8px;
}

.openbtn span:nth-of-type(1) {
  top: 10px;
}

.openbtn span:nth-of-type(2) {
  top: 14px;
  left: 7.5px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
  top: 15px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 27px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*==================================================
　ここまで
===================================*/
#dropdownBox.not-active {
  display: none;
}

div:has(>#dropdownBox.active){
  position: relative;
}

#dropdownBox.active {
  display: block;
  height:100vh;
  position:fixed;
  top:0;
  z-index:5;

}

#dropdownBox {
  display: block;
  height: 64px;
  width: 100%;
  z-index: 4;
}

#dropdownBox::-webkit-scrollbar {
  display: none;
}

#dropdownList {
  display: flex;
  margin-bottom: 0;
  padding: 0;
  width: calc(100% - 280px);
  height: 48px;
  margin-left: auto;
  margin-right: 0;
}

#dropdownBox.active #dropdownList{
  width: 100%;
  display: block;
}

#dropdownList li {
  position: relative;
  min-height: 100%;
  height: auto;
  width: 16.666%;
  cursor: pointer;
  list-style: none;
  background-color: #777;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
  transition: 0.2s color var(--cBez2), 0.2s text-shadow var(--cBez2),
    0.2s background-color var(--cBez2);
}

#dropdownBox.active #dropdownList li{
width: 100%;
}

#dropdownList li .box {
  width: auto;
  display: block;
  color: #fff;
  background-color: var(--c-b3);
  padding: 0;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.2);
  z-index: 5;
}

#dropdownList li .box p {
  display: block;
}

#dropdownList li .box p > a {
  width: 100%;
  height: 100%;
  padding: 1.2rem 0;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}

#dropdownList > li:has(.box) {
  padding-bottom: 1.1rem;
}

#dropdownList li:hover {
  background-color: #555;
  height: auto;
  /* ホバー時に高さを自動に戻す */
}

#dropdownList li a {
  margin-bottom: 0 !important;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: unset;
  text-decoration: none;
}
#dropdownList li a p{
  width: 100%;
  height: fit-content;
    font-size: 14px !important;

}

#dropdownList li a span{
  display: inline-block;
}



#dropdownList li > a {
  padding: 1.1rem 0;
}
#dropdownList li > p {
  padding: 1.1rem 0;
}



div:has(> #dropdownBox) {
  position: relative;
}

#dropdownBox.active {
  opacity: 1;
  pointer-events: all;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  animation: 0.6s var(--cBez1) pop-up forwards;
  background-color: var(--c-b1);
}

#dropdownBox.not-active {
  animation: 0.6s var(--cBez1) pop-down forwards;
  background-color: var(--c-b1);
}

@keyframes pop-up {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pop-down {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.btn-g {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100vh - 4rem);
  height: 3.6rem;
}

.btn-g.active {
  display: inline;
  opacity: 1;
  pointer-events: all;
  animation: 0.6s var(--cBez1) pop-up forwards;
  z-index: 13;
}

.btn-g.not-active {
  animation: 0.6s var(--cBez1) pop-down forwards;
}

.main {
  width: 100%;
  padding-top: 6rem;
  position: relative;
}

#top-image {
  width: 100%;
  height:56.25vw;
  max-height: calc(100vh - 48px);
  position: relative;
  overflow: hidden;
  z-index: 4;
}
#top-image .top-image-box{
background-color: #000;}

#top-image  .top-image-box img {
position: absolute;
  width: calc(100vw + 60px);
  opacity: 0;
  mix-blend-mode: normal;
  animation: fadeSlideshow 16s infinite;
}

.top-image-box img:nth-of-type(1) { animation-delay: 0s !important; }
.top-image-box img:nth-of-type(2) { animation-delay: 4s !important; }
.top-image-box img:nth-of-type(3) { animation-delay: 8s !important; }
.top-image-box img:nth-of-type(4) { animation-delay: 12s !important; }

@keyframes fadeSlideshow {
  0%   { opacity: 0;
       transform: translateX(-60px); }
  8%   { opacity: 1; }  /* フェードイン */
  25%  { opacity: 1; }  /* 表示中 */
  30%  { opacity: 0; }  /* フェードアウト */
  50% {
    transform: translateX(0px);
  }
  100% { opacity: 0; 
  transform: translateX(-60px);}
}
.footer-image {
  width: 100%;
  pointer-events: none;
}

#news {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 4rem;
  padding-bottom: 8rem;
  position: relative;
}

#newsBox {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin: auto;
  margin-top: 1rem;
  padding: 0;
}

.top-title {
  margin: auto;
  padding-bottom: 1rem;
  width: fit-content !important;
}

.top-title > h3 {
  font-family: "しねきゃぷしょん", sans-serif;
  color: #555;
  margin-top: auto;
  text-align: start;
  font-size: 3.6rem;
  height: fit-content;
}

.top-title span {
  font-weight: 600;
  font-size: 1.6rem;
  height: fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: auto;
}

#newsBox > h3 {
  border-bottom: solid 0.4rem var(--c-m1);
  background-color: var(--c-b1);
  color: #fff;
  padding: 1rem;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 0;
}

#newsBox > section {
  font-size: 1.6rem;
  margin: 0 auto;
  position: relative;
}

#newsBox > section > a {
  padding: 1.1rem 0.8rem;
  transition: background-color 1s var(--cBez1);
}

#newsBox a:hover {
  background-color: rgba(196, 74, 114, 0.2);
}

#newsBox > section:not(:last-child) {
  border-bottom: solid 2px rgba(22, 21, 115, 0.1);
}

#newsBox > section > a > p,
#newsBox > section > a > h4 {
  padding: 0 1rem;
  margin: 1rem 0;
  font-family: "Kosugi Maru", sans-serif;
}

#newsBox > section > a > p {
  font-size: 1.2rem;
}

#newsBox > section::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  font-family: "Kosugi Maru", sans-serif;
  content: ">";
  text-align: center;
  line-height: 3rem;
  color: var(--c-b1);
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 3rem;
  border: solid 1px var(--c-b1);
  transition: all 1s var(--cBez1);
  transform: translateX(0) translateY(-50%);
}

#newsBox > section:hover::after {
  border: solid 1px #fff;
  background-color: var(--c-b1);
  color: #fff;
  transform: translateX(1rem) translateY(-50%);
}

#newsBox > div > a {
  padding: 1rem;
  text-align: end;
  transition: background-color 1s var(--cBez1);
}

#newsBox a {
  color: unset;
  text-decoration: none;
  display: block;
}

#otherBox {
  margin-top: 8rem;
}

/*/////////////
トップページ・SNS用
/////////////*/

#sns {
  position: relative;
  width: 100%;
  margin-top: 8rem;
}

#sns h3 {
  text-align: center;
  font-family: "851ゴチカクット";
  font-size: 3.2rem;
}

#sns .sns-main-bar {
  background-image: linear-gradient(0deg, var(--c-b3), var(--c-b1));
  box-shadow: 0 8px 8px 2px rgb(228, 0, 127);
  width: calc(100% - 120px);
  margin-right: auto;
  min-width: 520px;
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
  height: fit-content;
  padding-bottom: 4rem;
  padding-right: 3.6rem;
  margin-bottom: 8rem;
  padding-top: 3.2rem;
  position: relative;
  z-index: 2;
}

#sns .sns-main-bar .sns-main-box {
  display: flex;
  justify-content: flex-end;
  padding: 2rem;
}

#sns .sns-main-bar .sns-link-block {
  width: clamp(200px, 23vw, 280px);
  background-color: #fff;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  margin: 0 1.2rem;
  overflow: hidden;
}

.sns-link-block iframe.instagram-media {
  width: 100%;
  overflow-y: hidden;
}

.instagram-media .Header,
.HoverCard,
.Feedback,
.SocialProof,
.Caption,
.Footer {
  display: none !important;
}

.sns-link {
  display: block;
  text-decoration: none;
  color: unset;
  width: fit-content;
  margin-left: 1rem;
}

.sns-link-box {
  display: flex;
  margin-top: 0.8rem;
  width: fit-content;
  opacity: 1;
  transition: opacity 0.6s var(--cBez1);
}

.sns-link-box img {
  width: 34px;
  height: 34px;
}
.sns-link-box p {
  color: #fff;
  font-size: 20px;
  margin-left: 0.8rem;
  margin-top: 0.5rem;
  transition: color 0.6s var(--cBez1);
}
.sns-link:hover .sns-link-box p {
  color: var(--c-m4);
}
.sns-link:hover .sns-link-box {
  opacity: 0.6;
}

@media screen and (min-width: 812px) {
  #sns .sns-main-bar {
    position: relative;
    height: clamp(344px, 38vw, 469px);
  }

  #sns .sns-main-bar .sns-main-box {
    width: calc(100vw - 18px);
    justify-content: center;
    position: absolute;
    bottom: 4.8rem;
  }
}

/*/////////////
トップページ・マップ用
/////////////*/

@keyframes flash {
  0% {
    opacity: 1;
    transform: var(--abCenter) scale(1);
  }
  100% {
    opacity: 0;
    transform: var(--abCenter) scale(1.14);
  }
}

@keyframes pop01 {
  0% {
    top: 0;
  }
  20% {
    top: -20px;
  }

  100% {
    top: 0;
  }
}

/*/////////////
トップページ・代表あいさつ用
/////////////*/

#daihyou {
  width: 100%;
  padding: 0 7%;
  margin-top: 4rem;
  position: relative;
}

/*/////////////
トップページ・求人用
/////////////*/
#recruit {
  width: 100%;
  padding: 0 7%;
  margin-top: 4rem;
  position: relative;
}

#recruit svg {
  width: calc(100% + 20px);
  position: absolute;
  left: 0px;
  padding: 0;
  bottom: 28rem;
  z-index: -1;
}

#recruit > div > h3 {
  font-size: 6rem;
  text-shadow: 0px 2px 4px #fff;
  color: #000;
  filter: invert(10%);
  /*mix-blend-mode:exclusion;*/
}

/*/////////////
トップページ・バスご利用方法
/////////////*/
#use {
  width: 100%;
  padding: 0 10%;
  margin-top: 4rem;
  position: relative;
  padding-bottom: 6rem;
  margin-bottom: 2rem;
}

#use > div {
  padding: 1rem;
  box-sizing: border-box;
}

#use > div:first-of-type {
  margin-top: 0;
}

#use > div:not(:first-of-type) {
  margin-top: 4rem;
}

[class*="usebox"] {
  border-radius: 4px;
  margin: 1rem;
  margin-bottom: 4rem;
  padding: 1rem;

  position: relative;
}

[class*="usebox"] h4 {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  font-size: 4.8rem;
  color: #fff;
  text-shadow: 0 0 2px rgb(231, 24, 110);
  border-bottom: solid 2px rgb(231, 24, 110);
  font-family: serif;
}

[class*="usebox"] svg {
  position: absolute;
  top: 0.6rem;
  left: 1.6rem;
  height: 14rem;
}

[class*="usebox"] svg text {
  fill: #fff;
  stroke: rgb(22, 21, 115);
  stroke-width: 1;
  stroke-linejoin: round;
  font-weight: bold;
  font-family: serif;
  position: relative;
}

[class*="usebox"] p {
  width: clamp(200px, 40%, 400px);
  padding: 2.4rem 1.2rem;
  min-height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  line-height: 3.2rem;
  backdrop-filter: blur(4px);
  border-radius: 8px;
  border: solid 4px var(--c-b1);
  position: absolute;
  bottom: -4rem;
  right: 2rem;
  font-family: serif;
}

.useSlider > .slick-list {
  height: 100% !important;
}

.box-c {
  margin-bottom: 4rem;
  padding: 1rem 4.8rem;
  max-width: 460px !important;
  background-color: #efefef;
  box-shadow: 0 8px 8px 1px rgba(255, 255, 255, 0.6);
  border: solid 1px rgba(73, 78, 147, 0.3);
}

.box-c p {
  font-size: 28px;
}

.box-c p:last-child {
  text-align: end;
  padding-right: 1rem;
}

.box-c ul {
  padding: 0 4rem;
}

.box-c ul li {
  font-size: 20px;
  color: rgb(228, 0, 127);
  font-weight: bold;
  font-family: sans-serif;
}

/*/////////////
企業紹介
/////////////*/

.comp-title {
  -webkit-text-stroke: var(--c-m1) 1px;
  color: #fff;
  font-family: "つなぎゴシック", sans-serif;
  text-shadow: 2px 2px 8px var(--c-m1);
}

.comp-title > h2 {
  font-size: clamp(32px, 9vw, 36px);
  text-align: center;
}

.comp-wrap {
  background-color: #3024e0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-shadow: 0 0 32px 2px #0f1419 inset;
  position: relative;
  overflow: hidden;
}

.comp-wrap > img {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0.2;
  mix-blend-mode: overlay;
  top: 0;
  pointer-events: none;
}

.company {
  position: relative;
}

.comp-list-box {
  background-color: #fff;
  max-width: 900px !important;
  margin: auto;
  padding-top: 18 px;
  padding-bottom: 36px;
  border-top: solid 20px var(--c-b1);
}

.company .comp-cell-wrap {
  background-color: #fff;
  display: inline-block;
  margin: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px 20px 40px 20px;
}

.company .comp-cell-wrap.wrap-2 {
  background-color: rgb(255, 230, 244);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.company h3 {
  width: fit-content;
}

.company div:has(> .comp-cell) {
  display: grid;
  max-width: 800px;
  margin: auto;
  width: 100%;
  justify-content: start;
  overflow-x: scroll;
}

.grid-2 {
  grid-template-rows: repeat(1, 1fr) !important;
}

.company .comp-cell {
  height: 240px;
  width: 180px;
  background-color: darkgrey;
  margin: 5px;
  border: solid 2px rgb(235, 104, 148);
  border-top-right-radius: 20px;
  transform: scale(1);
  box-shadow: none;
  transition: transform 1s var(--cBez1), box-shadow 1s var(--cBez1),
    opacity 1s var(--cBez1);
}

.company .comp-cell:hover {
  box-shadow: 0 8px 8px 1px var(--c-m1);
}
.company:has(.c-cell-1:hover) .c-cell-1:not(:hover),
.company:has(.c-cell-2:hover) .c-cell-2:not(:hover) {
  opacity: 0.6;
  transform: scale(0.9);
}

.company .comp-cell:hover h4 {
  color: var(--c-m1);
}

.company .comp-cell a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: unset;
}

.company .comp-cell a h4 {
  font-family: "きよすなSans-B", sans-serif;
  color: var(--c-b1);
  font-size: 16px;
  position: absolute;
  width: fit-content;
  text-align: center;
  bottom: 0;
  left: 0;
  transform: translate(0, 0);
  padding: 8px 2rem 8px 4px;
  margin-bottom: 0;
  background-color: #fff;
  border-top-right-radius: 16px;
  transition: color 1s var(--cBez1);
}

.industryAbout {
  width: 100%;
  box-sizing: border-box;
  height: max-content;
  padding: 12px;
  letter-spacing: 1px;
  margin-top: 8px;
}

.industryAbout > p {
  font-size: 14px;
  line-height: 28px;
  font-family: sans-serif;
}

/*/////////////
会社概要
/////////////*/

div.space {
  margin: 4rem auto;
  margin-bottom: 6rem;
}

.blue-bold {
  background-color: #fff;
  font-family: sans-serif;
  font-size: 1.6rem;
  padding: 2rem 2.4rem;
  letter-spacing: 2px;
}

.about-text {
  padding: 0.8rem;
  padding-left: 0.8rem;
  padding-right: 1.6rem;
  background-color: #fff;
  backdrop-filter: blur(2px);
}

/*////////////
トップページ・バスについて
////////////*/

#busBox,
#priceBox {
  position: relative;
}

#busBox .ab {
  margin-left: clamp(30px, 12vw, 200px);
  margin-top: 200px;
  width: 280px;
  border-radius: 2px;
  padding: 1.2rem;
  background-color: rgba(255, 21, 115, 0.5);
  backdrop-filter: blur(4px);
  font-size: 28px;
  line-height: 32px;
}

#busBox {
  width: 100%;
  margin-top: 4rem;
  position: relative;
}

.otherBus.otherBus {
  margin: 4rem 0 8rem 0;
}

.m-link {
  text-decoration: none;
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 0.4rem 4rem;
  margin: auto;
  background-color: var(--c-m1);
  color: #fff;
  font-family: "しねきゃぷしょん", sans-serif;
  font-size: 1.6rem;
  border: solid 4px #fff;
  border-radius: 9999px;
  box-shadow: 0 4px 4px 1px var(--c-b1);
  transition: box-shadow 0.6s var(--cBez1), background-color 0.6s var(--cBez1);
}

div:has(> .m-link) {
  margin-bottom: 6rem;
}
.m-link:hover,
.m-link:active {
  box-shadow: 0 2px 2px 1px var(--c-b2), 0 0 4px 1px var(--c-m1) inset;
  background-color: var(--c-m3);
}

.cycle-box,
.wheel-box {
  width: 74vw;
  max-width: 600px;
  min-width: 360px;
  margin: 1.6rem auto;
  aspect-ratio: 1.7 / 1;
  background-color: #fff;
  box-shadow: 0 8px 8px 2px var(--c-m1);
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.6s var(--cBez1);
}

.cycle-box > a > svg,
.wheel-box > a > svg {
  position: absolute;
  top: 2rem;
  left: 2%;
  z-index: 9;
  transform-origin: top left;
  transform: scale(0.7);
}

.cycle-box > a > svg > text,
.wheel-box > a > svg > text {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-family: serif;
  font-weight: bold;
  margin-left: 0;
  fill: #fff;
  stroke: rgb(228, 0, 127);
  stroke-width: 1;
  filter: drop-shadow(0 0 2px rgb(228, 0, 127));
  -webkit-filter: drop-shadow(0 0 0.4px rgb(228, 0, 127));
  stroke-linejoin: round;
  font-weight: bold;
  font-family: serif;
  position: relative;
}

.cycle-slider,
.wheel-slider {
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
  background-color: #000;
}

.cycle-slider img,
.wheel-slider img {
  object-fit: cover;
  width: calc(100% + 90px);
  height: auto;
  transform: scale(1);
  opacity: 1;
  transition: transform 0.6s var(--cBez1), opacity 0.6s var(--cBez1);
}
.cycle-box:has(> a:hover),
.wheel-box:has(> a:hover) {
  box-shadow: 0 0 4px 1px #fff, 0 0px 16px 8px var(--c-m1);
}

.cycle-box > a:hover img,
.wheel-box > a:hover img {
  opacity: 0.6;
  transform: scale(1.2);
}

/*/////////////
トップページ・安全情報について
/////////////*/

#rinenBox {
  width: 100%;
  padding: 0 7%;
  margin-top: 4rem;
  position: relative;
  overflow-x: hidden;
}

#rinenBox a {
  color: unset;
  text-decoration: none;
  display: block;
}

#rinen {
  padding: 1rem 2.4rem;
  max-width: 600px;
}

#rinen > .star {
  display: flex;
  border: solid 4px rgb(228, 0, 127);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  max-width: 480px;
  padding: 0 4rem;
}

#rinen > .star > img {
  max-width: 200px;
  height: auto;
  padding: 1.6rem;
}

#rinen > .star > div {
  height: fit-content;
  flex-grow: 1;
  margin-top: auto;
  margin-bottom: auto;
}

#rinen > .star > div > p {
  width: fit-content;
  height: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#rinen > div > p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 0 1rem;
  text-align: justify;
}

#rinen > div > div {
  font-size: 2.4rem;
  font-family: "Sawarabi Mincho", serif;
  text-align: center;
  margin-bottom: 0.8rem;
}

#rinen > div > div > h4 {
  font-size: 2.8rem;
}

#rinenBox #safety {
  margin: auto;
  margin-top: 3rem;
  width: fit-content;
  position: relative;
  color: #fff;
  font-family: "つなぎゴシック", sans-serif;
  text-shadow: 0 1px 2px #333;
}

#rinenBox #safety a {
  display: block;
  font-size: clamp(14px, 1.6vw, 18px);
  padding: 8px 6rem 8px 24px;
  border-radius: 9999px;
  background-color: var(--c-b3);
  transition: background-color 0.6s var(--cBez1);
}

#rinenBox #safety a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  content: ">";
  border-radius: 9999px;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  color: #000;
  text-align: center;
  box-shadow: 2px 2px 0 2px #333;
  line-height: 2.4rem;
}

#rinenBox #safety a:hover {
  background-color: var(--c-b1);
}

.top-sfty-slider {
  margin-left: auto;
  margin-right: auto;
}

.top-sfty-slider .slick-list {
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.top-sfty-slider .slide-arrow {
  bottom: 6rem;
  font-size: 64px;
  transform: scaleX(0.3);
  color: var(--c-b1);
}

.top-sfty-slider .prev-arrow {
  right: calc(100% - 20px);
}

.top-sfty-slider .next-arrow {
  left: calc(100% - 30px);
}

.top-sfty-box {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.top-sfty-box img {
  object-fit: cover;
  height: 100%;
}

.top-sfty-box p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: rgba(22, 21, 115, 0.8);
  color: #fff;
  padding: 12px 4px 12px 12px;
  font-family: "Kosugi Maru", sans-serif;
}

div:has(> .cine) {
  margin-bottom: 3rem;
}

.cine {
  line-height: 2;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background-image: linear-gradient(120deg, #222,#000);
  color: #fff;
  font-family: sans-serif;
  position: sticky;
  top: 100vh;
  width: 100%;
  overflow: hidden;
}

footer > div {
  padding: 1rem 2.4rem;
  padding-bottom: 0;
}

footer p {
  font-size: 1.2rem;
  margin-bottom: 0.8rem !important;
}

footer p.tel {
  width: 100%;
  margin-right: 2rem;
}

footer p.fax {
  display: inline-block;
  width: 100%;
}

footer #title {
  font-size: 2.4rem !important;
  color: #fff !important;
  margin-top: 1.6rem;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 1.6rem !important;
}
footer #title > a {
  color: unset !important;
  text-decoration: none !important;
  font-size: 2.4rem !important;
}

.officeList {
  width: min(90%, 900px);
  margin: 4rem auto;
}

.contents .sub-tytle {
  background-image: linear-gradient(120deg, var(--c-b3), var(--c-b1));
  color: #fff;
  font-family: "きよすなSans-B", sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0.8rem 1.2rem;
  font-size: 1.8rem;
}

#hukusima-pin {
  width: 30%;
  height: auto;
  position: absolute;
  top: 7.6%;
  left: 66.4%;
  scale: 0.6;
  transform-origin: 7% bottom;
}

#honsya-pin {
  width: 30%;
  height: auto;
  position: absolute;
  top: 38%;
  left: 34.6%;
  scale: 0.6;
  transform-origin: 93% bottom;
}

#tamura-pin {
  width: 30%;
  height: auto;
  position: absolute;
  top: 41%;
  left: 66.2%;
  scale: 0.6;
  transform-origin: 7% bottom;
}

#sirakawa-pin {
  width: 30%;
  height: auto;
  position: absolute;
  top: 57%;
  left: 26.2%;
  scale: 0.6;
  transform-origin: 93% bottom;
}

#tanagura-pin {
  width: 30%;
  height: auto;
  position: absolute;
  top: 62.6%;
  left: 61.2%;
  scale: 0.6;
  transform-origin: 7% bottom;
}

.eigyou-map {
  width: 100%;
  filter: drop-shadow(4px 4px 8px rgb(246, 193, 216));
}

.map-access {
  width: clamp(400px, 70%, 800px);
  margin: auto;
  margin-bottom: 6rem;
  position: relative;
  border: solid 12px var(--c-b3);
  background-color: #fff;
}

.shine a img {
  transform: scale(1);
  transition: transform 0.6s var(--cBez1);
}

.shine:hover a img {
  transform: scale(1.2);
  opacity: 0.6;
}

.contents:has(.map-access) {
  max-width: 800px;
}

.contents iframe {
  width: 100%;
}

/*/////////////
輸送の安全についてのページ
/////////////*/
.anzen section,
.anzenStar {
  margin: 3rem auto;
  border: solid 1px #ccc;
  border-radius: 8px;
  padding: 1.6rem;
  background-color: #fff;
}

.anzen p {
  line-height: 3rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.anzenStar {
  margin-bottom: 6rem;
}

.anzenStar img {
  padding: 1rem;
  margin: auto;
  display: block;
  width: 100%;
  max-width: 14rem;
  height: auto;
}

.anzen section .btn {
  font-size: 1.6rem;
  margin: 1rem;
  padding: 0.8rem 1.6rem;
}

.anzen section li {
  list-style: none;
}

.sub-tytle-2 {
  font-family: "Sawarabi Mincho", serif;
}

.anzen .sub-tytle-2 {
  font-family: sans-serif;
  width: fit-content !important;
  border-bottom: solid 2px #aaa;
  color: #000;
  text-shadow: 1px 1px 4px #fff;
  padding: 4px;
  margin: 1.6rem auto;
}

h5.sub-tytle-2 {
  font-size: 2.8rem;
  text-align: center;
  width: calc(100% - 20px) !important;
  margin: 4rem auto 0 auto;
}

.map-control .anzen > h4 {
  padding: 0.25em 0.5em;
  /*上下 左右の余白*/
  font-size: 32px;
  background: transparent;
  /*背景透明に*/
  border-left: solid 5px var(--c-m1);
  /*左線*/
}
.map-control:has(.sub-header) {
  overflow: hidden;
  position: relative;
}

.sub-header {
  text-align: center;
  font-size: 28px;
  z-index: 2;
  text-shadow: 0 2px 4px #fff;
}

.sub-header > span {
  display: block;
  font-size: 18px;
}

.map-control:has(.sub-header) img {
  display: block;
  padding: 0 !important;

  z-index: 1;
  opacity: 0.4;
  background-color: #777;
}

.map-control:has(.sub-header) {
  background-color: #efefef;
  box-shadow: inset 0 0 24px 8px #ddd;
  min-height: 200px;
  margin: 1.8rem auto;
  margin-top: 0;
  max-width: none;
  display: flex;
  align-items: center;
}

.blue {
  border-left-color: var(--c-b1);
  border-left-width: 8px;
  border-left-style: solid;
}

.table-col {
  min-width: 200px;
  max-width: 300px;
  margin-top: 2rem !important;
  padding: 0.4rem;
  border: solid 1px #ccc;
}

.table-col > h5 {
  font-size: 2rem;
  font-family: "Sawarabi Mincho";
  font-weight: bold;
}

.table-col dt {
  border-bottom: solid 1px #dedede;
}

.form1 {
  margin: 1.2rem auto;
  background-color: #efefef;
}

.form1 > p {
  font-weight: bold;
  width: fit-content;
  border-bottom: solid 1px var(--c-m1);
}

/* 輸送の安全：ページネーション */
.safe-pagination {
  position: relative;
  height: fit-content;
  width: calc(90vw - 2rem) !important;
  margin: 3rem auto !important;
}

.safe-next,
.safe-prev {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  background-color: rgb(241, 59, 129);
  padding: 2rem 4rem;
  color: #fff !important;
  width: 100%;
  max-width: 200px;
  box-shadow: 0 2px 8px 4px rgb(241, 114, 146),
    0 4px 8px 2px rgb(245, 34, 122) inset;
  transition: box-shadow 0.6s var(--cBez1);
}

.safe-next:hover,
.safe-prev:hover {
  box-shadow: 0 0 0 0 transparent, 0 4px 16px 8px rgb(231, 24, 110) inset;
}

.col-6:has(> .safe-next) {
  text-align: left;
  padding: 0;
}

.safe-next {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-right: solid 1px #fff;
}

.col-6:has(> .safe-prev) {
  text-align: right;
  padding: 0;
}

.safe-prev {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-left: solid 1px #fff;
}

/* バス紹介ページ */

.row:has(.bus-btn) {
  margin-bottom: 1rem;
}

.img-list > div {
  padding: 0.8rem !important;
  padding: 0;
}

[id^="buslist-"] {
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.singleTitle {
  font-size: 2.4rem;
  font-weight: bold;
  padding-left: 16px;
  padding-bottom: 8px;
  font-family: "つなぎゴシック", sans-serif;
}

.bus-status p > .t-b {
  font-size: 20px;
  font-weight: 800;
}

div:has(> .bus-bt) {
  color: #fff;
  font-family: "きよすなSans-B", sans-serif;
  text-shadow: 0 2px 2px rgb(231, 24, 110);
}

.bus-bt {
  display: block;
  width: fit-content;
  margin: 1rem auto;
  background-image: linear-gradient(
    60deg,
    rgba(245, 139, 181, 1) 0%,
    rgba(246, 193, 216, 1) 50%,
    rgba(245, 139, 181, 1) 100%
  );
  background-size: 200% 100%;
  background-position: 0 0;
  transition: background-position 0.6s var(--cBez1);
  color: inherit;
  text-decoration: none;
  padding: 1.2rem 4rem;
  border-radius: 9999px;
  cursor: pointer;
}

.bus-bt:hover {
  color: inherit;
  background-position: 100% 0;
}

/* 開くボタン */
.button-open {
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 0;
  border: #000 solid 1px;
  cursor: pointer;
  background-color: #777;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.button-open:hover {
  opacity: 0.8;
}

/* モーダルウィンドウ */
.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: var(--abCenter);
  width: clamp(280px, 84vw, 660px);
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  z-index: 10;
  overflow: hidden;
  background-color: #444;
}

.modal-window.wide {
  width: clamp(280px, 84vw, 660px) !important;
  height: auto !important;
}

.modal-window.long {
  height: min(80vh, 600px) !important;
  width: auto !important;
}

.modal-window img {
  background: #dfdddd;
}

.modal-window img,
.button-open img {
  width: auto;
  height: 100%;
  display: block;
}

/* 閉じるボタン */
.button-close {
  position: absolute;
  display: flex;
  bottom: 0%;
  right: 0%;
  width: 1rem;
  height: 1rem;
  padding: 1em;
  text-shadow: 0 0 2px #555;
  border-radius: 20rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  opacity: 1;
  color: #000;
  transition: background-color 0.6s var(--cBez1), opacity 0.6s var(--cBez1),
    color 0.6s var(--cBez1);
}

.button-close:hover {
  background-color: #777;
  opacity: 0.8;
  color: #fdfdfd;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(30, 30, 30, 0.86);
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* 初期状態では表示されないようにする */
#overlay.non,
.modal-window.non {
  opacity: 0;
  visibility: hidden;
  /* 要素が視認できないようにする */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* フェードインする場合のクラス */
#overlay.show,
.modal-window.show {
  opacity: 1;
  visibility: visible;
  /* 要素が視認できるようにする */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#overlay:not(.show):not(.non),
.modal-window:not(.show):not(.non) {
  opacity: 0;
  visibility: hidden;
}

.bus-slider {
  margin-bottom: 4rem !important;
}

.bus-slickDots,
.list-slickDots {
  display: flex;
  list-style: none;
  justify-content: center;
}

.list-slickDots {
  background-color: var(--c-b3);
  border: solid 1px var(--c-m1);
  box-shadow: 0 4px 8px 1px var(--c-m2);
  width: fit-content !important;
  margin: auto;
  padding: 1.2rem 2.8rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.bus-slickDots > li,
.list-slickDots > li {
  margin: 0 6px;
}

.list-slickDots > li {
  display: flex;
  align-items: center;
}

.bus-slickDots > li.slick-active button,
.list-slickDots > li.slick-active button {
  background-color: var(--c-m1);
  box-shadow: 0 0 8px 4px rgb(246, 193, 216);
}

.bus-slickDots button,
.list-slickDots button {
  border-radius: 9999px;
  width: 10px;
  padding: 0;
  border: none;
  height: 10px;
  font-size: 0;
  content: none;
}

.list-slickDots button {
  width: 14px;
  height: 14px;
}

.top-sfty-slider .list-slickDots,
.topBusSlider .list-slickDots {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.top-sfty-slider .list-slickDots button,
.topBusSlider .list-slickDots button {
  background-color: var(--c-b2);
}

.slide-arrow {
  height: 0;
  margin: auto;
  position: absolute;
  padding: 0;
  border: none;
  bottom: 5.2rem;
  font-size: 2rem;
  width: 0 !important;
  transition: color 0.6s var(--cBez1);
}

.prev-arrow {
  border-left: 0;
  left: 0;
}

.next-arrow {
  border-right: 0;
  right: 58px;
}

.slide-arrow:hover {
  color: var(--c-m1);
}

/* トピックス用 */

#topics {
  margin: 4rem auto;
}

#topics > h3 {
  margin: 0 2rem;
  font-size: 2.8rem;
  font-family: "つなぎゴシック", sans-serif;
  text-align: center;
}

.mw-800 {
  max-width: 900px;
}

div:has(> .news-block) {
  padding: 0 1rem;
  margin: auto;
}

.news-block > a {
  display: flex;
  border-bottom: solid 2px #aaa;
  font-family: sans-serif;
  cursor: pointer;
  background-color: #fff;
  transition: box-shadow 0.4s var(--cBez1), background-color 0.4s var(--cBez1);
  text-decoration: none;
  color: transparent;
}

.news-block > a:hover {
  box-shadow: 0 4px 8px 2px rgba(196, 74, 114, 0.4);
  background-color: #eee;
}

.news-block > a:hover .t-thumbnail {
  opacity: 0.8;
}

.news-block > a:hover img {
  transform: scale(1.2);
}

.t-thumbnail {
  width: auto;
  background-color: #777;
  aspect-ratio: 4 / 3;
  max-height: 100px;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.4s var(--cBez1);
  position: relative;
}

.t-thumbnail > img {
  width: auto;
  height: 100%;
  margin: auto;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.4s var(--cBez1);
  display: flex;
}

div:has(> .date) {
  padding: 1rem;
  color: #000;
  max-height: 100px;
}

.date {
  font-size: 1.4rem;
}

/* 福祉 */
div:has(> .wa-bg) {
  position: relative;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 40px !important;
}

div:has(> .wa-bg) > img {
  position: absolute;
  top: -3vw;
  width: 120px;
  height: auto;
}

.img-d1 {
  left: 2vw;
}

.img-c1 {
  right: 2vw;
  transform: scale(-1, 1);
}

.wa-bg {
  background-color: #ef89a7;
  height: 80px;
  line-height: 80px;
  width: 90%;
  font-size: 24px;
  margin: auto;
  position: relative;
}

.wa-bg > picture {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}

.wa-bg > picture > img {
  position: relative;
  top: -3px;
}

.hukushi header {
  position: relative;
  height: 0 !important;
}

.hukushi > .row > div {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hukushi h1 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 10px;
  font-size: 5.3vw;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 2px 2px #444;

  font-weight: 600;
}

.hukushi .block {
  width: 80%;
  min-width: 300px;
  margin: 20px auto !important;
  padding: 20px 0px;
}

.hukushi .block h2 > img {
  width: clamp(200px, 40vw, 360px);
}

.hukushi .block {
  position: relative;
  background-image: linear-gradient(
    0deg,
    rgba(247, 227, 184, 1),
    rgb(255, 250, 205)
  );
  border-radius: 40px;
  border: solid 1px #fff;
  box-shadow: 0 8px 16px 1px rgba(240, 50, 129, 0.8),
    0 0 12px 2px rgba(255, 255, 255, 0.4) inset;
}

.hukushi .block p {
  color: #6b3f40;
  font-weight: bold;
  font-family: sans-serif;
  font-size: clamp(14px, 4vw, 18px) !important;
  margin: 28px 40px !important;
}

.hukushi .block p > b {
  text-shadow: 0 0 2px #fff;
  border-bottom: solid 4px #e47d08;
  line-height: 38px;
}

.hukushi .sien h3 {
  margin: 4px;
  font-size: 2rem;
}

.hukushi .sien h3 > img {
  text-align: center;
  height: 2.6vw;
  min-height: 20px;
  width: auto;
  padding-left: 8px;
  pointer-events: none;
}

.hukushi .sien > div {
  margin-bottom: 10px;
}

.hukushi .sien > div > div {
  border: double 6px goldenrod;
  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.8)
  );
  border-radius: 18px;
  margin: 10px;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 8px 1px rgb(228, 177, 101);
}

.hukushi .sien > div > div::before {
  width: 12px;
  height: 12px;
  content: url(../img/asiato2.png);
  position: absolute;
  left: -10px;
  top: 32px;
  transform: scale(0.4);
  filter: drop-shadow(0 2px 8px #fff);
}

.hukushi .sien > div > div::after {
  width: 20px;
  height: 20px;
  content: url(../img/asiato1.png);
  position: absolute;
  right: 28px;
  bottom: 28px;
  transform: scale(0.6);
  filter: drop-shadow(0 2px 8px #fff);
}

.hukushi .sien > div > div p {
  text-align: justify;
}

.hukushi .sien .m-box {
  width: 90%;
  margin: auto;
  background-color: navajowhite;
  margin-top: 20px;
  margin-bottom: 28px;
  border: solid 2px orange;
}

.gif {
  mix-blend-mode: hard-light;
  position: absolute;
  width: 90vw;
  z-index: 99;
  top: 0;
  right: -10vw;
  opacity: 0.8;
}

.hukushi .mokuhyou {
  background-color: #faf7c8;
  background-image: none;
}

.hukushi .mokuhyou .ti-img {
  width: 90%;
  margin: auto;
}

.ti-img img {
  display: block;
  margin: auto;
}

.ti-img img:not(.gif2) {
  z-index: 3;
  position: relative;
  width: 90%;
  max-width: 450px;
}

.ti-img .gif2 {
  width: 80% !important;
  position: relative;
  top: -2vw;
  z-index: 1;
  max-width: 400px;
}

.ti-baloon {
  position: relative;
  width: 100%;
  height: min(600px, 50vw);
  top: -12vw;
  margin-bottom: -12vw !important;
  overflow: hidden;
  z-index: 2;
}

[class^="ti-ba0"] {
  position: absolute;
  width: 26vw;
  max-width: 280px;
  height: auto;
}

[class^="ti-ba0"] > img {
  width: 100%;
  height: auto;
}

.ti-ba01 {
  left: min(290px, 26vw);
  top: 12vw;
}

.ti-ba01 > img {
  animation: 14s ease infinite float1;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(-0.2vw, 0.4vw);
  }

  50% {
    transform: translate(0.3vw, 1.2vw);
  }

  80% {
    transform: translate(-0.4vw, 0.4vw);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0.1vw, 0vw);
  }

  45% {
    transform: translate(0.3vw, -0.4vw);
  }

  70% {
    transform: translate(-0.4vw, 0.2vw);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0.8vw, -0.4vw);
  }

  65% {
    transform: translate(0.3vw, 1vw);
  }

  90% {
    transform: translate(-0.2vw, 0.2vw);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(-0.5vw, 0vw);
  }

  30% {
    transform: translate(0vw, 0.4vw);
  }

  60% {
    transform: translate(-0.4vw, 0.8vw);
  }
}

@keyframes float5 {
  0%,
  100% {
    transform: translate(0.1vw, 0vw);
  }

  40% {
    transform: translate(0.3vw, 0.6vw);
  }

  80% {
    transform: translate(-0.4vw, 0.4vw);
  }
}

.ti-ba02 {
  left: min(557.7px, 50vw);
  width: 38vw;
  top: min(306.5px, 23vw);
  max-width: 360px !important;
}

.ti-ba02 > img {
  animation: 13s ease infinite float2;
}

.ti-ba03 {
  left: min(560.7px, 50vw);
  top: min(11.15px, 1vw);
  width: 29vw;
}

.ti-ba03 > img {
  animation: 15.2s ease infinite float3;
}

.ti-ba04 {
  left: min(20.07px, 1.8vw);
  top: min(2.23px, 0.2vw);
  z-index: 2;
}

.ti-ba04 > img {
  animation: 10.8s ease infinite float4;
}

.ti-ba05 {
  left: min(4.46px, 0.4vw);
  top: min(245.3px, 22vw);
}

.ti-ba05 {
  animation: 12.6s ease infinite float5;
}

.hukushi .sisetsu {
  background-color: #fff;
  width: 90%;
  margin: auto;
}

.hukushi .sisetsu h2 {
  text-align: center;
  font-family: "つなぎゴシック", sans-serif;
  margin-top: 42px;
  padding-bottom: 36px;
  font-size: 48px;
  color: #ef89a7;
}

.hukushi .sisetsu h2 span {
  font-size: 14px;
  display: block;
  position: relative;
  top: 4px;
}

@media screen and (min-width: 767px) {
.hukushi .sisetsu {
display: flex;
  position: relative;
margin-top: 120px;
}

.hukushi .sisetsu h2 {
position: sticky;
width: 192px;
top:30%;
  height:fit-content;
}
.sisetsuBox{
  width: calc(100% - 232px);
  margin-right: 20px;
  margin-left:20px;
}

}

.hukushi-title {
  font-family: "しねきゃぷしょん", sans-serif;
}

[class*="s-slide"] > p {
  font-size: 24px !important;
}

.s-slider {
  margin-bottom: 4rem;
  border: solid 1px #777;
  background-color: #fff;
}

.s-image {
  position: relative;
}

.s-image > div {
  position: relative;
  margin: 10px;
  background-color: #fff;
  width: auto !important;
  height: 30vw;
  min-height: 200px;
  overflow-x: hidden;
}

.s-image > div img {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: auto;
  height: 30vw;
  min-height: 200px;
}

.s-data {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  padding: 4px;
  padding-bottom: 0px;
}
.s-data > dl > dt,
.s-data > dl > dd,
.s-data > dl > span {
  margin: 4px 0;
  border-bottom: dashed 1px #ccc;
}

.s-data > dl > span > dd {
  display: inline-block;
}

.slide-arrowF {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  z-index: 3;
  background-color: rgb(255, 216, 228);
}

.slide-arrowF > img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 2px #ffffff);
}

.prev-arrow-F {
  left: 0;
}

.next-arrow-F {
  right: 0;
}

.next-arrow-F > img {
  transform: scale(-1, 1);
}

div:has(> .gr-top) {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 10px;
}

.gr-top {
  display: inline-block !important;
  margin-right: 20px;
  text-align: right !important;
}

.gr-top > a {
  display: inline-block;
  margin-right: 0;
}

.gr-top > a > img {
  width: 200px;
  height: auto;
  transition: var(--cBez1) opacity 1s, var(--cBez1) filter 1s,
    var(--cBez1) transform 1s;
}

.gr-top > a:hover img {
  opacity: 0.8;
  filter: drop-shadow(0 0 4px #fff);
  transform: scale(0.9);
}

/* よくある質問　*/

.question {
  width: 90%;
  height: 320px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #fff;
}

.please-click p {
  font-size: 1.6rem !important;
}

[id^="A"] {
  margin-top: -30px;
  margin: 0 2%;
}

[id^="A"] h3 {
  font-weight: 600;
  background-color: #aaa;
  color: #000;
  font-size: 2rem !important;
  padding: 2rem;
  font-family: sans-serif;
  margin-bottom: 0;
}

[id^="A"] h3 > span {
  display: inline-block;
  color: #fff;
  margin-right: 8px;
}

[id^="A"] p {
  background-color: #fff;
  font-size: 2rem !important;
}

.question a {
  text-decoration: none;
  text-shadow: 0px 2px 6px rgba(88, 43, 97, 0.6);
  color: #000;
}

.question a:hover {
  opacity: 0.8;
}

.question::-webkit-scrollbar {
  width: 16px;
}

.question::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.question::-webkit-scrollbar-thumb {
  background-color: rgb(86, 84, 150);
  border-radius: 100px;
}

.answer {
  max-width: 800px;
  margin: 2rem auto;
}

.answer div {
  width: 96%;
}

.answer p {
  font-size: 12px;
}

.answer h5 {
  font-family: sans-serif;
  margin-top: 4rem;
}

.answer h3 {
  font-size: 16px;
}

.question-genre {
  width: fit-content;
}

.question-genre div {
  color: #000;
  width: auto;
  margin: 0;
  display: block;
  padding: 8px 16px;
  background-color: #fff;
  transition: all 0.3s;
}

.question-genre p {
  font-size: max(2vw 14px);
}

.question-genre span {
  display: inline-block;
}

.question-genre h4 {
  margin: 0;
  font-size: 18px;
}
.question-genre h4::before {
  content: "▼";
  font-size: 12px;
  color: var(--c-m4);
  margin-right: 4px;
}

.question-genre div:hover,
.question-genre div:active {
  background-color: rgb(235, 104, 148);
}

.question-genre a {
  flex: 1;
  white-space: nowrap;
  transition: all 0.3s;
  font-size: 14px;
  font-family: sans-serif;
  padding: 0;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 4px !important;
}

.question-genre img {
  transform-origin: center;
  margin: 0 auto;
  width: 24vw;
  height: 20vw;
  object-position: center;
}

.QandA-btn {
  border-bottom: none !important;
}

.QandA-btn a {
  background-color: rgb(196, 74, 114);
  color: #fff;
}

.QandA-btn a:hover {
  background-color: rgb(224, 129, 181);
  color: #fff;
}

/* よくある質問　ここまで*/

/*--------------アコーディオンメニュー------------------*/

/*--------------アコーディオンメニューここまで------------------*/

/*  お知らせ　個別記事用  */
.single-topics {
  padding: 2rem 0;
  padding-left: clamp(2rem, 4vw, 8rem);
  padding-right: clamp(2rem, 4vw, 8rem);
  background-color: #fff;
  margin-top: 8rem;
  margin-bottom: 4rem;
  font-family: sans-serif;
}

.single-topics .singleTitle {
  font-family: sans-serif;
}

.single-slick {
  max-width: 600px !important;
  margin: 1rem auto;
}

.single-date {
  color: #555;
  margin-bottom: 0.8rem !important;
}

.row:has(> .single-slide) {
  margin: 2rem;
}

.single-slide {
  height: auto;
  padding: 0.6rem;
}

.single-slide > div {
  overflow: hidden;
  background-color: #555;
  aspect-ratio: 16 / 9;
  position: relative;
}

.single-slide > div > img {
  width: auto;
  height: 100%;
}

.post-contents {
  font-size: 18px;
  font-family: sans-serif;
  padding-top: 4rem;
}

.post-contents .button-open {
  background-color: transparent;
  border: none;
}
.post-contents p {
  letter-spacing: 2px;
  color: #333;
  line-height: 2.8rem;
}

/* パンくずリスト(functions.php及びテンプレートパーツで実装) */

.breadcrumb ol li {
  display: inline;
}

.breadcrumb ol li + li::before {
  content: ">";
  margin: 0 12px;
}

/* ページトップリンク */
.pagetop {
  width: fit-content;
  height: fit-content;
  background-color: black;
  color: #fff;
  position: fixed;
  bottom: -1px;
  right: 1rem;
  padding: 0;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  transform: translateY(40px);
  z-index: 3;
}

.pagetop > a {
  width: 10rem;
  height: 3.6rem;
  padding: 0.8rem;
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.pagetop:hover {
  opacity: 0.6;
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

/*//////////////////

ページネーション用

//////////////////*/

.pagination {
  margin: 40px 0 0;
}

.nav-links {
  display: flex;
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 7px 15px;
  color:#dfdddd;
  border-radius: 9999px;
  background: #777;
  text-decoration: none;
  opacity: 1;
}

.pagination .page-numbers:hover{
  opacity: 0.8;
}

.pagination .current {
  background: #d84fec;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: #d84fec;
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
  border: none;
   color: #0f1419;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(40px);
  }
}

/*/////////////////////////////////////
テンプレートパーツ：inbound用リンク
/////////////////////////////////////*/
#inboundSpLink {
  z-index: 3;
  margin: auto;
  margin-top: 80px;
  width: 80vw;
  position: relative;
  border: solid var(--c-m1);
  background-color: rgba(240, 160, 50, 0.8);
  display: table;
  border-radius: 2%;
  text-decoration: none;
  box-shadow: 0 -5px 4px 3px rgb(255, 255, 255),
    0px 5px 4px 3px rgb(235, 171, 206);
}

#inboundSpLink a {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  display: block;
  text-align: center;
  text-decoration: none;
}

#inboundSpLink p {
  font-size: 20px !important;
  font-weight: 800;
  margin-bottom: 0;
}

#inboundSpLink::after {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  font-family: sans-serif;
  width: 100%;
  content: "特報";
  position: absolute;
  top: -20px;
  left: 0;
  color: var(--c-m1);
  text-shadow: 0 0 4px #fff;
}

#inboundSpLink:hover {
  color: var(--c-m1);
}

/*//////////////////////////////

会社沿革

//////////////////////////////*/
[class*="data-year-"] {
  background-color: #fff;
  backdrop-filter: blur(4px);
  padding: 20px 10px;
  margin: 0 4rem 10px 4rem;
  width: calc(100% - 8rem) !important;
  position: relative;
}

[class*="data-year-"] h2 {
  font-family: sans-serif;
  background-color: #fff;
  padding-left: 12px;
  margin-bottom: 12px;
}

.hist-block ul {
  padding-left: 0;
}

.hist_date {
  font-family: "つなぎゴシック", sans-serif;
  width: fit-content;
  margin: auto;
  margin-right: 0;
  border-bottom: solid 1px #777;
}

.hist_main {
  border-bottom: dashed 1px #ccc;
  text-align: justify;
}

@media screen and (max-width: 670px) {
  div:has(> .wa-bg) > img {
    top: 7vw;
    width: 80px;
  }
}

@media screen and (max-width: 999px) {
}

@media screen and (max-width: 840px) {
  .map-control {
    max-width: calc(100vw - 40px);
  }
}

@media screen and (max-width: 768px) and (min-width: 577px) {
  .map-access {
    width: 140%;
    position: relative;
    left: -40vw;
    border: none;
  }

  .contents .sub-tytle {
    margin-top: auto;
    width: fit-content;
    background-image: linear-gradient(120deg, var(--c-b3), var(--c-b1));
    color: #fff;
    font-family: "きよすなSans-B", sans-serif;
    font-weight: 600;
    margin-bottom: 0;
    padding: 0.8rem 1.2rem;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  #top-image {
  width: 100%;
  height:60vh;
  max-height: calc(100vh - 48px);
  position: relative;
  overflow: hidden;
}

#top-image  .top-image-box img {
width: auto;

}

.bus-block{
  left:-18vw;
}

.bus-block>img{
  width: 100vw;
}
  #news {
    margin: 0 10px;
  }

  #newsBox {
    margin-left: auto;
  }
  .hist_date {
    margin-left: 0;
    margin-right: auto;
  }

  #use > div:not(:first-of-type) {
    margin-top: 0;
  }

  .load-box div:has(> .lo-signal),
  .load-box div:has(> .lo-bus),
  .load-box div:has(> .lo-wh) {
    transform: translate(-50%, -50%) scale(0.6);
  }
}

@media screen and (max-width: 799px) {

#dropdownList li a p{
font-size: 12px !important;

}
}

@media screen and (max-width: 576px) {
  .t-thumbnail {
    max-height: none;
  }

  .news-block > a {
    display: block;
  }

  .topBusSlider .slick-list {
    overflow: inherit;
  }
  .topBusSlider .topBusSlide {
    width: 100%;
  }
  .contents .sub-tytle {
    margin-top: auto;
    width: fit-content;
    background-image: linear-gradient(120deg, var(--c-b3), var(--c-b1));
    color: #fff;
    font-family: "きよすなSans-B", sans-serif;
    font-weight: 600;
    margin-bottom: 0;
    padding: 0.8rem 1.2rem;
    font-size: 1.8rem;
  }

  .map-access {
    width: 160%;
    position: relative;
    left: -40vw;
  }

  .overlay {
    display: none;
  }

  .modal-window {
    display: none;
  }

  .js-open {
    pointer-events: none;
  }

  .company .comp-cell-wrap {
    max-width: none;
    width: 100%;
  }

  .company div:has(> .comp-cell) {
    display: flex !important;
    grid-template-columns: none;
    grid-column-gap: none;
    grid-row-gap: none;
    max-width: none !important;
  }

  .company .comp-cell {
    height: 120px;
    width: calc(100% - 10px);
    background-color: darkgrey;
    margin: 5px;
    border: solid 2px rgb(235, 104, 148);
    grid-area: none !important;
  }

  .company .comp-cell a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .company .comp-cell a h4 {
    font-size: 24px;
  }

  .load-box div:has(> .lo-signal),
  .load-box div:has(> .lo-bus),
  .load-box div:has(> .lo-wh) {
    transform: translate(-50%, -50%) scale(0.4);
  }
}

#svgWrapper {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
}

#svgWrapper > svg {
  filter: drop-shadow(0 8px 16px #f6c1d8);
}


/* ふとん巻きに関するcss */


.futonmaki h1{
	background-color: #5ac4ed;
}

.futonmaki .shapedividers_com-7548{
	overflow:hidden;
	position:relative;
	height: 120px;
	top: -10px;
	}
.futonmaki .shapedividers_com-7548::before{
	content:'';
	font-family:'shape divider from ShapeDividers.com';
	position: absolute;
	bottom: -1px;
	left: -1px;
	right: -1px;
	top: -1px;
	z-index: 3;
	pointer-events: none;
	background-repeat: no-repeat; 
	background-size: 100% 90px;
	background-position: 50% 0%;    
	background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%235ac4ed"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%235ac4ed"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%235ac4ed"/></svg>'); 
	}
	
	@media (min-width:768px){
.futonmaki .shapedividers_com-7548::before{
	background-size: 100% 90px;
	background-position: 50% 0%;   
	}  
	}
	 
	@media (min-width:1025px){
.futonmaki .shapedividers_com-7548::before{ 
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw; 
	background-size: 100% 90px;
	background-position: 50% 0%;  
	}
	}
	@media (min-width:2100px){
.futonmaki .shapedividers_com-7548::before{
	background-size: 100% calc(2vw + 90px);
	}
	}
	 






.futonmaki h2 {
 /* border-bottom: solid 3px black; */
 text-decoration:underline;
 
}

.futonmaki h3{
	font-size:3.3rem;
	margin:40px 0;
}

.futonmaki .w-80{
	width: 80% !important;
}
.futonmaki .neon {
  line-height: 50px;
  font-weight: bold;
  color: #FFF;
  text-shadow: 
    0 0 0.10em #0019ff,
    0 0 0.20em #0019ff,
    0 0 0.30em #0019ff,
    0 0 0.40em #0019ff;
  filter: saturate(80%);
  line-height: 42px;
  min-width: 30px;
}

.futonmaki .checkpoint{
	font-size:3rem;
	font-weight:bold;
	color:#00C;
	text-decoration:blink;
	 color: #FFF;
  text-shadow: 
    0 0 0.10em #0019ff,
    0 0 0.20em #0019ff,
    0 0 0.30em #0019ff,
    0 0 0.40em #0019ff;
  filter: saturate(80%);
	  line-height: 42px;
  min-width: 30px;
}



.futonmaki .wrapper{
	max-width:1200px;
}

.futonmaki .logo{
	
	width:50%;
	
}

.futonmaki .image-max{
	max-width:100%;
}

.futonmaki .conf{
	width:100%;
	}

.futonmaki .conf2{
	width:100%;
	}
	
	
.futonmaki h3.inquery-title {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
	color:#FFF;
	/* background-color:rgb(36,135,203); */
	background-color:rgb(39, 99, 174);	
	letter-spacing: 0.1rem;
	padding:0.4rem;
	
}

.futonmaki h3.inquery-title span{
	display: inline-block;
}

.futonmaki h3.inquery-title-left{
	
	font-size: 1.2rem;
	border-bottom: double 2px ;
	padding-bottom: 0.5rem;
	
	
}

.futonmaki .inquery-left{
	letter-spacing: 0.1rem;
	line-height:1.65rem;
	text-align: justify;
	padding:1rem 1rem;
	
}


.futonmaki .participation{
  font-weight: 700;
  color:#FFF;
	
	}



/*   2018.7.4 項目追加用 */


.futonmaki h3.inquery-title-center{
	font-size: 1.2rem;
	border-bottom: double 2px ;
	padding-bottom: 0.5rem;
	
	
	
}

/* 2022.09.30 added */

.futonmaki .huton-campaign >div{
	padding: 0 !important;
}

.futonmaki .huton-campaign img{
	width: 100%;
	height: auto;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}


@media (max-width: 575.98px) {
	
	.futonmaki h2{ font-size:1rem;
	}
	.futonmaki h3{ font-size:1.2rem;
	}
	.futonmaki .checkpoint{
		font-size:1rem;
	}
	
	.futonmaki .w-75,.futonmaki .w-80{
		width: 100% !important;
	}
		
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.futonmaki h2{ font-size:1.5rem;
	}
	.futonmaki h3{ font-size:2rem;
	}
	.futonmaki .checkpoint{
		font-size:1.5rem;
	}
	.futonmaki h3.inquery-title {
	font-size:1rem;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.futonmaki h2{ font-size:2rem;
	}
		.futonmaki h3{ font-size:2.5rem;
	}
		.futonmaki .checkpoint{
		font-size:2rem;
	}
	
	.futonmaki h3.inquery-title {
	font-size:1rem;
	}
	
}
