@charset "utf-8";

:root {
    /* タイトル等の文字色 */
    --color01: #aac9eb;
    --color02: #7ea9d5;
    --color03: #a5967d;
    --color04: #5b8ec2;
  }

html {
  font-size: 62.5%;
}

body {
  font-family: 'M PLUS 1 Code', sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.8em;
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}

p {
  line-height: 2;
}

li {
  list-style-type: none;
}

/* フォントのギザギザ調整 */
/* p, a, li, dt, dd, h1, h2, h3, h4, h5 {
  transform: rotate(0.03deg);
} */


/* 画像中央配置 */
.img-center {
  text-align: center;
}

.img-center img {
  display: inline-block;
}

/* レスポンシブテキスト （文章で使用）*/
.text-sm {
  font-size: clamp(14px, 16 / 1200 * 100vw, 16px)!important;
}

.text-md {
  font-size: clamp(16px, 18 / 1200 * 100vw, 18px)!important;
}

.text-md2 {
  font-size: clamp(14px, 18 / 1200 * 100vw, 18px)!important;
}

.text-lg {
  font-size: clamp(16px, 20 / 1200 * 100vw, 20px)!important;
}

.text-big {
  font-size: clamp(20px, 20 / 1200 * 100vw, 22px)!important;
}

.text-medium {
  font-weight: 600;
}

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

/* ▼ここからパーツごとのcss
メディアクエリもパーツごとに記載
================================*/

/*================================

共通

================================*/

/*margin-bottom
================================*/
.mb0{
	margin-bottom:0 !important;
}
.mb10{
	margin-bottom:10px !important;
}
.mb15{
	margin-bottom:15px !important;
}
.mb20{
	margin-bottom:20px !important;
}
.mb25{
	margin-bottom:25px !important;
}
.mb30{
	margin-bottom:30px !important;
}
.mb40{
	margin-bottom:40px !important;
}
.mb50{
	margin-bottom:50px !important;
}
.mb60{
	margin-bottom:60px !important;
}
.mb70{
	margin-bottom:70px !important;
}
.mb80{
	margin-bottom:80px !important;
}
.mb90{
	margin-bottom:90px !important;
}
.mb100{
	margin-bottom:100px !important;
}

/* 背景
================================*/

.anchor-link {
	display: block;
	transform: translateY(-120px);
}

/* ブロック要素、インライン要素
================================*/
.inline-block {
	display: inline-block;
}
.block {
	display: block;
}
.block_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.block_right {
	display: block;
	margin-left: auto;
}
.block_left {
	display: block;
	margin-right: auto;
}
/* 文字
================================*/
.text_center {
	text-align: center !important;
}
.text_left {
	text-align: left !important;
}
.text_right {
	text-align: right !important;
}
/* 文字ウェイト
================================*/
/*Regular*/
.fw400 {
	font-weight: 400!important;
	vertical-align: baseline;
}
/*Medium*/
.fw500 {
	font-weight: 500!important;
	vertical-align: baseline;
}
/*Bold*/
.fw600 {
	font-weight: 600!important;
	vertical-align: baseline;
}
.fw700 {
	font-weight: 700!important;
	vertical-align: baseline;
}

/*文字カラー
================================*/
.fc-fff {
	color: #fff!important;
	vertical-align: baseline;
}
.fc-333 {
	color: #333!important;
	vertical-align: baseline;
}
.fc-df0000 {
	color: #df0000!important;
	vertical-align: baseline;
}
.fc--color01 {
	color: var(--color01)!important;
	vertical-align: baseline;
}
.fc--color02 {
	color: var(--color02)!important;
	vertical-align: baseline;
}
.fc--color03 {
	color: var(--color03)!important;
	vertical-align: baseline;
}
.fc--color04 {
	color: var(--color04)!important;
	vertical-align: baseline;
}

