@charset "utf-8";
/*
Theme Name: ユウセイモール
Description: ユウセイモールのテーマ
Author: Snowholding
*/

:root {
  /* カラー */
  --txt_color: #424242;
  --accent_01: #fffc6b;
  --base_01: #40cab5;
  --base_02: #99cc3f;
  --base_03: #f3f3f3;

  /* フォント */
  --serif: "Yu Mincho", YuMincho, 游明朝, 游明朝体, serif;
  --sans_serif: "Yu Gothic", YuGothic, 游ゴシック, 游ゴシック体, sans-serif;
}

/***** ページトップリンク　ここから *****/
#pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  text-indent: -9999px;
  margin: 0;
  z-index: 2;
}
#pagetop a {
  position: relative;
  display: block;
  /* width: 65px; */
  /* height: 65px; */
  width: 45px;
  height: 45px;
  background: var(--base_02);
  transition: opacity 0.6s ease;
}
#pagetop a:hover {
  opacity: 0.3;
}
#pagetop a::before {
  position: absolute;
  /* top: 7px; */
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  /* width: 14px; */
  /* height: 14px; */
  width: 10px;
  height: 10px;
  margin: auto;
  content: "";
  transform: rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
/***** ページトップリンク　ここまで *****/

/*========= ハンバーガーメニュー　ここから ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgb(64, 202, 181);
  background: linear-gradient(120deg, rgba(64, 202, 181, 1) 0%, rgba(153, 204, 63, 0.95) 100%);
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  top: -50px;
  left: calc(50% - 50px); /*50%から円の半径を引いた値*/
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  color: var(--txt_color);
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: poter;
  width: 70px;
  height: 70px;
  background: white;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--txt_color);
  width: 65%;
}

.openbtn span:nth-of-type(1) {
  top: 18px;
}

.openbtn span:nth-of-type(2) {
  top: 34px;
}

.openbtn span:nth-of-type(3) {
  top: 50px;
}

.openbtn.active span:nth-of-type(1) {
  top: 23px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
  width: 65%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 35px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
  width: 65%;
}
/*========= ハンバーガーメニュー　ここまで ===============*/

/******** WP-page-navi　ここから *********/
.wp-pagenavi {
  clear: both;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  color: var(--base_01);
  background-color: #ffffff;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  border: thin dotted var(--base_01);
}
.wp-pagenavi a:hover {
  color: #fff;
  background-color: var(--base_01);
}
.wp-pagenavi span.current {
  color: #fff;
  background-color: var(--base_01);
}
/******** WP-page-navi　ここまで *********/

#breadcrumb {
  margin-left: 10px;
}

html {
  color: var(--txt_color);
  font-family: var(--sans_serif);
  font-weight: 600;
  text-align: justify;
  scroll-behavior: smooth;
}

a {
  color: var(--txt_color);
}

/****** ボタンのデザイン　ここから ******/
.gradient1 {
  /*ボタンの形状*/
  display: inline-block;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  outline: none;
  /*背景の色と形状*/
  background: linear-gradient(120deg, rgba(153, 204, 63, 0.7217437316723564) 10%, rgba(64, 202, 181, 1) 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  /*アニメーションの指定*/
  transition: all 0.6s ease-out;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
  color: #fff;
  background-position: 99% 50%;
}
/****** ボタンのデザイン　ここまで ******/
.index_main{
  height: 500px;
}
.index_main img {
  object-fit: cover;
  height: 500px;
}
.p_main img {
  object-fit: cover;
  height: 400px;
}
header .block {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 10px 0 30px;
  background: rgb(64, 202, 181);
  background: linear-gradient(120deg, rgba(64, 202, 181, 1) 0%, rgba(153, 204, 63, 0.5217437316723564) 100%);
}
header .block .left h1 a {
  color: white;
}
header .block .left {
  transition: all 0.6s;
}
header .block .left:hover {
  opacity: 0.6;
}
header .block .right {
  background: #0b7de0;
  /* padding-bottom: 20px;
   231011 ヘッダー調整 */
  padding-bottom: 10px;
  width: 100%;
}
header .block .right p {
  color: white;
  line-height: 1em;
  margin-top: 15px;
}
header .block .right p.p_header_top {
  margin-top: 15px;
  line-height: 1.5em;
}
header .block .right p.p_header_businesstime {
  margin-top: 0;
  line-height: 1.5em;
}

header .block .right a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: var(--serif);
  color: white;
  transition: all 0.6s;
  line-height: 1;
  margin: 0;
}
header .block .right a:hover {
  opacity: 0.8;
}
header .block .right a img {
  width: 40px;
  margin-right: 10px;
}
header .block .right p {
  text-align: center;
}
header .block .right p span {
  background: var(--base_01);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 10px;
}
header .block .right .btn{
  text-align: center;
}
header .block .right .btn a {
  color: var(--txt_color);
  padding: 15px 10px;
  margin: 10px auto 0;
  width: 80%;
  font-size: 1.2em;
  font-family: var(--sans_serif);
}
.header_nav {
  display: none;
}

