@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');
* {
  box-sizing: border-box;
}

:root {
  --font-primary: "M PLUS 1", sans-serif;
  --color-primary: #4d4d4d;
  --color-black: #000;
  --color-white: #fff;
  --color-beige: #f5f1e9;
  --color-org: #ff9900;
  --color-gray: #cccccc;
  --color-gray02: #bfbfbf;
  --color-brown: #513112;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: normal;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 1100px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #wrapper {
    min-width: 320px;
  }
}

.container {
  box-sizing: border-box;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1366px) {
  .container {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 4%;
  }
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: var(--color-primary);
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

a {
  color: var(--color-primary);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.4s;
  }
  a:hover {
    text-decoration: none;
  }
}

/*====================================================================================
■ CLEAR FLOAT
====================================================================================*/
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*■.FLEX*/
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-jus-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.flex-jus-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.flex-jus-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

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

.flex-jus-around {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.flex-jus-ini {
  display: flex;
  flex-wrap: wrap;
  justify-content: initial;
}

/*align-items*/
.align-item-start {
  align-items: flex-start;
}

.align-item-end {
  align-items: flex-end;
}

.align-item-stretch {
  align-items: stretch;
}

.align-item-baseline {
  align-items: baseline;
}

.align-item-center {
  align-items: center;
}

.align-item-ini {
  align-items: initial;
}

.flex-container {
  flex-wrap: wrap;
}

/*====================================================================================
■.OTHER
====================================================================================*/
.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-underline {
  text-decoration: underline;
}

.text-none-underline {
  text-decoration: none;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

/*====================================================================================
■.MARGIN
====================================================================================*/
/*---------- TOP ----------*/
.mt10 {
  margin-top: 1rem;
}

.mt15 {
  margin-top: 1.5rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt25 {
  margin-top: 2.5rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt35 {
  margin-top: 3.5rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt45 {
  margin-top: 4.5rem;
}

.mt50 {
  margin-top: 5rem;
}

.mt55 {
  margin-top: 5.5rem;
}

.mt60 {
  margin-top: 6rem;
}

.mt65 {
  margin-top: 6.5rem;
}

/*---------- BOTTOM ----------*/
.mb10 {
  margin-bottom: 1rem;
}

.mb15 {
  margin-bottom: 1.5rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb25 {
  margin-bottom: 2.5rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb35 {
  margin-bottom: 3.5rem;
}

.mb40 {
  margin-top: 4rem;
}

.mb45 {
  margin-top: 4.5rem;
}

.mb50 {
  margin-top: 5rem;
}

.mb55 {
  margin-top: 5.5rem;
}

.mb60 {
  margin-top: 6rem;
}

.mb65 {
  margin-top: 6.5rem;
}

/*---------- RIGHT ----------*/
.mr10 {
  margin-right: 1rem;
}

.mr15 {
  margin-right: 1.5rem;
}

.mr20 {
  margin-right: 2rem;
}

.mr25 {
  margin-right: 2.5rem;
}

.mr30 {
  margin-right: 3rem;
}

.mr35 {
  margin-right: 3.5rem;
}

/*---------- LEFT ----------*/
.ml10 {
  margin-left: 1rem;
}

.ml15 {
  margin-left: 1.5rem;
}

.ml20 {
  margin-left: 2rem;
}

.ml25 {
  margin-left: 2.5rem;
}

.ml30 {
  margin-left: 3rem;
}

.ml35 {
  margin-left: 3.5rem;
}

/*====================================================================================
■.CM CSS
====================================================================================*/
.error {
  color: #f00;
}

.btn__access {
  color: var(--color-white);
  text-decoration: none !important;
  display: inline-block;
  background: url("../images/common/icon-pin-white.png") center left no-repeat;
  padding-left: 2rem;
  margin-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .btn__access:hover {
    opacity: 0.8;
  }
}

.cm__tel {
  font-size: 2.6rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  font-weight: bold;
}
.cm__tel-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url("../images/common/icon-tel.png") center center no-repeat var(--color-white);
  border-radius: 5px;
  margin-right: 1rem;
}
.cm__tel-icon--brown {
  background: url("../images/common/icon-tel-white.png") center center no-repeat var(--color-brown);
  width: 36px;
  height: 36px;
}
.cm__tel--brown {
  font-size: 3.5rem;
  color: var(--color-brown);
}
.cm__btn01-link {
  background-image: linear-gradient(#796149, #533315);
  border-radius: 7px;
  display: inline-block;
  color: var(--color-white);
  min-width: 192px;
  text-align: center;
  padding: 1rem 2.5rem;
  text-decoration: none !important;
  position: relative;
}
.cm__btn01-link:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid var(--color-white);
  border-radius: 7px;
  opacity: 0.7;
}
.cm__btn01-link .cm__arrow {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .cm__btn01-link:hover {
    opacity: 0.8;
  }
}
.cm__arrow {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: relative;
  background-color: var(--color-white);
  display: inline-block;
}
.cm__arrow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  right: 0;
  bottom: 0;
  margin: auto;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid var(--color-brown);
  width: 0;
  height: 0;
}
.cm__arrow--brown {
  background-color: var(--color-brown);
}
.cm__arrow--brown:after {
  border-left: 5px solid var(--color-white);
}
.cm__arrow--pink:after {
  border-left: 5px solid #a84062;
}

.clr__org {
  color: var(--color-org);
}
.clr__black {
  color: var(--color-black);
}

.bold {
  font-weight: bold;
}

.tbl-worktime {
  width: 100%;
  line-height: 1.6;
}
.tbl-worktime thead th {
  background-color: #f6f0da;
  font-weight: bold;
  padding: 1rem 0.5rem;
  border: 1px solid var(--color-white);
}
.tbl-worktime thead th:nth-last-child(-n+2) {
  background-color: #d6e3f7;
  color: #3a49df;
}
.tbl-worktime thead th:last-child {
  background-color: #f6d4ca;
  color: #df7171;
}
@media only screen and (max-width: 767px) {
  .tbl-worktime thead th {
    font-size: 1.2rem;
  }
}
.tbl-worktime tbody td {
  text-align: center;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--color-gray);
}
.tbl-worktime tbody td:not(:first-child) {
  color: var(--color-org);
}
.tbl-worktime tbody td .line {
  color: var(--color-black);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .tbl-worktime tbody td {
    font-size: 1.2rem;
  }
}

/*====================================================================================
■.HEADER
====================================================================================*/
#cm-header .logo-bg a {
  background: url("../images/common/bg-logo.png") center center no-repeat;
  background-size: cover;
  display: block;
  padding: 1.5rem 1.5rem 0.2rem;
  border-radius: 0 0 8px 8px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #cm-header .logo-bg a {
    padding: 0;
    background: none;
  }
}

.cm-header {
  padding-left: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}
.cm-header__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cm-header__infor {
  padding: 2px 0;
}
.cm-header__infor-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}
@media only screen and (max-width: 767px) {
  .cm-header {
    background: url(../images/common/bg-logo2.png) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: fixed;
    z-index: 9999;
  }
  .cm-header__logo {
    max-width: 60%;
    position: relative;
    z-index: 102;
  }
  .cm-header__logo a {
    background: none;
    padding: 0;
  }
  .cm-header__infor-contact {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #head.l-headMin {
    min-width: 100%;
    height: 71px;
  }
  #head .l-headMin_bg {
    min-width: 100%;
    display: none;
  }
}
#head .cm-header__inner {
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 2rem;
}
@media only screen and (max-width: 767px) {
  #head .cm-header__inner {
    align-items: center;
    padding: 2rem 1rem;
  }
}
#head .cm__tel {
  font-size: 2rem;
  line-height: 1;
}
#head .cm__tel-icon {
  width: 24px;
  height: 24px;
  background-size: 13px;
}
#head .gnav {
  background: none;
  padding: 0;
}
#head .gnav li > * {
  line-height: 1;
}
#head .gnav a {
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    transition: all 0.5s;
    background-color: var(--color-brown) !important;
    overflow-y: auto;
    padding-bottom: 24rem;
    opacity: 0;
    visibility: hidden;
  }
  nav.opened {
    opacity: 1;
    visibility: visible;
  }
}
.gnav {
  display: flex;
  align-items: center;
  border-radius: 10px 0 0 10px;
  background-image: linear-gradient(#796149, #482b0f);
  padding: 0.5rem 1rem;
}
.gnav li {
  margin: 0 1rem;
}
.gnav li a, .gnav li span {
  text-decoration: none;
  display: inline-block;
  padding: 0.35rem;
  color: var(--color-white) !important;
}
.gnav .dropdown-menu {
  position: relative;
}
.gnav .dropdown-menu span {
  position: relative;
  display: inline-block;
  padding-right: 2rem;
}
.gnav .dropdown-menu span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  margin: auto;
  width: 0;
  height: 0;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.gnav .dropdown-menu a {
  padding: 1rem;
}
.gnav a {
  border: 1px solid transparent;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .gnav a:hover {
    opacity: 0.8;
    border-bottom-color: var(--color-white);
  }
}
@media only screen and (max-width: 767px) {
  .gnav {
    display: block;
    background-color: var(--color-brown) !important;
    transition: transform 0.2s linear;
    padding: 0 !important;
    border-radius: 0;
  }
  .gnav li {
    border-bottom: 1px solid var(--color-white);
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.7rem 2rem;
  }
  .gnav a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .gnav span {
    display: block;
    width: 100%;
  }
  .gnav span.active:After {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}

.dropdown-menu {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .dropdown-menu:hover .dropdown {
    opacity: 1;
    visibility: visible;
  }
}

.dropdown {
  z-index: 9999;
}
.dropdown ul {
  background-color: var(--color-brown);
}
.dropdown a {
  display: block;
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid var(--color-white);
}
.dropdown li:last-child a {
  border: none;
}
.dropdown .cm__arrow {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    transform: translateX(-9rem);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .dropdown {
    width: 100%;
    display: none;
  }
  .dropdown a {
    border: none;
    padding: 0.2rem;
  }
  .dropdown li:last-child {
    border: none;
  }
}

@media only screen and (max-width: 767px) {
  .btn-header-sp {
    display: flex !important;
    position: fixed;
    top: 15px;
    right: 10px;
    z-index: 102;
  }
  .btn-header-sp .cm__tel-icon {
    width: 40px;
    height: 40px;
  }
}
.trigger-menu {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  z-index: 9999;
  background-color: var(--color-white);
  border-radius: 5px;
}

.trigger-menu span {
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--color-brown);
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.trigger-menu span:nth-child(1) {
  top: 10px;
  transform-origin: left center;
}

.trigger-menu span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
}

.trigger-menu span:nth-child(3) {
  bottom: 10px;
  transform-origin: left center;
}

.trigger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 7px;
  top: 10px;
}