/* 背景（コンテンツ幅）
================================*/
.bg-fff {
	background-color: #fff!important;
}
.bg-eee {
	background-color: #eee!important;
}
.bg-dedde3 {
	background-color: #dedde3!important;
}
.bg--color01 {
	background-color: var(--color01)!important;
}
.bg--color02 {
	background-color: var(--color02)!important;
}
.bg--color03 {
	background-color: var(--color03)!important;
}
.bg--color04 {
	background-color: var(--color04)!important;
}

.letter-spacing0 {
  letter-spacing: 0 !important;
}
.letter-spacing05 {
  letter-spacing: 0.5px !important;
}

.letter-spacing1 {
  letter-spacing: 1px !important;
}

.letter-spacing15 {
  letter-spacing: 1.5px !important;
}

.letter-spacing2 {
  letter-spacing: 2px !important;
}



/*================================

リンク位置調整

================================*/
.anchor-link {
  display: block;
  padding-top: 250px;
  margin-top: -250px;
}

@media screen and (max-width: 834px) {
  .anchor-link {}
}

@media screen and (max-width: 667px) {
  .anchor-link {
    padding-top: 50px;
    margin-top: -50px;
  }
}


/*=======================

    ヘッダー

  ========================*/
.h1 {
  font-size: clamp(12px, 14 / 1500 * 100vw, 14px);
  font-weight: 500;
  line-height: 1.5;
}

.header {
  position: relative;
  padding: 20px 130px 10px 40px;
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  column-gap: 20px;
}

.header_logo {
  text-align: center;
}

.header_logo a {
  display: inline-block;
}


.header_access {
  text-align: center;
}

.header_access-item {
  color: #003333;
  line-height: 1.5;
}
.header_access-item:nth-of-type(1) {
  font-size: clamp(12px, 14 / 1200 * 100vw, 14px);;
}

.header_contact {
  text-align: center;
}

.header_contact-heading {
}


.header_telephone-link {
  color: var(--color01);
  display: inline-block;
  padding-left: 30px;
  position: relative;
  font-size: clamp(20px, 30 / 1200 * 100vw, 30px);

  line-height: 1;
}

.header_telephone-link:before {
  content: "";
  background: url(./../img/header_telephone_icon.png)no-repeat center / contain;
  width: 19px;
  height: 19px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}


@media screen and (max-width: 1080px) {
  .header {
    padding: 20px 70px 20px 15px;
  }
  .header_container {
    column-gap: 0px;
  }

}

@media screen and (max-width: 900px) {

  .header {
    padding: 20px 90px 20px 30px;
}
  .header_logo {
    width: 35%;
    margin-inline: auto;
  }

}



@media screen and (max-width: 834px) {


  .header_logo {
    width: 40%;
  }



  
}

@media screen and (max-width: 667px) {

  .header {
padding: 15px 10px;
  }
 .header_access-item {
  font-size: 13px;
 }
 .header_container {
  flex-direction: column;
 }
 .header_logo {
  width: 60%;
  margin-inline: auto;
  margin-bottom: 5px;
 }
}

/*=======================

  グローバルメニュー
  ドロワーメニュー

========================*/
.drawer-menu {
position:fixed;
z-index: -1;
opacity: 0; 
  top: 0;
  left: 0;
  right: 0;
width:100%;
  height: 100vh;
background-color: rgba(244,243,242,0.94);
transition: .3s ease-out;
}