/* 221227 新規カラム作成 */  
#pushpoint {
  background: transparent;
}
#pushpoint .inner {
  margin: 30px 10px 0;
}
#pushpoint img {
  width: 40px;
  background: var(--base_01);
  /* border-radius: 50px; */
  padding: 10px;
  margin-right: 10px;
}
#pushpoint .block {
  border: 1px solid var(--base_01);
  margin: 30px 0;
}
#pushpoint h2 {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 16px;
  margin: 0;
  justify-content: center;
}
#pushpoint h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}
#pushpoint h3 span {
  margin-top: 10px;
}
#pushpoint h3 img {
  background: var(--base_01);
  /* border-radius: 50px; */
  padding: 10px;
  width: 40px;
}
#pushpoint p em {
  background: linear-gradient(transparent 60%, var(--accent_01) 60%);
}
#pushpoint p:nth-of-type(2) {
  background: var(--base_01);
  padding: 5px;
  color: white;
  display: inline-block;
}
#pushpoint .pushpoint_area ul.ul_pc{
  display: none;
}

#pushpoint .pushpoint_area ul.ul_sp{
  display: flex;
  width: 100%;
  margin: 150px auto 20px;
  justify-content: center;
}

#pushpoint .pushpoint_area ul{
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: 150px auto 20px;
  justify-content: space-between;
}
#pushpoint .pushpoint_area ul li{
  width: 100px;
  height: auto;
  margin: 0 10px 0 0;
  background-color: #40cab5;
  position: relative;
  text-align: center;
  color: #ffffff;
}
#pushpoint .pushpoint_area ul li::after{
  content: "";
  border: 5px solid #40cab5;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_train::before{
  content: "";
  display: inline-block;
  background: url(../yachiyo-medical-mall/assets/img/point_train.svg);
  background-size: cover;
  width: 50px;
  height: 57px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_newbuild::before{
  content: "";
  display: inline-block;
  background: url(../yachiyo-medical-mall/assets/img/point_newbuild.svg);
  background-size: cover;
  width: 50px;
  height: 48px;
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_newbuild::before{
  content: "";
  display: inline-block;
  background: url(../yachiyo-medical-mall/assets/img/point_newbuild.svg);
  background-size: cover;
  width: 50px;
  height: 49px;
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_lighthouse::before{
  content: "";
  display: inline-block;
  background: url(../yachiyo-medical-mall/assets/img/point_lighthouse.svg);
  background-size: cover;
  width: 62px;
  height: 50px;
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_ev::before{
  content: "";
  display: inline-block;
  background: url(../yachiyo-medical-mall/assets/img/point_ev.svg);
  background-size: cover;
  width: 50px;
  height: 52px;
  position: absolute;
  top: -98px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}

#pushpoint .pushpoint_area ul li.point_parking::before{
  content: "";
  display: inline-block;
  background: url(../yachiyo-medical-mall/assets/img/point_parking.svg);
  background-size: cover;
  width: 62px;
  height: 40px;
  position: absolute;
  top: -92px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}

#pushpoint .pushpoint_area ul li.point_medicalmall::before{
  content: "";
  display: inline-block;
  background: url(../yachiyo-medical-mall/assets/img/point_medicalmall.svg);
  background-size: cover;
  width: 56px;
  height: 42px;
  position: absolute;
  top: -92px;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
}

#covid_19 {
  background: url(../yachiyo-medical-mall/assets/img/mask_disinfection_img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  margin: 50px 10px;
  /* background-attachment: fixed; */
  padding: 40px 0;
}
#covid_19 .inner {
  margin: 0 10px;
}
#covid_19 img {
  width: 50px;
  background: var(--base_01);
  /* border-radius: 50px; */
  padding: 10px;
}
#covid_19 .block {
  border: 1px solid var(--base_01);
  margin: 30px 0;
}
#covid_19 h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
#covid_19 h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}
#covid_19 h3 span {
  margin-top: 10px;
}
#covid_19 h3 img {
  background: var(--base_01);
  /* border-radius: 50px; */
  padding: 10px;
  width: 40px;
}
#covid_19 p em {
  background: linear-gradient(transparent 60%, var(--accent_01) 60%);
}

