/* CSS Document */
section.about_text_area{
  padding: var(--headerHeight) 0;
  background-color: #fff;
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.about_text_area{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] section.about_text_area{
  padding: var(--headerHeight) 7.5vw;
}
body[wc-view-type="tb-l"] section.about_text_area{
  padding: var(--headerHeight) 10vw;
}
section.about_text_area div.a_text_title{
  display: table;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.about_text_area div.a_text_title.wcvisible{
  transform: translateY(0);
  opacity: 1
}
body[wc-view-type="sp"] section.about_text_area div.a_text_title{
  margin-bottom: 1.8rem;
  text-align: left;
}
body[wc-view-type="tb"] section.about_text_area div.a_text_title{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] section.about_text_area div.a_text_title{
  margin-bottom: 2.25rem;
}
body[wc-view-type="pc"] section.about_text_area div.a_text_title{
  margin-bottom: 2.25rem;
}
section.about_text_area div.a_text_title h1{
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}
body[wc-view-type="sp"] section.about_text_area div.a_text_title h1,
body[wc-view-type="tb"] section.about_text_area div.a_text_title h1{
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
section.about_text_area div.a_text_title > p{
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}
body:not([wc-view-type="sp"]) section.about_text_area div.a_text_title > p br{
  display: none;
}
section.about_text_area div.a_text_title > p span.under_line{
  position: relative;
  z-index: 1;
}
section.about_text_area div.a_text_title > p span.under_line::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(transparent 75%, #ecca5d 75%);
  -webkit-transition: opacity 500ms 800ms ease,transform 500ms 800ms ease;
  transition: opacity 500ms 800ms ease,transform 500ms 800ms ease;
  width: 0;
  z-index: -1;
}
section.about_text_area div.a_text_title.wcvisible > p span.under_line::before{
  right: 0;
  width: 100%;
}
section.about_text_area div.a_text_title > p span.under_line span.big{
  color: #333;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1em;
}
section.about_text_area div.a_text_wrap{
  display: flex;
}
body:not([wc-view-type="pc"])  section.about_text_area div.a_text_wrap{
  flex-direction:column-reverse;
  align-items: center;
}
body[wc-view-type="pc"] section.about_text_area div.a_text_wrap{
  width: 1100px;
  margin: 0 auto;
  align-items: center;
}
section.about_text_area div.a_text_wrap div.about_text_box{
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.about_text_area div.a_text_wrap div.about_text_box{
  margin-top: 1rem;
}
body[wc-view-type="tb"] section.about_text_area div.a_text_wrap div.about_text_box,
body[wc-view-type="tb-l"] section.about_text_area div.a_text_wrap div.about_text_box{
  margin-top: 1.5rem;
}
body[wc-view-type="pc"] section.about_text_area div.a_text_wrap div.about_text_box{
  width: 60%;
  padding-right: 3rem;
  padding-top: 1rem;
}
section.about_text_area div.a_text_wrap div.about_text_box > p{
  margin-bottom: 1rem;
  line-height: 1.8rem;
  color: #333;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.about_text_area div.a_text_wrap div.about_text_box > p.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
section.about_text_area div.a_text_wrap figure{
  -webkit-transition: opacity 800ms linear;
  transition: opacity 800ms linear;
  opacity: 0;
}
section.about_text_area div.a_text_wrap figure.wcvisible{
  opacity: 1;
}
body[wc-view-type="sp"] section.about_text_area div.a_text_wrap figure{
  width: 55%;
}
body[wc-view-type="tb"] section.about_text_area div.a_text_wrap figure{
  width: 40%;
}
body[wc-view-type="tb-l"] section.about_text_area div.a_text_wrap figure{
  width: 35%;
}
body[wc-view-type="pc"] section.about_text_area div.a_text_wrap figure{
  width: 40%;
}
section.about_text_area div.a_text_wrap figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
section.about_text_area div.a_text_wrap figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*会社概要*/
section.outline{
  padding: var(--headerHeight) 0;
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.outline{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] section.outline{
  padding: var(--headerHeight) 7.5vw;
}
body[wc-view-type="tb-l"] section.outline{
  padding: var(--headerHeight) 10vw;
}
section.outline h1{
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.outline h1.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
section.outline h1::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2px;
  bottom: 0;
  background-color: #00a79e;
}
body[wc-view-type="sp"] section.outline > h1{
  margin-bottom: 1.8rem;
}
body[wc-view-type="tb"] section.outline > h1{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] section.outline > h1{
  margin-bottom: 2.25rem;
}
body[wc-view-type="pc"] section.outline > h1{
  margin-bottom: 2.25rem;
}
section.outline div.outline_wrap{
}
body[wc-view-type="pc"] section.outline div.outline_wrap{
  width: 800px;
  margin: 0 auto;
}
section.outline div.outline_wrap > dl{
  display: flex;
  border-top: 1px solid #bbb;
  margin-bottom: 1rem;
  background-color: #efefef;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.outline div.outline_wrap > dl.wcvisible{
  transform: translateY(0);
  opacity: 1;
}
section.outline div.outline_wrap > dl:last-of-type{
  margin-bottom: 0;
}
body[wc-view-type="sp"] section.outline div.outline_wrap > dl{
  flex-direction: column;
}
body[wc-view-type="pc"] section.outline div.outline_wrap > dl{
  margin-bottom: 1rem;
}
body:not([wc-view-type="sp"]) section.outline div.outline_wrap > dl{
  align-items: center;
}
section.outline > dl dt{
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  font-weight: 700;
}
body[wc-view-type="sp"] section.outline div.outline_wrap > dl dt{
  border-bottom: 1px dashed #bbb;
  padding: 0.85rem 1rem;
  font-weight: 700;
}
body:not([wc-view-type="sp"]) section.outline div.outline_wrap > dl dt{
  width: 220px;
  padding: 0 1rem;
  box-sizing: border-box;
}
section.outline div.outline_wrap > dl dd{
  background-color: #fff;
  box-sizing:border-box;
  padding: 0.85rem 1rem;
}
body[wc-view-type="sp"] section.outline div.outline_wrap > dl dd{
  width: 100%;
  padding: 0.85rem 1rem;
}
body:not([wc-view-type="sp"]) section.outline div.outline_wrap > dl dd{
  width: calc(100% - 220px);
}
/*沿革*/
section.history{
  padding: var(--headerHeight) 0;
  background-color: #fff;
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.history{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] section.history{
  padding: var(--headerHeight) 7.5vw;
}
body[wc-view-type="tb-l"] section.history{
  padding: var(--headerHeight) 10vw;
}
section.history h1{
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.history h1.wcvisible{
  transform: translateY(0);
  opacity: 1;
}
section.history h1::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2px;
  bottom: 0;
  background-color: #00a79e;
}
body[wc-view-type="sp"] section.history > h1{
  margin-bottom: 1.8rem;
}
body[wc-view-type="tb"] section.history > h1{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] section.history > h1{
  margin-bottom: 2.25rem;
}
body[wc-view-type="pc"] section.history > h1{
  margin-bottom: 2.25rem;
}
section.history div.history_block{
}
body[wc-view-type="pc"] section.history div.history_block{
  width: 800px;
  margin: 0 auto;
}
section.history div.history_block > dl{
  display: flex;
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 1.5rem 0; 
  border-bottom: 1px solid #00a79e;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(-0.5rem);
  opacity: 0;
}
section.history div.history_block > dl.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
body[wc-view-type="tb-l"] section.history div.history_block > dl,
body[wc-view-type="pc"] section.history div.history_block > dl{
}
section.history div.history_block > dl::before,
section.history div.history_block > dl::after{
  content: "";
  position: absolute;
  z-index: 2;
}
section.history div.history_block > dl::before{
  width: 0.85rem;
  height: 0.85rem;
  top: -0.9rem;
  left: -0.47rem;
  border-right: 2px solid #00a79e;
  border-bottom: 2px solid #00a79e;
  -webkit-transition: opacity 800ms 800ms linear,transform 800ms 800ms linear;
  transition: opacity 800ms 800ms linear,transform 800ms 800ms linear;
  transform: translateY(-0.15rem) rotate(45deg);
  opacity: 0;
}
section.history div.history_block > dl.wcvisible::before{
  transform: translateY(0) rotate(45deg);
  opacity: 1;
}
body[wc-view-type="sp"] section.history div.history_block > dl::before{
  top: -1.1rem;
}
body:not([wc-view-type="sp"])  section.history div.history_block > dl::before{
  width: 1rem;
  height: 1rem;
  top: -1.2rem;
  left: -0.5rem;
}
section.history div.history_block > dl:nth-of-type(1)::before{
  display: none;
}
section.history div.history_block > dl::after{
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background-color: #00a79e;
  -webkit-transition: opacity 800ms 500ms linear;
  transition: opacity 800ms linear,transform;
}
section.history div.history_block > dl.wcvisible::after{
  bottom: 0;
  height: 100%;
}
body:not([wc-view-type="sp"])  section.history div.history_block > dl::after{
  left: 0;
}
body[wc-view-type="sp"] section.history div.history_block > dl{
  flex-direction: column;
}
section.history div.history_block > dl dt,
section.history div.history_block > dl dd{
  padding-left: 1rem;
  box-sizing: border-box;
}
section.history div.history_block > dl dt{
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 0.5rem;
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.history div.history_block > dl dt{
  border-bottom: 1px dashed #00a79e;
}
body[wc-view-type="tb-l"] section.history div.history_block > dl dt,
body[wc-view-type="pc"] section.history div.history_block > dl dt{
  width: 150px;
  padding-left: 2rem;
}
section.history div.history_block > dl dt span{
  font-size: 1rem;
  font-weight: 700;
}
section.history div.history_block > dl dd{
  padding-top: 0.5rem;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"])  section.history div.history_block > dl dd{
  width: calc(100% - 150px);
  padding-left: 2rem;
}
/*アクセス*/
section.access{
  padding: var(--headerHeight) 0;
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.access{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] section.access{
  padding: var(--headerHeight) 7.5vw;
}
body[wc-view-type="tb-l"] section.access{
  padding: var(--headerHeight) 10vw;
}
section.access > h1{
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.access > h1.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
section.access > h1::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2px;
  bottom: 0;
  background-color: #00a79e;
}
body[wc-view-type="sp"] section.access > h1{
  margin-bottom: 1.8rem;
}
body[wc-view-type="tb"] section.access > h1{
  margin-bottom: 2rem;
}
body[wc-view-type="tb-l"] section.access > h1{
  margin-bottom: 2.25rem;
}
body[wc-view-type="pc"] section.access > h1{
  margin-bottom: 2.25rem;
}
section.access div.access_block{
  display: flex;
}
body[wc-view-type="pc"] section.access div.access_block{
  width: 1100px;
  margin: 0 auto;
}
body[wc-view-type="sp"] section.access div.access_block,
body[wc-view-type="tb"] section.access div.access_block{
  flex-direction: column;
}
section.access div.access_block > article{
  background-color: #fff;
  display: flex;
  padding: 1rem;
  box-sizing: border-box;
  -webkit-transition: opacity 800ms linear,transform 800ms linear;
  transition: opacity 800ms linear,transform 800ms linear;
  transform: translateY(1rem);
  opacity: 0;
}
section.access div.access_block > article.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
body[wc-view-type="sp"] section.access div.access_block > article{
  flex-direction: column;
  margin-bottom: 1rem;
}
body[wc-view-type="tb"] section.access div.access_block > article{
  margin-bottom: 1rem;
}
body[wc-view-type="tb-l"] section.access div.access_block > article{
  width: calc(50% - 0.5rem);
}
body[wc-view-type="pc"] section.access div.access_block > article{
  width: calc(50% - 1rem);
}
body[wc-view-type="tb-l"] section.access div.access_block > article:nth-of-type(odd){
  margin-right: 0.5rem;
}
body[wc-view-type="tb-l"] section.access div.access_block > article:nth-of-type(even){
  margin-left: 0.5rem;
}
body[wc-view-type="pc"] section.access div.access_block > article:nth-of-type(odd){
  margin-right: 1rem;
}
body[wc-view-type="pc"] section.access div.access_block > article:nth-of-type(even){
  margin-left: 1rem;
}
body[wc-view-type="sp"] section.access div.access_block > article:last-of-type,
body[wc-view-type="tb"] section.access div.access_block > article:last-of-type{
  margin-bottom: 0;
}
section.access div.access_block > article div.access_text{
  padding-bottom: 0.5rem;
}
body[wc-view-type="sp"] section.access div.access_block > article div.access_text{
}
body:not([wc-view-type="sp"]) section.access div.access_block > article div.access_text{
  width: 50%;
}
section.access div.access_block > article div.access_text > h1{
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0 1rem 0.5rem 1rem;
  border-bottom: 1px solid #00a79e;
}
section.access div.access_block > article div.access_text > div.address{
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0 0.5rem;
}
section.access div.access_block > article div.access_text > div.address span{
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
section.access div.access_block > article div.access_text > div.tel,
section.access div.access_block > article div.access_text > div.fax{
  padding: 0 0.5rem 0.5rem 0.5rem;
  box-sizing: border-box;
}
section.access div.access_block > article div.access_text > div.tel{
}
section.access div.access_block > article div.access_text > div.tel a{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  color: #333;
}
body:not([wc-view-type="sp"]) section.access div.access_block > article div.access_text > div.tel a{
  pointer-events: none;
}
section.access div.access_block > article div.access_text > div.tel a::before{
  content: "";
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #00a79e;
}
section.access div.access_block > article div.access_text > div.fax{
}
section.access div.access_block > article div.access_text > div.fax p{
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
section.access div.access_block > article div.access_text > div.fax p::before{
  content: "";
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: url("/img/svg/fax.svg?202305171548");
  mask-image: url("/img/svg/fax.svg?202305171548");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #00a79e;
}
section.access div.access_block > article div.map{
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] section.access div.access_block > article div.map{
  height: 45vw;
}
body[wc-view-type="tb"] section.access div.access_block > article div.map{
  height: 200px;
  width: calc(50% - 1rem);
  margin-left: 1rem;
}
body[wc-view-type="tb-l"] section.access div.access_block > article div.map{
  height: 200px;
  width: calc(50% - 1rem);
  margin-left: 1rem;
}
body[wc-view-type="pc"] section.access div.access_block > article div.map{
  height: 200px;
  width: calc(50% - 1rem);
  margin-left: 1rem;
}
section.access div.access_block > article div.map iframe{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
/*管理ページdl*/
dl.kanri_box{
  flex-direction: column!important;
}
dl.kanri_box dt{
  width: 100% !important;
  border-bottom: 1px dashed #bbb !important;
  padding: 0.85rem 1rem !important;
  font-weight: 700 !important;
}
body[wc-view-type="sp"] dl.kanri_box dt{
  width: auto !important;
}
dl.kanri_box dd{
  width: 100% !important;
  padding: 0.85rem 1rem !important;
}
/*管理画面2ページ目以降のボタン*/
center{
  display: table;
  margin: 0 auto;
  margin-top: 1rem;
}
center input{
  background-color: #00a79e;
  color: #fff;
  text-align: center;
  line-height: 2.5em;
  border-radius: 0.75rem;
  padding: 0 2.5rem;
  border: none;
  font-size: 1.2rem;
}