.drawer-menu.panelactive{
z-index:999;
width:100%;
height: 100vh;
visibility: visible;
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
.drawer-menu.panelactive .drawer-menu_content {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
} 


.drawer-menu_list-item {
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
opacity: 0;
}

.drawer-menu.panelactive .drawer-menu_list-item {
  animation-name: fadeListItem;
  animation-duration: .3s;
  animation-fill-mode: forwards;
}
.drawer-menu.panelactive .drawer-menu_list-item:nth-of-type(1) {
  animation-delay: .1s;
}
.drawer-menu.panelactive .drawer-menu_list-item:nth-of-type(2) {
  animation-delay: .2s;
}
.drawer-menu.panelactive .drawer-menu_list-item:nth-of-type(3) {
  animation-delay: .3s;
}
.drawer-menu.panelactive .drawer-menu_list-item:nth-of-type(4) {
  animation-delay: .4s;
}
.drawer-menu.panelactive .drawer-menu_list-item:nth-of-type(5) {
  animation-delay: .5s;
}

@keyframes fadeListItem {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.drawer-menu_list-item span.-jp,
.drawer-menu_list-item span.-en {
  padding: 0 50px;
}
.drawer-menu_list-item span.-jp {
  position: relative;
  font-size: clamp(20px, 32 / 1200 * 100vw, 32px);
  color: #444;
}

.drawer-menu_list-item span.-en {
  font-size: clamp(12px, 16 / 1200 * 100vw, 16px);
  color: var(--color04);
}

.drawer-menu_list-link {
  line-height: 1.4;
  display: inline-block;
  position: relative;
  }

.drawer-menu_list-link span.-jp:before,
.drawer-menu_list-link span.-jp:after {
  content: "";
  position: absolute;
  top: 0;
bottom: 0;
margin: auto;
}
.drawer-menu_list-link span.-jp:before {
  content: "";
  border-radius: 50%;
  width: 25px;
  height: 25px;
  right: 0;
  border: 1px solid #333;

}
.drawer-menu_list-link span.-jp:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--color02);
  right: 6px;
}

.drawer-menu_logo {
  text-align: center;
  /* position: absolute;
  left: 0;
  right: 0;
  top: 30px; */
}

.drawer-menu_logo img {
  display: inline-block;
}

.drawer-menu_content {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.drawer-menu_list {
  max-width: 500px;
  margin: auto;
  padding-top: 40px;
}


/* ドロワーのボタン */
.drawer-menu_button {
  position:fixed;
  z-index: 9999;
top:20px;
right: 50px;
}

.drawer-menu_button-icon {
cursor: pointer;
  width: 43px;
 height:43px;
 border-radius: 50%;
 border: 1px solid #333;
 background: #fff;
}

.drawer-menu_button-icon span {
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  transition: .3s ease-out;
}

.drawer-menu_button-icon span:nth-of-type(1) {
top: 19px;
background: var(--color02);
}
.drawer-menu_button-icon span:nth-of-type(2) {
  top: 26px;
  background: #333;
}

.drawer-menu_button.active .drawer-menu_button-icon span:nth-of-type(1) {
  top: 17px;
  transform: translateY(6px) rotate(-45deg);
}

.drawer-menu_button.active .drawer-menu_button-icon span:nth-of-type(2){
  top: 29px;
  transform: translateY(-6px) rotate(45deg);
}

/* ボタンテキスト */
.drawer-menu_button-text span.-close,
.drawer-menu_button.active .drawer-menu_button-text span.-menu {
display: none;
}
.drawer-menu_button.active .drawer-menu_button-text span.-close {
  display: block;
}

.drawer-menu_button-text {
text-align: center;
line-height: 1;
font-size: clamp(12px, 16 / 1200 * 100vw, 16px);
letter-spacing: 0;
}


/*サブメニュー関連*/
 .drawer-submenu_checkbox {
  display: none;
}

.drawer-menu_pulldown {
  display: inline-block;
  position: relative;
}
 .drawer-submenu_open {
    position: absolute;
    right: 120px;
    top: 10px;
    padding: 5px 8px;
  }

  .drawer-menu_pulldown-item {
    display: inline-block;
    line-height: 1.4;
  }


  /*サブメニューのボタン*/
 .drawer-submenu_open .drawer-submenu_icon {
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    border: 1px solid #333;
  }

.drawer-submenu_open .drawer-submenu_icon:before,
.drawer-submenu_open .drawer-submenu_icon:after{
    position: absolute;
    content: "";
    width: 12px;
    height: 2px;
    background:var(--color01);
    transition: .5s ease;
  }

  /*サブメニューのボタン（クリック前）*/
  .drawer-submenu_open .drawer-submenu_icon:before {
    top: 7px;
    right: 2px;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }

  .drawer-submenu_open .drawer-submenu_icon:after {
    top: 7px;
    left: 2px;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  /*サブメニューのボタン（クリック後）*/
  #drawer-submenu_input:checked~.drawer-submenu_open .drawer-submenu_icon::before {
    top: 12px;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  #drawer-submenu_input:checked~.drawer-submenu_open .drawer-submenu_icon::after {
    top: 12px;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }

  /*サブメニューコンテンツ*/
 .drawer-submenu_content {
    overflow: hidden;
     /* -webkit-transition: all 0.8s 0s ease;
    transition: all 0.8s 0s ease; */
    transition: .8s ease;
    max-height: 0;
  }

  /*サブメニューコンテンツ（チェック後）*/
  #drawer-submenu_input:checked~.drawer-submenu_content {
    max-height: 500px;
  }

  /*サブメニューの中身*/
 .drawer-submenu_list {
  background: #eee;
padding: 20px 0 10px;
display: flex;
flex-wrap: wrap;
  }

 .drawer-submenu_item {
    width: calc(100% / 2);
    margin-bottom: 10px;
  }


  .drawer-submenu_link {
    display: inline-block;
    color: #333;
    font-size: clamp(13px, 18 / 1200 * 100vw, 18px);
    line-height: 1.5;
    padding: 3px 25px 3px 0;
    position: relative;
    text-align: left;
  }

  .drawer-submenu_link:before,