/* 221227 ここより新規作成 */
#covid_19 h4 {
  background: var(--base_01);
  padding: 5px 20px;
  color: white;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  width: 100%;
  margin: 0 auto 10px;
}
#covid_19 .covid_19_area{
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

#covid_19 .covid_19_area ul{
  width: 94%;
  margin: 0 auto 20px;
  max-width: 640px;
  text-align: left;
  font-size: 16px;
}

#covid_19 .covid_19_area ul li{
  text-indent: -1em;
  padding-left: 1em;
}

/* クリニックリスト */
#list {
  margin: 50px 0;
  padding: 60px 0 40px;
  background: var(--base_03);
  position: relative;
  z-index: 1;
}
#list:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 30px solid #ffffff;
  border-bottom: 0;
  top: 0;
  left: calc(50% - 50px);
}
#list:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 30px solid var(--base_03);
  border-bottom: 0;
  bottom: -30px;
  left: calc(50% - 50px);
}
#list .inner {
  position: relative;
}
#list .inner:before {
  position: absolute;
  content: "";
  background: url(../yachiyo-medical-mall/assets/img/bg_white_left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 700px;
  top: 100px;
  left: 0px;
  z-index: -1;
}
#list .inner:after {
  position: absolute;
  content: "";
  background: url(../yachiyo-medical-mall/assets/img/bg_white_right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 700px;
  bottom: 100px;
  right: 0px;
  z-index: -1;
}
#list .in_inner {
  margin: 0 10px;
}
#list h2 {
  position: relative;
  text-align: center;
  color: var(--base_01);
  margin-bottom: 40px;
}
#list h2:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 4px;
  display: inline-block;
  background-color: var(--base_01);
  bottom: -10px;
  left: calc(50% - 50px);
}
#list h3 {
  border-bottom: 1px solid var(--txt_color);
}
#list .block {
  /* display: flex;
  flex-direction: column;
  align-items: flex-start; */
  margin: 40px 0;
}
#list .block h3 {
  border-bottom: 1px solid var(--base_01);
  width: 100%;
}
#list .block h3.docter_rec{
  border-bottom: 1px solid #e69138;
  width: 100%;
  color:#e69138;
}
#list .block .left dl {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 15px 0;
}
#list .block .left dl dt {
  margin-right: 8px;
  background: var(--base_01);
  width: 110px;
  text-align: center;
}
#list .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--- ボタンデザイン　線から塗り（共通設定）　ここから ---*/
.btn05 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  color: var(--txt_color);
  padding: 10px 20px;
  background: #dddddd;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transition-delay: 0.7s; /*0.7秒遅れてアニメーション*/
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn05:hover {
  background: var(--base_02);
  color: #fff;
}

/*線の設定*/
.btn05 span {
  display: block;
}

/*横線の設定*/
.btn05::before,
.btn05::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 0;
  height: 1px;
  background: var(--base_01);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*縦線の設定*/
.btn05 span::before,
.btn05 span::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 1px;
  height: 0;
  background: var(--base_01);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn05:hover::before,
.btn05:hover::after {
  width: 100%;
}
.btn05:hover span::before,
.btn05:hover span::after {
  height: 100%;
}

/*--- ボタンデザイン　線から塗り（共通設定）　ここから ---*/
header .block .right a.btn06,
footer .block .right a.btn06 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  color: var(--txt_color);
  background: #ffffff;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transition-delay: 0.7s; /*0.7秒遅れてアニメーション*/
  text-align: center;
  /*231011 margin調整*/
  margin-top: 20px;
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
header .block .right a.btn06:hover,
footer .block .right a.btn06:hover {
  background: var(--base_02);
  color: #fff;
  opacity: 1;
}

/*線の設定*/
.btn06 span {
  display: block;
}

/*横線の設定*/
.btn06::before,
.btn06::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 0;
  height: 1px;
  background: var(--base_01);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*縦線の設定*/
.btn06 span::before,
.btn06 span::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 1px;
  height: 0;
  background: var(--base_01);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn06:hover::before,
