@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/destyle.css@1.0.15/destyle.css");
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 101;
}

.overlay.active {
  display: block;
}

.sideNav * {
  z-index: 102;
}

/*------------------
各項目+ボタン開閉のcss
-----------------------*/
.sideItem { /*メニューアイコン*/
  /*基本の形*/
  width: 33px;
  height: 180px;
  line-height: 33px;
  position: fixed;
  top: calc(40vh - 60px);
  right: 0;
  letter-spacing: 0.2em; /* 文字間隔を調整 */
  /*縦にするcss*/
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  /*その他*/
  text-align: center;
  background-color: #083E8E;
  color: #fff;
  border: solid 1px #083E8E;
  border-radius: 12px 0 0 12px;
  font-size: 12px;
  transition: all 0.3s;
}
.noruca {
  display: inline-block;
  writing-mode: vertical-rl; /* 文字を縦に並べる */
  text-orientation: upright; /* 文字の方向を垂直に */
}

.norucaObject {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0;
  margin-left: 5px;
  margin-top: 6px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: #fff;
  transform: rotate(-135deg);
}

.norucaObject.norucahovered {
  border-color: #083E8E;
}

.norucaObject.reverse {
  transform: rotate(45deg);
  margin-left: -3px;
}

.sideItem.open {
  right: 300px;
  z-index: 102;
}

.sideItem:hover {
  cursor: pointer;
}

.sideList { /*メニューリスト*/
  width: 300px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: -300px;
  transition: all 0.3s;
  border: solid 15px #3FA9F5;
  background-color: #fff;
  display: flex;
  align-items: top;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox用 */
}

.sideList::-webkit-scrollbar {
  display: none; /* Chrome, Safari用 */
}

.sideList.open {
  right: 0;
  height: 100%;
  z-index: 102;
}

.sideListInner {
  width: 100%;
  padding: 15px;
}

.sideClass {
  font-size: 15px;
  font-weight: bold;
  height: 46px;
  line-height: 46px;
  padding-left: 5px;
  border-bottom: solid 1px #D3D3D3;
  color: #333;
  transition: 0.3s;
}

.sideClass:hover {
  background-color: #fff;
  color: #3fa9f5;
}

.sideClass a {
  display: block;
  height: 100%;
  width: 100%;
}
/*---------------------
各項目+ボタン開閉のcss
-------------------------*/
.sideIndex {
  display: flex;
  height: 46px;
  line-height: 46px;
  padding-left: 5px;
  justify-content: space-between;
  align-items: center;
  color: #333;
  border-bottom: solid 1px #D3D3D3;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s;
}

.sideIndex:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  color: #3FA9F5;
}

.sideLink {
  overflow: hidden;
  display: block;
  font-size: 15px;
  transition: 0.3s;
}

.sideLink#sideLink01 {
  height: 144px;
  transition: 0.3s;
}

/*.sideLink#sideLink02{height: 50px; transition: 0.3s;}*/
.sideLink#sideLink03 {
  height: 144px;
  transition: 0.3s;
}

.sideLink#sideLink04 {
  height: 396px;
  transition: 0.3s;
}

.sideLink#sideLink05 {
  height: 72px;
  transition: 0.3s;
}

.sideLink.close#sideLink01 {
  height: 0;
}

.sideLink.close#sideLink02 {
  height: 0;
}

.sideLink.close#sideLink03 {
  height: 0;
}

.sideLink.close#sideLink04 {
  height: 0;
}

.sideLink.close#sideLink05 {
  height: 0;
}

.sideLinkInner {
  display: block;
  width: 100%;
  height: 36px;
  line-height: 46px;
  padding-left: 5px;
  transition: 0.3s;
}

.sideLinkInner#teiki {
  height: 42px;
  line-height: 15px;
}

.sideLinkInner a:hover {
  background-color: rgb(255, 255, 255);
  color: #3FA9F5;
}

.sideLinkInner a {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}

.sideLinkInner.bn {
  border-bottom: none;
}

.sideLinkInnerObject {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0;
  border-top: 2px solid #3FA9F5;
  border-right: 2px solid #3FA9F5;
  transform: rotate(45deg);
}

/*+ボタン*/
.sidePlusOuter {
  width: 16px;
  height: 16px;
  background-color: #3FA9F5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidePlus {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #3FA9F5;
}

.sidePlus::before, .sidePlus::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease;
}

.sidePlus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.sidePlus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.sidePlus.open::after {
  transform: translateX(-50%) rotate(90deg);
}

.h30 {
  height: 30px;
}

@media (min-width: 640px){
  .sideItem { /*メニューアイコン*/
    /*基本の形*/
    width: 45px;
    height: 210px;
    line-height: 45px;
  }
}

@media (min-width: 641px){
  .sideItem {
    font-size: 13px;
    font-weight: bold;
  }
  .sideItem:hover {
    background-color: #fff;
    color: #083E8E;
  }
}

/*# sourceMappingURL=noruca.css.map*/