.drawer-submenu_link:after {
  content: "";
  position: absolute;
  top: 0;
bottom: 0;
margin: auto;
}
  .drawer-submenu_link:before {
    content: "";
    border-radius: 50%;
    width: 18px;
    height: 18px;
    right: 0;
    border: 1px solid #333;
  
  }
  .drawer-submenu_link:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent var(--color02);
    right: 5px;
  }

  @media screen and (max-width: 1080px) {

    .drawer-menu_button {
      right: 30px;
    }

  


  }

  @media screen and (max-width: 834px) {
    .drawer-menu_pulldown-item,
    .drawer-menu_list-link {
      line-height: 1.2;

    }
    .drawer-menu_content {
      padding: 70px 0;
      display: block;
    }

  }



  @media screen and (max-width: 667px) {

    .drawer-menu_button {
      top: 10px;
      right: 10px;
    }

    .drawer-menu_logo {
width: 60%;
margin-inline: auto;
    }

    .drawer-menu_list-item {
      margin-bottom: 20px;
    }

    .drawer-submenu_open {
      top: 0;
      right: 90px;
    }
    .drawer-submenu_open .drawer-submenu_icon {
      width: 20px;
      height: 20px;
    }

    .drawer-submenu_open .drawer-submenu_icon:before, .drawer-submenu_open .drawer-submenu_icon:after {
      width: 8px;
    }

    .drawer-submenu_item {
      line-height: 1.2;
    }

    .drawer-menu_list-link span.-jp:before {
      width: 20px;
      height: 20px;
    }

    .drawer-menu_list-link span.-jp:after {
      border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent var(--color02);
    right: 5px;
    }
    .drawer-menu_list {
      max-width: 400px;
      margin: auto;
      padding-top: 40px;
  }
    
  }



/*=======================

診療時間表
（フッター、ヘッダーで使用）

========================*/
table {
  border-collapse: separate;
  border-spacing: 0;
}

.hours_table {
  border-collapse: separate;
  /* border-collapse: collapse; */
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  border: 1px solid #555555;
}

.hours_table-head {
  background: #555555;
}

.hours {
  width: 100%;
  max-width: 440px;
}

.hours_table_wrap {
  /* border-radius: 9px;
  border-radius: 8px 8px 16px 16px;
  border-radius: 8px 8px 12px 10px;
  background: #555555;
  overflow: hidden;
  border: 1px solid #555555; */
  margin-bottom: 5px;

}

.hours_table th,
.hours_table td {
  text-align: center;
  /* border: 1px solid transparent; */
}