.btn06:hover::after {
  width: 100%;
}
.btn06:hover span::before,
.btn06:hover span::after {
  height: 100%;
}

/*== 左上と右下から枠線が伸びて塗りに */

/*--- ボタンデザイン　線から塗り（共通設定）　ここから ---*/
a.btn07 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  color: #ffffff;
  background: #0b7de0;
  text-decoration: none;
  outline: none;
  padding: 10px 20px;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transition-delay: 0.7s; /*0.7秒遅れてアニメーション*/
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
a.btn07:hover {
  background: var(--base_02);
  color: #fff;
  opacity: 1;
}

/*線の設定*/
.btn07 span {
  display: block;
}

/*横線の設定*/
.btn07::before,
.btn07::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 0;
  height: 1px;
  background: var(--base_01);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*縦線の設定*/
.btn07 span::before,
.btn07 span::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 1px;
  height: 0;
  background: var(--base_01);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn07:hover::before,
.btn07:hover::after {
  width: 100%;
}
.btn07:hover span::before,
.btn07:hover span::after {
  height: 100%;
}

/*== 左上と右下から枠線が伸びて塗りに */

/*右下から右上へ伸びる横線*/
.bordercircle3::after {
  right: 0;
  bottom: 0;
  transition-duration: 0.4s;
}

/*右下から右上へ伸びる縦線*/
.bordercircle3 span::after {
  right: 0;
  bottom: 0;
  transition-duration: 0.4s;
}

/*左上から右上へ伸びる横線*/
.bordercircle3::before {
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}

/*左上から左下へ伸びる横線*/
.bordercircle3 span::before {
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}
/*--- ボタンデザイン　線から塗り（共通設定）　ここまで ---*/

#list .right {
  margin: 40px 0 0;
}

#floor_guide {
  background: url(../yachiyo-medical-mall/assets/img/medical_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  margin: 80px 0 50px;
  padding: 40px 0;
}
#floor_guide .inner {
  margin: 0 10px;
}
#floor_guide .block .inner {
  margin: 0;
}
#floor_guide h2 {
  position: relative;
  text-align: center;
  color: var(--base_01);
  margin-bottom: 40px;
}
#floor_guide h2:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 4px;
  display: inline-block;
  background-color: var(--base_01);
  bottom: -10px;
  left: calc(50% - 50px);
}

#floor_guide h3 {
  border-bottom: 1px solid var(--txt_color);
  margin-bottom: 10px;
  padding-left: 2.3em;
  text-indent: -2.3em;
}
#floor_guide h4 {
  border-bottom: 2px solid var(--base_01);
  color: var(--base_01);
  margin-bottom: 30px;
  font-size: 20px;
}
#floor_guide .block {
  margin: 30px 0;
}

#about {
  background: url(../yachiyo-medical-mall/assets/img/sky_img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  margin: 50px 0;
  padding: 40px 0;
  background-attachment: fixed;
}
#about .inner {
  margin: 0 10px;
}
#about .block .inner {
  margin: 0;
}
#about h2 {
  border-bottom: 2px solid var(--txt_color);
  margin-bottom: 30px;
}

#news {
  background: url(../yachiyo-medical-mall/assets/img/news_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  margin: 50px 0;
  padding: 40px 0;
}
#news .inner {
  margin: 0 10px;
}
#news .left {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
#news .left img {
  width: 50px;
  margin-right: 10px;
}
#news article {
  margin: 20px 0;
  border-bottom: 1px solid var(--txt_color);
  transition: all 0.6s;
}
#news article:hover {
  opacity: 0.6;
}

#news .date_ttl p:first-of-type {
  margin-right: 10px;
}
#news .btn {
  display: flex;
  justify-content: center;
}
#news .btn .gradient1 {
  /* padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-left: auto;
  margin-top: 30px; */
  display: inline-block;
  color: #fff;
  padding: 10px 15px;
  border-radius: 40px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(120deg, rgba(153, 204, 63, 0.7217437316723564) 10%, rgba(64, 202, 181, 1) 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}
#news .btn .gradient1:hover {
  color: #fff;
  background-position: 99% 50%;
}

#access {
  background: url(../yachiyo-medical-mall/assets/img/access_bg.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  margin: 50px 0;
  padding: 40px 0;
}
#access .inner {
  margin: 0 10px;
}
#access h2 {
  border-bottom: 2px solid var(--base_01);
  color: var(--base_01);
  margin-bottom: 30px;
}
#access .address {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#access img {
  width: 40px;
  margin-right: 10px;
  background: var(--base_01);
  /* border-radius: 50px; */
  padding: 10px;
}
#access .left {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
#access .right {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