.trigger-menu.active span:nth-child(2) {
  opacity: 0;
}

.trigger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 7px;
  bottom: 10px;
}

@media screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}
/*====================================================================================
■.FOOTER
====================================================================================*/
.sec-access {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec-access__infor {
  width: 50%;
  padding: 5rem 2rem;
  display: flex;
  justify-content: flex-end;
}
.sec-access__infor-inner {
  max-width: 535px;
}
.sec-access__infor-logo {
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-brown);
  justify-content: space-between;
}
.sec-access__infor-logo p {
  margin-left: 1rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .sec-access__infor-logo {
    justify-content: center;
  }
  .sec-access__infor-logo img {
    max-width: 70%;
  }
  .sec-access__infor-inner{
    max-width: 100%;
  }
}
.sec-access__infor-contact {
  justify-content: space-between;
}
.sec-access__infor-contact p {
  line-height: 1.6;
}
.sec-access__infor-contact .cm__tel {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .sec-access__infor-contact {
    gap: 10px;
  }
  .sec-access__infor-contact .cm__tel {
    font-weight: bold;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-access__infor {
    width: 100%;
    display: block;
  }
}
.sec-access .tbl-worktime__note {
  margin: 1rem 0 2rem;
  line-height: 1.6;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
  .sec-access .tbl-worktime__note {
    flex-wrap: wrap;
  }
}
.sec-access .tbl-worktime__note p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .sec-access .tbl-worktime__note .cm__btn01 {
    margin: auto;
    display: block;
    margin-top: 2rem;
  }
}
.sec-access .tbl-worktime__note .cm__btn01-link {
  min-width: 160px;
  font-size: 1.4rem;
}
.sec-access__map {
  width: 48.7%;
}
.sec-access__map iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .sec-access__map {
    width: 100%;
    height: 300px;
  }
}