.hours_table th:nth-of-type(1) {
  width: 30%;
  text-align: center;
}

.hours_table td {
  width: 8%;
}

.hours_table th {
  font-size: clamp(13px, 18 / 1024 * 100vw, 18px);
}

.hours_table th,
.hours_table td {
  text-align: center;
}

.hours_table .hours_table-am th,
.hours_table .hours_table-pm th {
  text-align: right;
  padding-right: 20px;
}

.hours_table-am {
  border-bottom: 1px solid #ccc;
}

.hours_table td {
  color: var(--color02);
  padding: 3px 5px;
}

.hours_table-am *,
.hours_table-pm * {
  background: #fff;
}

.hours_table td.-holiday {
  color: #333;
}

.hours_table-head th {
  color: #fff;
  padding: 3px 5px;
  /* background: #555555; */
  border: solid 1px #555;
  border-collapse: separate;
  border-spacing: 1px;
  
  box-shadow: 0 0 0px 1px #555;

}

.hours_table-head th:nth-of-type(1) {
  /* border-radius: 10px 0 0 0; */
  padding-left: 20px;
}

.hours_table-head th:last-child {
  /* border-radius: 0 10px 0 0; */
  /* padding-right: 20px; */
}

/* .hours_table-am td:last-child,
.hours_table-pm td:last-child {
  padding-right: 20px;
} */

.hours_table-pm th {
  border-radius: 0 0 0 10px;
}

.hours_table-pm td:last-child {
  border-radius: 0 0 10px 0;
}

.hours_text {
}


.hours_text-sunday span.-icon,
.hours_text-half-day span.-icon {
  color: var(--color02);
}

.hours_text-holiday span.-label {
  background: #333;
  color: #fff;
  padding: 2px 3px;
  margin-right: 5px;
}

/*
.hours_text-holiday {
  font-weight: 500;
} */
.hours_table-am th,
.hours_table-am td {
  border: none;
	border-collapse: collapse;
  border-bottom: 1px solid #ccc;
}


.hours_table td.-holiday {
  color: #333;
}

/* ヘッダー用
================================*/
.hours.-header .hours_text {
  font-size: clamp(13px, 16 / 1024 * 100vw, 16px);
  line-height: 1.4;
}

.hours.-header .hours_table-head th {
  border-bottom: 1px solid #333;
}

.hours.-header .hours_table-pm th,
.hours.-header .hours_table-pm td {
  border-bottom: 1px solid #333;
}

.hours.-header .hours_table-pm {
  border-right: 1px solid #333;
  border-left: 1px solid #333;
}

.hours.-header .hours_table-am td:last-child,
.hours.-header .hours_table-pm td:last-child {
  border-right: 1px solid #333;
}

.hours.-header .hours_table-am th,
.hours.-header .hours_table-pm th {
  border-left: 1px solid #333;
}

/* フッター用
================================*/
@media screen and (max-width: 1200px) {
  .hours.-header {
    width: 100%;
  }

  .hours.-header .hours_table .hours_table-am th,
  .hours.-header .hours_table .hours_table-pm th {
    text-align: right;
    padding-left: 5px;
    padding-right: 5px;
  }

  .hours.-header .hours_table-head th:nth-of-type(1) {
    padding-left: 5px;
  }

  .hours.-header .hours_table th:nth-of-type(1) {
    width: 23%;
    text-align: center;
  }
}

@media screen and (max-width: 667px) {

  /* .hours_table td {
    padding: ;
  } */
  .hours_table .hours_table-am th, .hours_table .hours_table-pm th {
    padding-left: 0;
    padding-right: 10px;
  }

  .hours_table-am td:last-child, .hours_table-pm td:last-child {
    /* padding-right: 10px; */
  }
}

/*=======================

フッター

========================*/
.footer {
  padding: 100px 0 0;
}

.footer_container {
  max-width: 1080px;
  padding: 0 40px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  -webkit-column-gap: 40px;
  column-gap: 40px;
  margin-bottom: 60px;
}