footer {
  background: rgb(64, 202, 181);
  background: linear-gradient(120deg, rgba(64, 202, 181, 1) 0%, rgba(153, 204, 63, 0.5217437316723564) 100%);
  padding: 50px 0 20px;
  margin-top: 60px;
}
footer .inner {
  margin: 0 10px;
}
footer .left {
  text-align: center;
  color: white;
  margin-bottom: 30px;
  transition: all 0.6s;
}
footer .left:hover {
  opacity: 0.6;
}
footer .left h1 a {
  color: white;
}
footer .center {
  text-align: center;
  color: white;
  margin-bottom: 20px;
  font-size: 2rem;
}
footer .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0b7de0;
  color: white;
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}
footer .right a {
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 3rem;
  color: white;
  transition: all 0.6s;
}
footer .right a:hover {
  opacity: 0.6;
}
footer .right img {
  width: 40px;
  margin-right: 10px;
}

/*
footer .right p {
  font-size: 2rem;
  margin-top: 0;
}
footer .right p span {
  margin-right: 10px;
  color: white;
}
*/

footer .block .right p {
  color: white;
  line-height: 1em;
  margin-top: 15px;
}
footer .block .right p.p_header_top {
  margin-top: 15px;
  line-height: 1.5em;
}
footer .block .right p.p_header_businesstime {
  margin-top: 0;
  line-height: 1.5em;
}

footer .block .right a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: var(--serif);
  color: white;
  transition: all 0.6s;
  line-height: 1;
  margin: 0;
}
footer .block .right a:hover {
  opacity: 0.8;
}
footer .block .right a img {
  width: 40px;
  margin-right: 10px;
}
footer .block .right p {
  text-align: center;
}
footer .block .right p span {
  background: var(--base_01);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 10px;
}
footer .block .right .btn{
  text-align: center;
}
footer .block .right .btn a {
  color: var(--txt_color);
  padding: 15px 50px;
  /*
  margin: 10px auto 0;
  231011 margin調整
  */
  margin: 15px auto 0;
  width: 100%;
  font-size: 1.2em;
  font-family: var(--sans_serif);
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
}
footer ul li {
  width: calc(100% / 2);
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 5px 0;
  position: relative;
  padding-left: 40px;
  transition: all 0.6s;
}
footer ul li:hover {
  opacity: 0.6;
}
footer ul li:before,
footer ul li:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 20px;
  transform-origin: 100% 50%;
  height: 2px;
  width: 11px;
  background-color: white;
  border-radius: 2px;
}
footer ul li:before {
  transform: translateY(-50%) rotate(30deg);
}
footer ul li:after {
  transform: translateY(-50%) rotate(-30deg);
}
footer ul li a {
  color: white;
}

footer .copyright {
  text-align: center;
  color: white;
}

#single {
  margin: 50px 0;
}
#single .inner {
  margin: 0 10px;
}
#single article h1 {
  margin-top: 10px;
  color: var(--base_01);
}

#archive {
  margin: 50px 0;
}
#archive .inner {
  margin: 0 10px;
}
#archive h1 {
  margin-bottom: 20px;
  color: var(--base_01);
}
#archive article {
  margin: 20px 0;
  border-bottom: 1px solid var(--base_02);
}

/* 221227 新規作成分 */
.dl_flex{
  display: flex;
  margin: 20px 0;
  align-items: center;
}
.dl_flex:first-child{
  margin-top: 2en;
}
.dl_flex dt{
  margin-right: 10px;
  background: var(--base_01);
  width: 40%;
  text-align: center;
  display: inline-block;
  height: 30px;
  line-height: 2em;
}
.dl_flex dt.font_small{
  margin-right: 10px;
  background: var(--base_01);
  width: 40%;
  text-align: center;
  display: inline-block;
  height: 30px;
  line-height: 2.5em;
  font-size: 0.8em;
}

.dl_flex dd{
  width: 60%;
}

#list h4.comment_title{
  margin: 20px auto 10px;
  background: #e69138;
  width: 100%;
  text-align: center;
  display: inline-block;
  height: 30px;
  line-height: 2em;
}
#list .comment_area{
  margin:0 auto 30px;
  width: 90%;
  text-align: left;
}
#list .comment_area p{
  display: block;
  line-height: 2em;
  text-indent: -1em;
  padding-left: 1em;
}