.travel-time__box {
  background-color: var(--color-beige);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  min-height: 110px;
}
.travel-time__box:last-child {
  margin-bottom: 0;
}
.travel-time__box:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 15px;
  border: 1px solid var(--color-gray);
}
.travel-time__box-icon {
  width: 100px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.travel-time__box-decs {
  border-left: 1px solid var(--color-gray);
  padding-left: 2rem;
  position: relative;
}
.travel-time__box-decs:after {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  background-color: var(--color-brown);
  border: 3px solid var(--color-beige);
  transform: rotate(45deg);
}
.travel-time__box-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.6rem !important;
}
.travel-time__box p {
  font-size: 1.4rem;
}

.cm-footer {
  background: url("../images/top/bg-footer.png") center center no-repeat;
  background-size: cover;
  padding: 5rem 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cm-footer {
    padding-top: 3rem;
  }
}
.cm-footer__menu {
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}
.cm-footer__menu li {
  margin-bottom: 0.7rem;
}
.cm-footer__menu a {
  text-decoration: none;
  color: var(--color-white);
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .cm-footer__menu a:hover {
    opacity: 0.8;
  }
}
.cm-footer__menu .cm__arrow {
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .cm-footer__menu {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .cm-footer__menu ul {
    width: 48%;
    margin-bottom: 2rem;
  }
  .cm-footer__menu a {
    font-size: 1.2rem;
  }
}

.copyright {
  background-color: rgba(52, 29, 8, 0.5);
  text-align: center;
  color: var(--color-white);
  font-size: 1.2rem;
  padding: 1.3rem;
}

.page-up a {
  background-color: var(--color-brown);
}
.page-up a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.l-fixed {
  position: fixed;
  top: 50vh;
  right: 0;
  z-index: 100;
  transition: transform 0.2s linear;
  transform: translate(600px, -50%);
}

.l-fixed:hover {
  transform: translate(0, -50%) !important;
}

.l-fixed.is-visible {
  transform: translate(552px, -50%);
}

.l-headMin {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  min-width: 1200px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.l-headMin.is-visible{
  opacity: 1;
  visibility: visible;
}
.l-headMin_bg {
  min-width: 1200px;
  width: 100%;
  background: rgba(81, 49, 18, 0.8);
  transition: transform 0.2s linear;
  transform: translateY(-100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.l-headMin.is-visible .l-headMin_bg {
  transform: translateY(0);
}

/* #pagetopAnchor
------------------------------------- */
:root {
  --pta-offset:16;
}

.l-pagetopanchor {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 0;
}

.l-pagetopanchor.is-uninitialized {
  display: none;
}

.l-pagetopanchor.is-fixed {
  position: fixed;
  top: auto;
  bottom: 0;
}

.l-pagetopanchor_btn {
  position: absolute;
  top: -16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear 0s, transform 0.3s ease-in-out;
  transform: translateY(100%) scale(0.5);
}

@media (hover: hover) {
  .l-pagetopanchor_btn:hover {
    background: #090909;
  }
}
.is-visible .l-pagetopanchor_btn {
  opacity: 1;
  transform: translateY(-100%) scale(1);
}

.sidebar-worktime {
  display: flex;
  background-color: #5a3a19;
  align-items: center;
  justify-content: center;
  width: 600px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .sidebar-worktime {
    display: none;
  }
}
.sidebar-worktime__title {
  writing-mode: vertical-lr;
  padding-bottom: 10rem;
  position: relative;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  font-size: 2rem;
  letter-spacing: 6px;
  font-size: 1.6rem;
}
.sidebar-worktime__flex {
  background-color: var(--color-white);
  width: calc(100% - 45px);
  padding: 10px;
}
.sidebar-worktime__infor {
  justify-content: space-between;
  margin-top: 1rem;
}
.sidebar-worktime .tbl-worktime__note {
  font-size: 1.4rem;
  line-height: 1.6;
}
.sidebar-worktime .cm__btn01-link {
  min-width: 160px;
}

.fw800 {
  font-weight: 800;
}
.icon-link{
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 1px solid #333;
  position: relative;
  margin-left: 7px;
  margin-bottom: 2px;
}
.icon-link:After{
  content: '';
  position: absolute;
  left:-4px;
  bottom: -4px;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
}