.footer_logo {
  margin-bottom: 10px;
}


.footer_left,
.footer_right {
width: calc(100% / 2 - 20px);
}




.footer_left-group1 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  /* padding-left: 30px; */
}

.footer_group1-left {
  margin-right: 20px;
  flex: 1;
}


.footer_access {

}

.footer_access-list {
 margin-bottom: 20px;
}

.footer_access-list-item {

}

.footer_telephone {

}

.footer_telephone-link {
  color: var(--color02);
  font-size: clamp(20px, 30 / 1024 * 100vw, 30px);

  display: inline-block;
  line-height: 1;
}

.footer_telephone span {
  position: relative;
  padding-left: 30px;
}

.footer_telephone span::before {
  content: "";
  background: url(./../img/footer_telephone_icon.png)no-repeat center left /contain;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 19px;
  height: 19px;
}



.footer_access-item {
position: relative;
text-align: center;
line-height: 1.5;
display: grid;
    place-content: center;
    width: 126px;
    height: 126px;
   font-size: 18px;
}

.footer_access-item::before {
  content: "";
  background: url(./../img/footer_access_deco.png) no-repeat center / contain;
  width: 126px;
  height: 126px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.footer_access-item span.-size-lg {
  /* font-size: clamp(20px, 24 / 1200 * 100vw, 24px); */
  font-size: 24px;
  line-height: 1;
}


/* グーグルマップ */

.footer_googlemap {
  margin-bottom: 40px;
}
.footer_googlemap iframe {
  width: 100%;
}

/* 地域情報 */
.footer_eria {
  margin-bottom: 30px;
}
.footer_eria-heading {
text-align: center;
margin-bottom: 20px;
font-size: clamp(18px, 24 / 1200 * 100vw, 24px);
color: var(--color02);
}

.footer_eria-heading span {
  padding: 0 150px;
  display: inline-block;
  position: relative;
}

.footer_eria-heading span:before,
.footer_eria-heading span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 10px;
  width: 126px;
}
.footer_eria-heading span:before {
  background: url(./../img/footer_eria_heading_deco_l.png) no-repeat center / contain;
  left: 0;
}
.footer_eria-heading span:after {
  background: url(./../img/footer_eria_heading_deco_r.png) no-repeat center / contain;
  right: 0;
}
.footer_eria-inner {
  max-width: 1400px;
  padding: 0 100px;
  margin-inline: auto;
}

.hours_text-sunday {
  float: right;
}

.g_calendar {
  max-width: 100%;
}

/* コピーライト */
.copyright {
  background: var(--color02);
  color: #fff;
  text-align: center;
}

.bnr_recruit {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}
.bnr_recruit img{
  margin: 40px auto 0;
  display: block;
  transition: 0.5s;
  position: relative;
}
.bnr_recruit img:hover{
  transform: translateX(10px);
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1080px) {

  .footer_access-list {
    text-align: center;
  }
 
  .footer_container {
    column-gap: 30px;
  }
  .footer_left, .footer_right {
    width: calc(100% / 2 - 15px);
}
  
  .footer_left-group1 {
    padding-left: 0;
  }

}

@media screen and (max-width: 834px) {

  .footer_group1 {
    flex-direction: column;
    max-width: 600px;
    margin-inline: auto;
  }
/*   
  .footer_group1-left {
    margin-bottom: 30px;
  } */

  .footer_logo {
    text-align: center;
  }

  .footer_logo img {
    display: inline-block;
  }


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

  .footer_container {
    flex-direction: column;
    padding: 0 20px;
  }

  .footer_left {
    margin-bottom: 20px;
  }

  .footer_left, .footer_right {
    max-width: 450px;
    width: 100%;
    margin-inline: auto;
  }

  .copyright {
    padding-bottom: 50px;
  }

}