#list .text_orange{
  color: #e69138;
}
#list .bg_orange{
  background-color: #e69138;
  color:#ffffff;
}

.pc_hidden{
  display: block;
}
.pc_hidden_inline{
  display: inline;
}
.sp_hidden,
.sp_hidden_inline{
  display: none;
}

#floor_guide{
  display: block;
}

#floor_guide dl.dl_block{
  display: block;
  margin-bottom: 20px;
}

#floor_guide dl.dl_block dt{
  margin: 20px auto 10px;
  background: var(--base_01);
  width: 100%;
  text-align: center;
  display: inline-block;
  height: 30px;
  line-height: 2em;
}

#floor_guide dl.dl_block dd{
  width: 95%;
  text-align: left;
  margin: 0 auto;
}

/*
#floor_guide .column .block:nth-of-type(odd) {
  padding-right: 5px;
}
#floor_guide .column .block:nth-of-type(even) {
  padding-left: 5px;
}
*/

#floor_guide .guide_box{
  display: block;
}

#floor_guide .guide_box_flex .left .btn{
  width: 100%;
  margin-bottom: 20px;
}

#floor_guide .guide_box_flex .left .btn .btn05{
  width: 100%;
  text-align: center;
}

#floor_guide h3 {
  margin-bottom: 10px;
}

#floor_guide .guide_box .btn {
  margin: 10px auto 20px;
  text-align: center;
} 


#floor_guide .guide_box .btn a {
  width: 80%;
} 

/* 230116 新規作成分 */
.pharmacy_box{
  width:100%;
  max-width: 1000px;
  margin: 0 auto 20px;
}
.cafe_box{
  width: 100%;
  margin: 0 auto 20px;
  padding: 30px 20px;
  border: 2px solid;
  border-color: var(--base_01);
  border-radius: 20px;
}
.pharmacy_box img{
  width: 100%;
  margin: 0;
}
.cafe_box img{
  width: 100%;
  margin: 0;
}

#floor_guide .column{
  width: 90%;
  margin: 0 auto;
}

footer .footer_banner {
  display: flex;
  justify-content:space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
}
footer .footer_banner img {
  width: 160px;
}
footer .footer_banner img:hover {
  opacity: 0.6;
}

#floor_guide .fg_attention{
  width: 90%;
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
  border: 2px solid;
  border-color: var(--base_01);
  border-radius: 20px;
  padding: 5px 20px 20px;
  background: #ffffff;
}

#floor_guide .fg_attention p {
  padding-left: 1em;
  text-indent: -1em;
}

@media (min-width: 768px) {
  #pagetop a {
    width: 65px;
    height: 65px;
  }
  #pagetop a::before {
    top: 7px;
    width: 14px;
    height: 14px;
  }
  .openbtn {
    display: none;
  }
  #breadcrumb {
    margin-left: 30px;
  }
  header .block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  header .block .left {
    width: 350px;
    margin-left: 20px;
  }
  header .block .right {
    width: 300px;
    padding-top: 10px;
  }
  .header_nav {
    display: block;
    background: var(--base_03);
  }
  .header_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
  }
  .header_nav ul li {
    margin: 0 5px;
  }

  /* 221227 新規カラム作成 */  
  #pushpoint {
    margin: 70px 30px;
  }
  #pushpoint .inner {
    margin: 0 20px;
  }
  #pushpoint h2 {
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
    justify-content: center;
  }
  #pushpoint h2 img {
    margin-right: 30px;
  }
  #pushpoint p:first-of-type {
    text-align: center;
    font-size: 1.8rem;
  }
  #pushpoint p:last-of-type {
    text-align: left;
  }
  #pushpoint h3 {
    flex-direction: row;
  }
  #pushpoint h3 img {
    margin-right: 10px;
  }
  #pushpoint h3 span {
    margin-top: 0;
    font-size: 2.5rem;
    margin-right: 20px;
  }
  #pushpoint .pushpoint_area ul.ul_sp{
    display: none;
  }
  
  #pushpoint .pushpoint_area ul.ul_pc{
    display: flex;
    width: 100%;
    max-width: 800px;
    margin: 150px auto 20px;
    justify-content: space-between;
  }
  

  #covid_19 {
    margin: 70px 30px;
  }
  #covid_19 .inner {
    margin: 0 20px;
  }
  #covid_19 h2 {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    justify-content: center;
  }
  #covid_19 h2 img {
    margin-right: 10px;
  }
  #covid_19 p:first-of-type {
    text-align: center;
    font-size: 1.8rem;
  }
  #covid_19 p:last-of-type {
    text-align: left;
  }
  #covid_19 h3 {
    flex-direction: row;
  }
  #covid_19 h3 img {
    margin-right: 10px;
  }
  #covid_19 h3 span {
    margin-top: 0;
    font-size: 2.5rem;
    margin-right: 20px;
  }
  
  /* 221227 ここより新規作成 */
  #covid_19 h4 {
    margin: 30px auto 10px;
    width: 400px;
  }
  #covid_19 .covid_19_area{
    width: 90%;
  }
  
  #covid_19 .covid_19_area ul{
    width: 70%;
    margin: 0 auto;
  }


  #list {
    margin: 70px 0;
  }
  #list .block {
    /* flex-direction: row;
    align-items: center; */
    margin: 30px 0 60px;
  }
  #list .in_inner {
    margin: 0 30px;
  }

  #list .right {
    margin-top: 0;
    margin-left: 10px;
  }
  #list .block .left dl:first-of-type {
    margin-top: 0;
  }
  #list .column .block .block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #list .left,
  #list .right {
    width: calc(98% / 2);
  }

  #floor_guide {
    width: 100%;
    margin: 80px 0;
  }
  
  #floor_guide .inner {
    margin: 0 30px;
  }
  #floor_guide .column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #floor_guide .column .block {
    width: calc(95% / 2);
  }
  #floor_guide dl.dl_block{
    display: block;
    margin-bottom: 20px;
  }
  #floor_guide dl.dl_block dt{
    margin: 20px auto 10px;
    background: var(--base_01);
    width: 100%;
    text-align: center;
    display: inline-block;
    height: 30px;
    line-height: 2em;
  }
  #floor_guide dl.dl_block dd{
    width: 90%;
    text-align: left;
    margin: 0 auto;
  }

  /*
  #floor_guide .column .block:nth-of-type(odd) {
    padding-right: 5px;
  }
  #floor_guide .column .block:nth-of-type(even) {
    padding-left: 5px;
  }
  */

  #about {
    margin: 80px 0;
  }
  #about .inner {
    margin: 0 30px;
  }
  #about .block .inner .left {
    float: left;
    width: 400px;
    margin-right: 20px;
  }

  #news {
    margin: 80px 0;
  }
  #news .block {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #news .block .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    margin-bottom: 0;
  }
  #news .block .right {
    width: 60%;
  }
  #news .inner {
    margin: 0 30px;
  }
  #news .date_ttl {
    display: flex;
    align-items: center;
  }
  
  #news .btn {
    justify-content: right;
  }

  #access {
    margin: 80px 0;
  }
  #access .block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }

  #access .left {
    width: calc(100% / 2);
    justify-content: left;
    margin: 0;
  }
  #access .right {
    width: calc(100% / 2);
    justify-content: right;
    margin: 0;
  }

  footer {
    margin-top: 100px;
  }
  footer ul {
    width: 400px;
  }

  #single .inner {
    margin: 0 30px;
  }

  #archive article a {
    display: flex;
    align-items: center;
  }
  #archive article a .date {
    margin-right: 10px;
  }
  #archive .inner {
    margin: 0 30px;
  }

  .dl_flex dt{
    width: 40%;
  }

  .pc_hidden,
  .pc_hidden_inline{
    display: none;
  }
  .sp_hidden{
    display: block;
  }
  .sp_hidden_inline{
    display: inline;
  }

  .pharmacy_box{
    width:85%;
    max-width: 1000px;
    margin: 0 auto 50px;
  } 
  .pharmacy_box img{
    width: 90%;
    margin-top: 20px;
    margin-left: 10%;
  } 
  .cafe_box{
    width: 80%;
    max-width: 1000px;
    padding: 30px;
  }
  .cafe_box img{
    width: 90%;
    margin-top: 2em;
    margin-left: 10%;
  }
  footer .footer_banner {
    justify-content:left;
  }
  footer .footer_banner img {
    width: 100%;
    max-width: 220px;
    margin-left: 20px;
  }
  a.btn07 {
    width: 90%;
  }
}