@media screen and (max-width: 667px) {
  .hours_table_wrap {
    max-width: 370px;
    margin: 0 auto 10px;
  }
  .hours_text {
    max-width: 370px;
    margin: 0 auto 10px;
  }

  .footer {
    padding-top: 50px;
  
  }

  .footer_container {
    margin-bottom: 30px;
  }
  .footer_left-group1 {
    padding-left: 0;
    max-width: fit-content;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  .footer_group1-left {
    margin-right: 15px;
    margin-bottom: 0;
  }



  
.footer_access-item {
      width: 100px;
    height: 100px;
     font-size: 13px;
  }
  
  .footer_access-item::before {
    width: 90px;
    height: 90px;
  }

  .footer_access-list {
  margin-bottom: 10px;
  }
  
  .footer_access-item span.-size-lg {
    font-size: 16px;
  }

  .footer_logo {
    max-width: 300px;
    margin-inline: auto;
  }

  .footer_telephone span::before {
    width: 16px;
    height: 16px;
  }

  /* グーグルマップ */

.footer_googlemap {
  margin-bottom: 30px;
}
.footer_googlemap iframe {
  width: 100%;
  height: 250px;
}


.footer_eria-inner {
  padding: 0 20px;
}

.footer_eria-heading span {
  padding: 0 32%;
}
.footer_eria-heading span:before, .footer_eria-heading span:after {
  width: 30%;
}



}

/*================================

　ページトップへ戻るボタン

================================*/
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 99;
  opacity: 0;
  transform: translateY(160px);
  transition: all .3s;
}

.pagetop-button {
  transition: all .3s;
  display: inline-block;
}

/*　上に上がる動き　*/
.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(160px);
  }

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

/*　下に下がる動き　*/
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(160px);
  }
}

@media screen and (max-width: 834px) {
  .pagetop {
    right: 10px;
    bottom: 55px;
  }
}

@media screen and (max-width: 667px) {
  .pagetop {
    width: 50px;
  }
}

/*=======================

  画面固定バナー
  (PCサイド、スマホ下)

========================*/
.screen-side {
  position: fixed;
  right: 0;
  top: 300px;
  z-index: 9999;
  text-align: right;
  transition: opacity .2s;
}

.screen-side:hover {
  opacity: 0.8;
}

.screen-side_link {
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .screen-side {
    top: 200px;
  }


}

@media screen and (max-width: 1080px) {}

@media screen and (max-width: 896px) {
  .screen-fixed_bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 40;
    width: 100%;
    /* opacity: 0; */
    transition: .3s ease-out;
  }

  .screen-fixed_bottom.active {
    opacity: 1;
  }

  .screen-fixed_bottom-list {
    display: flex;
    justify-content: space-between;
  }

  .screen-fixed_bottom-item {
    text-align: center;
    height: 45px;
  }

  .screen-fixed_bottom-item.-telephone {
    width: 50%;
  }

  .screen-fixed_bottom-item.-web {
    width: 30%;
  }

  .screen-fixed_bottom-item.-access {
    width: 30%;
  }

  .screen-fixed_bottom-link {
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    line-height: 1.2;
    display: grid;
    place-content: center;
    color: #fff;
  }

  .screen-fixed_bottom-item.-telephone .screen-fixed_bottom-link {
    background: var(--color01);
    font-size: 20px;
  }
  .screen-fixed_bottom-item.-web .screen-fixed_bottom-link {
    background: #f3ae77;
  }

  .screen-fixed_bottom-item.-access .screen-fixed_bottom-link {
    background: #e0d76b;
  }


  .screen-fixed_bottom-item span {
    position: relative;
    display: inline-block;
  }
  .screen-fixed_bottom-item span:before {
    content: "";
    position: absolute;
    margin: auto;
  }


  .screen-fixed_bottom-item.-telephone span {
    padding-left: 18px;
  }

  .screen-fixed_bottom-item.-telephone span:before {
    background: url(./../img/footer_telephone_icon.png) no-repeat center / contain;
    left: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
  }

  .screen-fixed_bottom-item.-web span:before,
  .screen-fixed_bottom-item.-access span:before {
    top: 0;
    left: 0;
    right: 0;
  }
}