@media (min-width: 1024px) {
  #breadcrumb {
    margin-left: 5%;
  }
  .header_nav ul li {
    margin: 0 10px;
  }

  /* 221227 新規カラム作成 */  
  #pushpoint {
    margin: 80px 5%;
  }
  #pushpoint h3 {
    margin-left: 50px;
  }
  #pushpoint .inner {
    margin: 0 40px;
  }

  #covid_19 {
    margin: 80px 5%;
    padding: 60px 0;
  }
  #covid_19 h3 {
    margin-left: 50px;
  }
  #covid_19 .inner {
    margin: 0 40px;
  }

  #list .in_inner {
    margin: 0 5%;
  }
  #list .right {
    margin-left: 20px;
  }

  #floor_guide .inner {
    margin: 0 5%;
  }
  #floor_guide {
    padding: 60px 0;
  }
  
  /*
  #floor_guide .column .block:nth-of-type(odd) {
    padding-right: 10px;
  }
  #floor_guide .column .block:nth-of-type(even) {
    padding-left: 10px;
  }
  */
  
  #floor_guide .guide_box{
    display: block;
  }

  #floor_guide .guide_box_flex{
    display: flex;
    justify-content: space-around;
  }
  
  #floor_guide .guide_box_flex .left,
  #floor_guide .guide_box_flex .right {
    width: calc(98% / 2);
  }
  #floor_guide .guide_box_flex .right {
    padding-left: 5px;
  }

  #about {
    padding: 60px 0;
  }
  #about .inner {
    margin: 0 5%;
  }

  #news .inner {
    margin: 0 5%;
  }

  #access {
    padding: 60px 0;
  }
  #access .inner {
    margin: 0 5%;
  }
  #access .left {
    justify-content: center;
    margin: 0;
  }
  #access .right {
    justify-content: center;
  }
  footer .column {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .left {
    margin-bottom: 0;
    text-align: left;
    width: 25%;
  }
  footer .center {
    width: 38%;
  }
  footer .right {
    width: 35%;
  }
  footer .center {
    margin-bottom: 0;
  }
  footer .center p {
    margin-top: 0;
  }

  footer .inner {
    margin: 0 5%;
  }

  #single .inner {
    margin: 0 5%;
  }

  #archive .inner {
    margin: 0 5%;
  }
}

@media (min-width: 1280px) {
  #breadcrumb {
    margin-left: 10%;
  }

  /* 221227 新規カラム作成 */
  #pushpoint {
    margin: 80px 10%;
  }

  #covid_19 {
    margin: 80px 10%;
  }

  #list {
    padding: 80px 0 40px;
    margin: 80px 0 90px;
  }
  #list .in_inner {
    margin: 0 10%;
  }
  #list .column {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #list .column .block {
    /* クリニック複数開業までは1カラム 
    width: calc(98% / 2);
    margin: 30px 0;*/
    width: 80%;
    margin: 30px auto;
    max-width: 1000px;
  }
  #list .column .block:nth-of-type(odd) {
    padding-right: 10px;
  }
  #list .column .block:nth-of-type(even) {
    padding-left: 10px;
  }
  #list .column .block .block {
    width: 100%;
  }

  #floor_guide .inner {
    margin: 0 10%;
  }

  #about .inner {
    margin: 0 10%;
  }
  #about .block .inner .left {
    width: 500px;
  }

  #news .inner {
    margin: 0 10%;
  }

  #access .inner {
    margin: 0 10%;
  }
  
  #access .block {
    width: 80%;
    margin: 0 auto;
    max-width: 900px;
  }

  #single .inner {
    margin: 0 10%;
  }

  #archive .inner {
    margin: 0 10%;
  }
  
  footer .inner {
    margin: 0 auto;
    width:90%;
    max-width: 1500px;
  }
  
  #floor_guide .fg_attention {
    width:60%;
    padding: 15px 30px 30px;
  }

}

@media (min-width: 1650px) {
  #floor_guide .column .block {
    width: calc(95% / 4);
  }
  #floor_guide .column .block h3 {
    font-size: 1em;
  }
  .dl_flex dt.font_small{
    line-height: 2.8em;
    font-size: 0.75em;
  }
}

/* 231011 wordbreak追加 */
.dd_wordbreak{
  word-break: break-all;
  letter-spacing: 0.03em;
}
/* 231011 ヘッダーとフッターに注意書き追加 */
.p_header_attention,
.p_footer_attention{
  width:76%;
  max-width: 240px;
  text-align: left!important;
  margin: 10px auto 0;
  font-size: 0.8em;
  line-height: 1.2em!important;
  padding-left: 0.9em;
  text-indent: -1.05em;
}