@charset "utf-8";
/* CSS Document */
@import url(//fonts.googleapis.com/css?family=Ubuntu:700);
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(//fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,600&display=swap);
@font-face {
  font-family: Yu Gothic;
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: Yu Gothic;
  src: local("Yu Gothic Bold");
  font-weight: 700;
}
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo,
    "sans-serif";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna" 1;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}
p {
  margin-bottom: 0;
}
pre {
  margin-bottom: 0;
}
dl {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}
a {
  text-decoration: none;
  color: #333333;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
a:hover {
  opacity: 0.6;
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}
.biz-hour {
  display: block;
  border-collapse: collapse;
  /* overflow-x: scroll;で、
  スマホ画面幅に表が入りきらない場合は
  横スクロールしてくれます */
}

.biz-hour th {
  /* １番上の線 */
  /* #A28C63っていうのが色の名前なので、ここをお好みで */
  border-top: 1px solid #a28c63;
}

.biz-hour th,
.biz-hour td {
  padding: 10px 20px;
  text-align: center;
  /* ２番目以降の線 */
  /* 色はお好みで */
  border-bottom: 1px solid #a28c63;
}

/* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
@media screen and (max-width: 559px) {
  .biz-hour th,
  .biz-hour td {
    padding: 10px 10px;
  }
}

.biz-hour th {
  font-weight: normal;
}

/* 「土」の文字色 */
.biz-hour th.sat {
  color: #3db2da;
}

/* 「日」の文字色 */
.biz-hour th.sun {
  color: #e66a6a;
}
/* fadeUp */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

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

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}
.copy {
  padding: 1rem 0;
  text-align: center;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e2c361;
  color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #b6a15f;
  font-size: 1.6rem;
}
.menu__item {
  width: 100%;
  height: auto;
  padding: 2rem;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.menu__item a {
  color: #ffffff;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu {
  transform: translateX(100vw);
  transition: all 0.3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active {
  transform: translateX(0);
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu {
  transform-origin: top left;
  transform: rotateZ(-90deg);
  transition: all 0.3s ease;
}
/* アニメーション後のメニューの状態 */
.menu.is-active {
  transform: rotateZ(0deg);
}

.slider02 {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider02 img {
  width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider02 .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}

.slider02 .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
.sub_area {
  background: url("../images/sub_bg.png") top center no-repeat;
  background-size: cover;
}
.wrapbox .container {
  padding: 0 3rem;
}

.c-txt.line {
  padding-bottom: 5px;
  position: relative;
}
.c-txt.line::before {
  background: #ff701e;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -2px;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.c-txt.line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.active {
  border-bottom: solid 3px #ff701e;
}
.active a:hover {
  border: none;
}

.news_txt strong {
  margin: 10px 0;
}

/* single */
.single_txtbox {
  background: #fdffdb;
  padding: 3rem;
  width: 100%;
  height: auto;
}

.single_txtbox dt {
  font-size: 18px !important;
}

.single_txtbox .single-ttl {
  font-size: 24px;
  padding-top: 0;
}

.single_txtbox .single-txt {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

.single_txtbox .news_txt li dl {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  border-bottom: 1px dashed #ccc;
}

.single_txtbox .news_txt li dt {
  font-size: 1.4rem;
  color: #3e7db4;
  margin-top: 0;
  min-width: 100px;
  flex-shrink: 0;
  margin-left: 10%;
}

.single_txtbox .news_txt li dd {
  padding-bottom: 1rem;
  margin: 0;
  flex-grow: 1;
}

.news_txt.no-title p.single-txt {
  padding: 0 !important;
}

.post-navigation {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.back-to-archive {
  text-align: center;
}

/* category-news */
.entry-header {
  margin-top: 30px;
}

.post-date {
  font-size: 18px;
}

.content-ttl {
  font-size: 24px;
}

.entry-summary {
  font-size: 20px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 30px;
}

.nav-links {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}


/*-----------------------------------------------------------------*/
/*------------------------

PC

--------------------------*/
@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sp-only {
    display: none;
  }
  .top_area {
    background: url("../images/top_bg.png") top center no-repeat;
    background-size: cover;
  }
  .sub_area {
    background: url("../images/sub_bg.png") top center no-repeat;
    background-size: cover;
  }
  .inner {
    display: flex;
    justify-content: space-between;
    max-width: calc(1460px - 3%);
    align-items: center;
    padding: 1rem 2rem;
    margin: 0 auto;
  }
  .nav {
    margin-right: auto;
    height: 8rem;
  }
  .gnav ul {
    display: flex;
    justify-content: space-around;
    height: 8rem;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 60%;
    margin-left: auto;
  }
  .mv {
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 3rem;
  }
  .mv::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 3%;
    width: 206px;
    height: 198px;
    background: url("../images/mv_deco01.png") no-repeat top center;
  }
  .mv::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 5%;
    width: 168px;
    height: 164px;
    background: url("../images/mv_deco02.png") no-repeat top center;
  }
  .catch {
    position: absolute;
    top: 50%;
    left: 32%;
    font-size: 4.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    transform: translate(-50%, -50%);
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    letter-spacing: 0.4;
  }
  .en {
    position: absolute;
    bottom: -1%;
    left: 5%;
  }
  .h_r {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
  }
  .ad {
    position: relative;
    margin-right: 2rem;
    padding-left: 4rem;
  }
  .ad::before {
    content: "";
    background: url("../images/Icon-map-pin.svg") no-repeat center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 36px;
    transform: translateY(-50%);
  }
  .news_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 0;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .news {
    padding: 5rem 0;
  }
  .flex {
    display: flex;
  }
  .news_ttl {
    width: 20%;
    padding: 2rem 3rem 5rem;
    position: relative;
    color: #ffffff;
    background: #e2c361;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
  }
  .news_jp {
    display: block;
    font-size: 2.8rem;
    letter-spacing: 0.2em;
    line-height: 1;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: auto;
  }
  .news_txtbox {
    background: #fdffdb;
    padding: 3rem;
    width: 80%;
    height: 450px;
    overflow-y: scroll;
  }
  .news_txt {
    font-size: 1.8rem;
  }
  .news_txt li dt {
    font-size: 1.4rem;
    color: #3e7db4;
    margin-top: 1rem;
  }
  .news_txt li dd {
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
  }
  .future {
    background: #fcffe2;
    position: relative;
  }
  .future::before {
    content: "";
    background: url("../images/deco03.png") no-repeat center;
    position: absolute;
    top: 0;
    left: 3%;
    width: 352px;
    height: 355px;
  }
  .en_ttl {
    text-align: center;
    padding: 2rem 0;
  }
  .en_ttl span {
    display: block;
    font-size: 2.8rem;
  }
  .future_bgarea {
    background: url("../images/future_bg01.png") no-repeat top center;
    background-size: auto;
    position: relative;
  }
  .l_box {
    width: 50%;
    padding-top: 12rem;
  }
  .box_ttl {
    font-size: 3.8rem;
    font-weight: 600;
    text-align: center;
  }
  .box_txt {
  }
  .box_txt p {
    font-size: 1.8rem;
    padding: 3rem 5rem;
    text-align: center;
  }
  .box_ttl span {
    font-size: 8rem;
    color: #6b9ae8;
  }
  .r_box {
    width: 50%;
  }
  .r_box .box_img {
    text-align: left;
  }
  .box_img {
    text-align: right;
  }
  .futurecon {
    margin-bottom: 3rem;
    position: relative;
  }
  .futurecon::after {
    content: "";
    background: url("../images/future_img_c.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 99px;
    height: 99px;
    z-index: 1;
  }
  .future02 {
    margin-bottom: 3rem;
    padding: 5rem;
    position: relative;
  }
  .future02::before {
    content: "";
    background: url("../images/future_illust02.png") no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 14%;
    width: 315px;
    height: 237px;
  }
  .future02::after {
    content: "";
    background: url("../images/future_illust01.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: -28%;
    right: 0;
    width: 206px;
    height: 296px;
  }
  .future02 p {
    font-size: 2.4rem;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
  }
  .between {
    justify-content: space-between;
  }
  .around {
    justify-content: space-around;
  }
  .f_box01 {
    padding-top: 20rem;
    z-index: 1;
  }
  .f_box01 p {
    background: #e49c49;
    width: 100%;
  }
  .f_box02 {
    padding-top: 10rem;
    margin: 0 3rem;
  }
  .f_box02 p {
    background: #f69de4;
    width: 100%;
  }
  .f_box03 {
    padding-top: 0;
    z-index: 1;
  }
  .f_box03 p {
    background: #59cb48;
    width: 100%;
  }
  .f03_lbox {
    width: 48%;
    padding: 2rem;
  }
  .f03_rbox {
    width: 48%;
    padding: 2rem;
  }
  .future03 {
    position: relative;
    background: url("../images/future_bg02.png") no-repeat center;
    background-size: cover;
  }
  .future03::before {
    content: "";
    background: url("../images/deco04.png") no-repeat center;
    position: absolute;
    top: 3rem;
    right: 2rem;
    width: 200px;
    height: 191px;
  }
  .tc {
    text-align: center;
    padding: 3rem;
  }
  .future03_ttl {
    font-size: 3.8rem;
    text-align: center;
  }
  .future03_ttl span {
    font-size: 5.8rem;
    color: #e49c49;
  }
  .future03 p {
    font-size: 1.8rem;
  }
  .f03_lbox {
    width: 50%;
    max-width: 670px;
  }
  .f03_limg {
    width: 93%;
    max-width: 620px;
    margin-left: auto;
  }
  .f03_ltxt {
    width: 94%;
    max-width: 600px;
    position: relative;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    margin-top: -90px;
    padding: 2px 30px 54px;
    background: #fff;
    height: 292px;
  }
  .f03_ttl {
    font-size: 2.6rem;
    text-align: center;
    padding: 2rem 0;
    color: #502300;
  }
  .f03_ttl span {
    font-size: 3.8rem;
  }
  .f03_rbox {
    width: 50%;
    max-width: 670px;
  }
  .f03_rimg {
    width: 93%;
    max-width: 620px;
    margin-right: auto;
    margin-right: -1rem;
  }
  .f03_rtxt {
    width: 94%;
    max-width: 600px;
    position: relative;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    margin-top: -90px;
    padding: 2px 30px 54px;
    background: #fff;
    margin-left: auto;
    height: 292px;
  }
  .future04 {
    padding: 5rem 0;
    margin-bottom: 5rem;
    position: relative;
  }
  .future04::before {
    content: "";
    background: url("../images/deco05.png") no-repeat;
    position: absolute;
    top: 3rem;
    left: 1rem;
    width: 200px;
    height: 209px;
  }
  .future04::after {
    content: "";
    background: url("../images/future_illust03.png") no-repeat;
    position: absolute;
    top: -1.4rem;
    right: 1rem;
    width: 158px;
    height: 298px;
  }
  .future04 p {
    text-align: center;
    font-size: 1.8rem;
    padding: 2rem 0;
  }
  .future04_ttl {
    font-size: 3.8rem;
    text-align: center;
  }
  .future04_ttl span {
    font-size: 5.8rem;
    color: #55cf55;
  }
  .f04_box {
    padding: 2rem;
  }
  .ore {
    background: rgba(228, 156, 73, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -6rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .pnk {
    background: rgba(246, 157, 228, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -6rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .grn {
    background: rgba(89, 203, 72, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -6rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .mmt50 {
    margin-top: -5rem;
  }
  .pt50 {
    padding-top: 5rem;
  }
  .important {
    position: relative;
    background: url("../images/important_bg.png") no-repeat center;
    background-size: cover;
  }
  .important::before {
    content: "";
    background: url("../images/deco06.png") no-repeat center;
    position: absolute;
    top: 8rem;
    right: 0;
    width: 250px;
    height: 253px;
  }
  .important::after {
    content: "";
    background: url("../images/deco07.png") no-repeat center;
    position: absolute;
    top: 10rem;
    left: 0;
    width: 250px;
    height: 253px;
  }
  .important_ttl {
    text-align: center;
    font-size: 3.8rem;
    padding: 5rem;
  }
  .important_ttl span {
    font-size: 4.8rem;
    color: #55cf55;
  }
  .third {
    width: calc(100% / 3);
  }
  .half {
    width: 50%;
  }
  .im_ttl {
    display: block;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-shadow: 2.1px 2.1px 2.1px #fff;
    text-align: center;
  }
  .im_ttl span {
    font-size: 3.8rem;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .bg01 {
    background: url("../images/important01.png") center no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f4cb;
    background-position: top center;
    background-size: cover;
  }
  .txtbg01 {
    background: #f6f4cb url("../images/important_bg02.png") no-repeat right;
  }
  .bg02 {
    background: url("../images/important02.png") center no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e4ffe4;
    background-position: top center;
    background-size: cover;
  }
  .txtbg02 {
    background: #e4ffe4 url("../images/important_bg02.png") no-repeat right;
  }
  .bg03 {
    background: url("../images/important03.png") center no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f1ff;
    background-position: top center;
    background-size: cover;
  }
  .txtbg03 {
    background: #e8f1ff url("../images/important_bg02.png") no-repeat right;
  }
  .bg04 {
    background: url("../images/important004.png") center no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffebd3;
    background-position: top center;
    background-size: cover;
  }
  .txtbg04 {
    background: #ffebd3 url("../images/important_bg02.png") no-repeat right;
  }
  .bg05 {
    background: url("../images/important05.png") center no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe3f9;
    background-position: top center;
    background-size: cover;
  }
  .txtbg05 {
    background: #ffe3f9 url("../images/important_bg02.png") no-repeat right;
  }
  .im_txt {
    font-size: 1.8rem;
    padding: 5rem;
  }
  .col_g {
    color: #55cf55;
    font-size: 5.8rem !important;
  }
  .wrap {
    flex-wrap: wrap;
  }
  .stretch {
    align-items: stretch;
  }
  .bg_b {
    background: #e2f0ff;
    padding-bottom: 10rem;
  }
  .medical {
    background: url("../images/medical_bg.png") no-repeat center;
    background-size: cover;
    position: relative;
    padding: 5rem 3rem;
  }
  .medical::before {
    content: "";
    background: url("../images/deco08.png") no-repeat;
    position: absolute;
    top: 240px;
    left: 22%;
    width: 207px;
    height: 217px;
  }
  .medical::after {
    content: "";
    background: url("../images/deco09.png") no-repeat;
    position: absolute;
    top: 240px;
    right: 5%;
    width: 146px;
    height: 138px;
  }
  .medical_ttl {
    text-align: center;
    font-size: 2.4rem;
    padding: 5rem;
  }
  .m_txt {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
    width: 300px;
    text-align: left;
    padding: 50px 0 50px;
    height: 700px;
  }
  .m_txt span {
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 160px;
    height: 545px;
  }
  .illust_box {
    display: grid;
    align-items: end;
  }
  .icon_box {
    width: 54%;
    z-index: 1;
    padding-right: 8rem;
  }
  .icon_box p {
    font-size: 2rem;
    font-weight: 600;
  }
  .icon_img {
    margin-bottom: 2rem;
  }
  .iconwrap {
    width: 40%;
    max-width: 320px;
  }
  .icon01 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon01::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #6b9ae8;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon02 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon02::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #55cf55;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon03 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon03::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #f69de4;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon04 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon04::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #9f9f9f;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon05 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon05::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #e49c49;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon06 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon06::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #502300;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .greeting {
    position: relative;
    background: url("../images/greeting_bg01.png") no-repeat center;
    background-size: cover;
    padding: 15rem 0;
  }
  .greeting::before {
    content: "";
    background: url("../images/deco10.png") no-repeat center;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 332px;
    height: 336px;
  }
  .greeting::after {
    content: "";
    background: url("../images/deco12.png") no-repeat center;
    position: absolute;
    bottom: 2rem;
    right: 0;
    width: 352px;
    height: 355px;
  }
  .greeting p {
    font-size: 1.6rem;
    padding: 1rem;
  }
  .doc_img {
    width: 40%;
    z-index: 1;
    padding-top: 10rem;
  }
  .doc_txt {
    width: 60%;
    padding: 3rem;
  }
  .doc_ttl {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
  }
  .doc_ttl::after {
    content: "";
    background: url("../images/deco11.png") no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
    width: 147px;
    height: 141px;
  }
  .doc_ttl span {
    font-size: 2.4rem;
    display: block;
  }
  .name {
    text-align: right;
    font-size: 2.4rem !important;
    font-weight: 600;
    color: #3e7db4;
  }
  .name span {
    font-size: 1.6rem;
  }
  .gallery {
    background: #fcffe2;
    padding: 8rem 0;
  }
  .time {
    padding: 5rem 0;
    font-size: 1.6rem !important;
  }
  .t_info {
    text-align: center;
    width: 45%;
    padding: 1rem;
    margin-bottom: 3rem;
  }
  .t_logo {
    margin-bottom: 2rem;
  }
  .add {
    margin-bottom: 2rem;
    position: relative;
  }
  .add::after {
    content: "";
    background: url("../images/Icon-marker.png") no-repeat center;
    position: absolute;
    top: 50%;
    left: 20%;
    height: 36px;
    width: 27px;
  }
  .t_time {
    width: 55%;
    padding: 1rem;
  }
  .time_table {
    background: #fcffe2;
    padding: 3rem;
    margin-bottom: 2rem;
  }
  .t_ore {
    color: #e49c49;
  }
  .t_bule {
    color: #6b9ae8;
  }
  .f_l_box {
    width: 45%;
  }
  .f_r_box {
    background: #e49c49;
    color: #ffffff;
    width: 55%;
    padding: 6rem 5%;
  }
  .sitemap_ttl {
    text-align: center;
    margin-bottom: 2rem;
  }
  .footerlist {
    margin-bottom: 5rem;
    border-top: 1px solid #ffffff;
    padding-top: 1rem;
  }
  .footerlist li {
    width: 45%;
    margin-top: 1rem;
    padding-left: 2rem;
    font-size: 1.8rem;
  }
  .footerlist li a {
    color: #ffffff;
  }
  .footerlist li::before {
    content: "-";
  }

  /*------------------------
    
    下層ページ
    
    ---------------------------*/

  .pagettl {
    background-image: url("../images/h2_bg.jpg");
    padding: 14rem 0 12rem;
    position: relative;
    margin-bottom: 5rem;
  }
  .pagettl::after {
    content: "";
    background: url("../images/deco03.png") no-repeat;
    background-size: 100%;
    position: absolute;
    right: 50px;
    bottom: -30px;
    width: 200px;
    height: 200px;
  }
  h2.h2_ttl {
    text-align: center;
  }
  h2.h2_ttl .ja {
    display: block;
    margin-bottom: 0.5em;
    line-height: 1;
    font-weight: 600;
    font-size: 3.8rem;
    letter-spacing: 0.1em;
    color: #ffffff;
  }
  h2.h2_ttl .eng {
    display: block;
    line-height: 1;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: #fff;
  }
  .h3_ttl {
    position: relative;
    padding: 2rem 1rem;
    background-image: url("../images/h3_bg.png");
    background-repeat: repeat;
    background-position: left top;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 5rem;
    color: #502300;
    text-align: center;
    font-size: 3.8rem;
  }
  .h3_ttl::after {
    content: "";
    background: url("../images/future_illust01.png") no-repeat;
    background-size: 100%;
    position: absolute;
    top: -3rem;
    left: 3rem;
    width: 92px;
    height: 150px;
  }
  .h3_ttl::before {
    content: "";
    background: url("../images/future_illust02.png") no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -3rem;
    right: 3rem;
    width: 107px;
    height: 80px;
  }
  .h4_ttl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    background: #6b9ae8;
    position: relative;
    height: 100%;
    padding: 1% 3%;
    text-align: center;
    line-height: 1.4;
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: 8rem 0 4rem;
    font-weight: 600;
  }
  .h4_ttl::after {
    content: "";
    background: #fff;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .clinic_list {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
  }
  .wrapbox {
    padding: 5rem 0;
  }
  .wrapbox p {
    font-size: 1.8rem;
    padding: 1rem 0;
  }
  .clinic_list {
    margin: 3rem;
  }
  .clinic_list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
  .clinic_list li::after {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
  }
  .box_career {
    padding-left: 5%;
    padding-right: 5%;
    background: #fff;
    border: 1px solid #ffcc27;
    position: relative;
    padding: 4rem 4% 5rem;
    margin: 3rem 6%;
  }
  .box_career::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border: 1px solid #ffcc27;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    margin: auto;
  }
  .list_career.flex li {
    width: 50%;
    font-size: 1.6rem;
    padding: 0.8rem;
  }
  .flex .img {
    width: 50%;
  }
  .flex .txt {
    width: 50%;
    padding: 0 5rem;
  }
  .single_txtbox .news_txt li dd {
    border-bottom: none;
  }
}

/*------------------------

tablet

--------------------------*/
@media screen and (max-width: 959px) and (min-width: 481px) {
  /* 959px以下に適用されるCSS（タブレット用） */
  .sp-only {
    display: none;
  }
  .top_area {
    background: url("../images/top_bg.png") top center no-repeat;
    background-size: cover;
  }
  .inner {
    display: flex;
    justify-content: space-between;
    max-width: calc(1460px - 3%);
    align-items: center;
    padding: 1rem 2rem;
    margin: 0 auto;
  }
  .nav {
    margin-right: auto;
    height: 8rem;
  }
  .gnav ul {
    display: flex;
    justify-content: space-around;
    height: 8rem;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 60%;
    margin-left: auto;
  }
  .mv {
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 3rem;
  }
  .mv::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 1%;
    width: 206px;
    height: 198px;
    background: url("../images/mv_deco01.png") no-repeat top center;
    background-size: 70%;
  }
  .mv::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 2%;
    width: 168px;
    height: 164px;
    background: url("../images/mv_deco02.png") no-repeat top center;
    background-size: 70%;
  }
  .catch {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 3.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    transform: translate(-50%, -50%);
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    letter-spacing: 0.4;
  }
  .en {
    position: absolute;
    bottom: -1%;
    left: 5%;
  }
  .h_r {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
  }
  .ad {
    position: relative;
    margin-right: 2rem;
    padding-left: 4rem;
  }
  .ad::before {
    content: "";
    background: url("../images/Icon-map-pin.svg") no-repeat center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 36px;
    transform: translateY(-50%);
  }
  .news_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 0;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .news {
    padding: 5rem 0;
  }
  .flex {
    display: flex;
  }
  .news_ttl {
    width: 20%;
    padding: 2rem 3rem 5rem;
    position: relative;
    color: #ffffff;
    background: #e2c361;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
  }
  .news_jp {
    display: block;
    font-size: 2.8rem;
    letter-spacing: 0.2em;
    line-height: 1;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: auto;
  }
  .news_txtbox {
    background: #fdffdb;
    padding: 3rem;
    width: 80%;
    height: 450px;
    overflow-y: scroll;
  }
  .news_txt {
    font-size: 1.8rem;
  }
  .news_txt li dt {
    font-size: 1.4rem;
    color: #3e7db4;
    margin-top: 1rem;
  }
  .news_txt li dd {
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
  }
  .future {
    background: #fcffe2;
    position: relative;
  }
  .future::before {
    content: "";
    background: url("../images/deco03.png") no-repeat center;
    position: absolute;
    top: 0;
    left: 1%;
    width: 352px;
    height: 355px;
    background-size: 60%;
  }
  .en_ttl {
    text-align: center;
    padding: 2rem 0;
  }
  .en_ttl span {
    display: block;
    font-size: 2.8rem;
  }
  .future_bgarea {
    background: url("../images/future_bg01.png") no-repeat top center;
    background-size: auto;
    position: relative;
  }
  .l_box {
    width: 50%;
    padding-top: 12rem;
  }
  .box_ttl {
    font-size: 3.8rem;
    font-weight: 600;
    text-align: center;
  }
  .box_txt {
  }
  .box_txt p {
    font-size: 1.8rem;
    padding: 3rem 5rem;
    text-align: center;
  }
  .box_ttl span {
    font-size: 8rem;
    color: #6b9ae8;
  }
  .r_box {
    width: 50%;
  }
  .futurecon {
    margin-bottom: 3rem;
    position: relative;
  }
  .futurecon::after {
    content: "";
    background: url("../images/future_img_c.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 99px;
    height: 99px;
    z-index: 1;
  }
  .future02 {
    margin-bottom: 3rem;
    padding: 5rem;
    position: relative;
  }
  .future02::before {
    content: "";
    background: url("../images/future_illust02.png") no-repeat center;
    background-size: 60%;
    position: absolute;
    left: 0;
    top: 14%;
    width: 315px;
    height: 237px;
  }
  .future02::after {
    content: "";
    background: url("../images/future_illust01.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: -28%;
    right: 0;
    width: 206px;
    height: 296px;
  }
  .future02 p {
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
  }
  .between {
    justify-content: space-between;
  }
  .around {
    justify-content: space-around;
  }
  .f_box01 {
    padding-top: 20rem;
    z-index: 1;
  }
  .f_box01 p {
    background: #e49c49;
    width: 100%;
  }
  .f_box02 {
    padding-top: 10rem;
    margin: 0 3rem;
  }
  .f_box02 p {
    background: #f69de4;
    width: 100%;
  }
  .f_box03 {
    padding-top: 0;
    z-index: 1;
  }
  .f_box03 p {
    background: #59cb48;
    width: 100%;
  }
  .f03_lbox {
    width: 48%;
    padding: 2rem;
  }
  .f03_rbox {
    width: 48%;
    padding: 2rem;
  }
  .future03 {
    position: relative;
    background: url("../images/future_bg02.png") no-repeat center;
    background-size: cover;
  }
  .future03::before {
    content: "";
    background: url("../images/deco04.png") no-repeat center;
    position: absolute;
    top: 3rem;
    right: -1rem;
    width: 200px;
    height: 191px;
    background-size: 70%;
  }
  .tc {
    text-align: center;
    padding: 3rem;
  }
  .future03_ttl {
    font-size: 3.8rem;
    text-align: center;
  }
  .future03_ttl span {
    font-size: 5.8rem;
    color: #e49c49;
  }
  .future03 p {
    font-size: 1.8rem;
  }
  .f03_lbox {
    width: 50%;
    max-width: 670px;
  }
  .f03_limg {
    width: 93%;
    max-width: 620px;
    margin-left: auto;
  }
  .f03_ltxt {
    width: 94%;
    max-width: 600px;
    position: relative;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    margin-top: -90px;
    padding: 2px 30px 54px;
    background: #fff;
  }
  .f03_ttl {
    font-size: 2rem;
    text-align: center;
    padding: 2rem 0;
    color: #502300;
  }
  .f03_ttl span {
    font-size: 3rem;
  }
  .f03_rbox {
    width: 50%;
    max-width: 670px;
  }
  .f03_rimg {
    width: 93%;
    max-width: 620px;
    margin-right: auto;
    margin-right: -1rem;
  }
  .f03_rtxt {
    width: 94%;
    max-width: 600px;
    position: relative;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    margin-top: -90px;
    padding: 2px 30px 54px;
    background: #fff;
    margin-left: auto;
  }
  .future04 {
    padding: 5rem 0;
    margin-bottom: 5rem;
    position: relative;
  }
  .future04::before {
    content: "";
    background: url("../images/deco05.png") no-repeat;
    position: absolute;
    top: 3rem;
    left: 1rem;
    width: 200px;
    height: 209px;
    background-size: 70%;
  }
  .future04::after {
    content: "";
    background: url("../images/future_illust03.png") no-repeat;
    position: absolute;
    top: -1.4rem;
    right: 1rem;
    width: 158px;
    height: 298px;
  }
  .future04 p {
    text-align: center;
    font-size: 1.8rem;
    padding: 2rem 0;
  }
  .future04_ttl {
    font-size: 3.8rem;
    text-align: center;
  }
  .future04_ttl span {
    font-size: 5.8rem;
    color: #55cf55;
  }
  .f04_box {
    padding: 2rem;
  }
  .ore {
    background: rgba(228, 156, 73, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -7.3rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .pnk {
    background: rgba(246, 157, 228, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -7.3rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .grn {
    background: rgba(89, 203, 72, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -7.3rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .mmt50 {
    margin-top: -5rem;
  }
  .pt50 {
    padding-top: 5rem;
  }
  .important {
    position: relative;
    background: url("../images/important_bg.png") no-repeat center;
    background-size: cover;
  }
  .important::before {
    content: "";
    background: url("../images/deco06.png") no-repeat center;
    position: absolute;
    top: 8rem;
    right: 0;
    width: 250px;
    height: 253px;
    background-size: 70%;
  }
  .important::after {
    content: "";
    background: url("../images/deco07.png") no-repeat center;
    position: absolute;
    top: 10rem;
    left: 0;
    width: 250px;
    height: 253px;
  }
  .important_ttl {
    text-align: center;
    font-size: 3.8rem;
    padding: 5rem;
  }
  .important_ttl span {
    font-size: 4.8rem;
    color: #55cf55;
  }
  .third {
    width: 100%;
    display: flex;
  }
  .half {
    width: 100%;
    display: flex;
  }
  .im_ttl {
    display: block;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-shadow: 2.1px 2.1px 2.1px #fff;
    text-align: center;
    width: 50%;
  }
  .im_ttl span {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .row_re {
    flex-direction: row-reverse;
  }
  .bg01 {
    background: url("../images/important01.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f4cb;
    background-position: top left;
  }
  .txtbg01 {
    background: #f6f4cb url("../images/important_bg02.png") no-repeat right;
  }
  .bg02 {
    background: url("../images/important02.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e4ffe4;
    background-position: top left;
  }
  .txtbg02 {
    background: #e4ffe4 url("../images/important_bg02.png") no-repeat right;
  }
  .bg03 {
    background: url("../images/important03.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f1ff;
    background-position: top left;
  }
  .txtbg03 {
    background: #e8f1ff url("../images/important_bg02.png") no-repeat right;
  }
  .bg04 {
    background: url("../images/important004.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffebd3;
    background-position: top left;
  }
  .txtbg04 {
    background: #ffebd3 url("../images/important_bg02.png") no-repeat right;
  }
  .bg05 {
    background: url("../images/important05.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe3f9;
    background-position: top left;
  }
  .txtbg05 {
    background: #ffe3f9 url("../images/important_bg02.png") no-repeat right;
  }
  .im_txt {
    font-size: 1.8rem;
    padding: 2rem;
    width: 50%;
    display: flex;
    align-items: center;
  }
  .col_g {
    color: #55cf55;
    font-size: 4.8rem !important;
  }
  .wrap {
    flex-wrap: wrap;
  }
  .stretch {
    align-items: stretch;
  }
  .bg_b {
    background: #e2f0ff;
    padding-bottom: 10rem;
  }
  .medical {
    background: url("../images/medical_bg.png") no-repeat center;
    background-size: cover;
    position: relative;
    padding: 5rem 3rem;
  }
  .medical::before {
    content: "";
    background: url("../images/deco08.png") no-repeat;
    position: absolute;
    top: 240px;
    left: 22%;
    width: 207px;
    height: 217px;
  }
  .medical::after {
    content: "";
    background: url("../images/deco09.png") no-repeat;
    position: absolute;
    top: 240px;
    right: 5%;
    width: 146px;
    height: 138px;
  }
  .medical_ttl {
    text-align: center;
    font-size: 2.4rem;
    padding: 5rem;
  }
  .m_txt {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
    width: 100px;
    text-align: left;
    padding: 50px 0 50px;
    height: 700px;
  }
  .m_txt span {
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 160px;
    height: 545px;
  }
  .illust_box {
    display: grid;
    align-items: end;
  }
  .icon_box {
    width: 90%;
    z-index: 1;
    padding-right: 0rem;
  }
  .icon_box p {
    font-size: 2rem;
    font-weight: 600;
  }
  .icon_img {
    margin-bottom: 2rem;
  }
  .iconwrap {
    width: 40%;
    max-width: 320px;
  }
  .icon01 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon01::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #6b9ae8;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon02 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon02::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #55cf55;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon03 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon03::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #f69de4;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon04 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon04::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #9f9f9f;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon05 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon05::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #e49c49;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon06 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon06::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #502300;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .greeting {
    position: relative;
    background: url("../images/greeting_bg01.png") no-repeat center;
    background-size: cover;
    padding: 5rem 0;
  }
  .greeting::before {
    content: "";
    background: url("../images/deco10.png") no-repeat center;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 332px;
    height: 336px;
    background-size: 70%;
  }
  .greeting::after {
    content: "";
    background: url("../images/deco12.png") no-repeat center;
    position: absolute;
    bottom: 8rem;
    right: 0;
    width: 352px;
    height: 355px;
    background-size: 50%;
  }
  .greeting p {
    font-size: 1.6rem;
    padding: 1rem;
  }
  .doc_img {
    width: 40%;
    z-index: 1;
    padding-top: 10rem;
  }
  .doc_txt {
    width: 60%;
    padding: 3rem;
  }
  .doc_ttl {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
  }
  .doc_ttl::after {
    content: "";
    background: url("../images/deco11.png") no-repeat center;
    position: absolute;
    top: -9rem;
    right: 0rem;
    width: 147px;
    height: 141px;
    background-size: 70%;
  }
  .doc_ttl span {
    font-size: 2.4rem;
    display: block;
  }
  .name {
    text-align: right;
    font-size: 2.4rem !important;
    font-weight: 600;
    color: #3e7db4;
  }
  .name span {
    font-size: 1.6rem;
  }
  .gallery {
    background: #fcffe2;
    padding: 8rem 0;
  }
  .time {
    padding: 5rem 0;
    font-size: 1.6rem !important;
  }
  .t_info {
    text-align: center;
    width: 100%;
    padding: 1rem;
    margin-bottom: 3rem;
  }
  .t_logo {
    margin-bottom: 2rem;
  }
  .add {
    margin-bottom: 2rem;
    position: relative;
  }
  .add::after {
    content: "";
    background: url("../images/Icon-marker.png") no-repeat center;
    position: absolute;
    top: 50%;
    left: 20%;
    height: 36px;
    width: 27px;
  }
  .t_time {
    width: 100%;
    padding: 1rem;
  }
  .time_table {
    background: #fcffe2;
    padding: 3rem 12rem;
    margin-bottom: 2rem;
  }
  .t_ore {
    color: #e49c49;
  }
  .t_bule {
    color: #6b9ae8;
  }
  .f_l_box {
    width: 100%;
  }
  .f_r_box {
    background: #e49c49;
    color: #ffffff;
    width: 100%;
    padding: 6rem 5%;
    max-width: 960px;
  }
  .sitemap_ttl {
    text-align: center;
    margin-bottom: 2rem;
  }
  .footerlist {
    margin-bottom: 5rem;
    border-top: 1px solid #ffffff;
    padding-top: 1rem;
  }
  .footerlist li {
    width: 45%;
    margin-top: 1rem;
    padding-left: 2rem;
    font-size: 1.8rem;
  }
  .footerlist li a {
    color: #ffffff;
  }
  .footerlist li::before {
    content: "-";
  }
  /*------------------------
    
    下層ページ
    
    ---------------------------*/

  .pagettl {
    background-image: url("../images/h2_bg.jpg");
    padding: 14rem 0 12rem;
    position: relative;
    margin-bottom: 5rem;
  }
  .pagettl::after {
    content: "";
    background: url("../images/deco03.png") no-repeat;
    background-size: 100%;
    position: absolute;
    right: 50px;
    bottom: -30px;
    width: 200px;
    height: 200px;
  }
  h2.h2_ttl {
    text-align: center;
  }
  h2.h2_ttl .ja {
    display: block;
    margin-bottom: 0.5em;
    line-height: 1;
    font-weight: 600;
    font-size: 3.8rem;
    letter-spacing: 0.1em;
    color: #ffffff;
  }
  h2.h2_ttl .eng {
    display: block;
    line-height: 1;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: #fff;
  }
  .h3_ttl {
    position: relative;
    padding: 2rem 1rem;
    background-image: url("../images/h3_bg.png");
    background-repeat: repeat;
    background-position: left top;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 5rem;
    color: #502300;
    text-align: center;
    font-size: 3rem;
  }
  .h3_ttl::after {
    content: "";
    background: url("../images/future_illust01.png") no-repeat;
    background-size: 100%;
    position: absolute;
    top: -3rem;
    left: 3rem;
    width: 92px;
    height: 150px;
  }
  .h3_ttl::before {
    content: "";
    background: url("../images/future_illust02.png") no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -3rem;
    right: 3rem;
    width: 107px;
    height: 80px;
  }
  .h4_ttl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    background: #6b9ae8;
    position: relative;
    height: 100%;
    padding: 1% 3%;
    text-align: center;
    line-height: 1.4;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: 8rem 0 4rem;
    font-weight: 600;
  }
  .h4_ttl::after {
    content: "";
    background: #fff;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .clinic_list {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
  }
  .wrapbox {
    padding: 5rem 0;
  }
  .wrapbox p {
    font-size: 1.8rem;
    padding: 1rem 0;
  }
  .clinic_list {
    margin: 3rem;
  }
  .clinic_list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
  .clinic_list li::after {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
  }
  .box_career {
    padding-left: 5%;
    padding-right: 5%;
    background: #fff;
    border: 1px solid #ffcc27;
    position: relative;
    padding: 4rem 4% 5rem;
    margin: 3rem 6%;
  }
  .box_career::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border: 1px solid #ffcc27;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    margin: auto;
  }
  .list_career.flex li {
    width: 50%;
    font-size: 1.6rem;
    padding: 0.8rem;
  }
  .flex .img {
    width: 50%;
  }
  .flex .txt {
    width: 50%;
    padding: 0 5rem;
  }
}


@media screen and (max-width: 768px) {
  .single_txtbox .news_txt li dl {
    display: block;
  }

  .single_txtbox .news_txt li dt {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

/*------------------------

SP

--------------------------*/
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .pc-only {
    display: none !important;
  }
  .top_area {
    background: url("../images/top_bg.png") top center no-repeat;
    background-size: cover;
  }
  .logo {
    width: 70%;
  }
  .inner {
    display: flex;
    justify-content: space-between;
    max-width: calc(420px - 3%);
    align-items: center;
    padding: 1rem 2rem;
    margin: 0 auto;
  }
  .nav {
    margin-right: auto;
    height: 8rem;
  }
  .gnav ul {
    display: flex;
    justify-content: space-around;
    height: 8rem;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 60%;
    margin-left: auto;
  }
  .mv {
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 3rem;
  }
  .mv::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 1%;
    width: 206px;
    height: 198px;
    background: url("../images/mv_deco01.png") no-repeat top left;
    background-size: 30%;
  }
  .mv::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 168px;
    height: 78px;
    background: url("../images/mv_deco02.png") no-repeat top right;
    background-size: 40%;
  }
  .catch {
    position: absolute;
    top: 30%;
    left: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    transform: translate(-50%, -50%);
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    letter-spacing: 0.4;
    width: 100%;
  }
  .en {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 80%;
  }
  .h_r {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
  }
  .ad {
    position: relative;
    margin-right: 2rem;
    padding-left: 4rem;
  }
  .ad::before {
    content: "";
    background: url("../images/Icon-map-pin.svg") no-repeat center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 36px;
    transform: translateY(-50%);
  }
  .news_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 0;
    flex-flow: wrap;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .news {
    padding: 3rem 0;
  }
  .flex {
    display: flex;
    flex-wrap: wrap;
  }
  .news_ttl {
    width: 100%;
    padding: 1rem 1rem 3rem;
    position: relative;
    color: #ffffff;
    background: #e2c361;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .news_jp {
    display: block;
    font-size: 2rem;
    letter-spacing: 0.2em;
    line-height: 1;
    margin: auto;
  }
  .news_txtbox {
    background: #fdffdb;
    padding: 3rem;
    width: 100%;
    height: 450px;
    overflow-y: scroll;
  }
  .news_txt {
    font-size: 1.8rem;
  }
  .news_txt li dt {
    font-size: 1.4rem;
    color: #3e7db4;
    margin-top: 1rem;
  }
  .news_txt li dd {
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
  }
  .future {
    background: #fcffe2;
    position: relative;
  }
  .future::before {
    content: "";
    background: url("../images/deco03.png") no-repeat center left;
    position: absolute;
    top: -32px;
    left: 1%;
    width: 74px;
    height: 76px;
    background-size: 100%;
  }
  .en_ttl {
    text-align: center;
    padding: 2rem 0;
  }
  .en_ttl img {
    width: 50%;
  }
  .en_ttl span {
    display: block;
    font-size: 2rem;
  }
  .future_bgarea {
    background: url("../images/future_bg01.png") no-repeat top center;
    background-size: auto;
    position: relative;
  }
  .l_box {
    width: 100%;
  }
  .box_ttl {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
  }
  .box_txt {
  }
  .box_txt p {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    text-align: center;
  }
  .box_ttl span {
    font-size: 6rem;
    color: #6b9ae8;
  }
  .r_box {
    width: 100%;
  }
  .futurecon {
    margin-bottom: 3rem;
    position: relative;
    flex-wrap: wrap;
  }
  .futurecon::after {
    content: "";
    background: url("../images/future_img_c.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 99px;
    height: 99px;
    z-index: 1;
  }
  .future02 {
    margin-bottom: 3rem;
    padding: 3rem;
    position: relative;
  }
  .future02::before {
    content: "";
    background: url("../images/future_illust02.png") no-repeat center;
    background-size: 60%;
    position: absolute;
    left: 0;
    top: -9rem;
    width: 190px;
    height: 237px;
  }
  .future02::after {
    content: "";
    background: url("../images/future_illust01.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: -4rem;
    right: 0;
    width: 97px;
    height: 140px;
  }
  .future02 p {
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
  }
  .between {
    justify-content: space-between;
  }
  .around {
    justify-content: space-around;
  }
  .f_box01 {
    padding-top: 1rem;
    z-index: 1;
  }
  .f_box01 p {
    background: #e49c49;
    width: 100%;
  }
  .f_box02 {
    padding-top: 3rem;
    margin: 0 0rem 3rem;
  }
  .f_box02 p {
    background: #f69de4;
    width: 100%;
  }
  .f_box03 {
    padding-top: 0;
    z-index: 1;
  }
  .f_box03 p {
    background: #59cb48;
    width: 100%;
  }
  .f03_lbox {
    width: 48%;
    padding: 2rem;
  }
  .f03_rbox {
    width: 48%;
    padding: 2rem;
  }
  .future03 {
    position: relative;
    background: url("../images/future_bg02.png") no-repeat center;
    background-size: cover;
  }
  .future03::before {
    content: "";
    background: url("../images/deco04.png") no-repeat center;
    position: absolute;
    top: -4rem;
    right: -1rem;
    width: 98px;
    height: 100px;
    background-size: 70%;
  }
  .tc {
    text-align: center;
    padding: 3rem;
  }
  .future03_ttl {
    font-size: 2.8rem;
    text-align: center;
  }
  .future03_ttl span {
    font-size: 3.8rem;
    color: #e49c49;
  }
  .future03 p {
    font-size: 1.8rem;
  }
  .f03_lbox {
    width: 100%;
    max-width: 670px;
  }
  .f03_limg {
    width: 93%;
    max-width: 620px;
    margin-left: auto;
  }
  .f03_ltxt {
    width: 94%;
    max-width: 600px;
    position: relative;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    margin-top: -90px;
    padding: 2px 30px 54px;
    background: #fff;
  }
  .f03_ttl {
    font-size: 1.8rem;
    text-align: center;
    padding: 2rem 0;
    color: #502300;
  }
  .f03_ttl span {
    font-size: 2.8rem;
  }
  .f03_rbox {
    width: 100%;
    max-width: 670px;
  }
  .f03_rimg {
    width: 93%;
    max-width: 620px;
    margin-right: auto;
    margin-right: -1rem;
  }
  .f03_rtxt {
    width: 94%;
    max-width: 600px;
    position: relative;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    margin-top: -90px;
    padding: 2px 30px 54px;
    background: #fff;
    margin-left: auto;
  }
  .future04 {
    padding: 5rem 0;
    margin-bottom: 5rem;
    position: relative;
  }
  .future04::before {
    content: "";
    background: url("../images/deco05.png") no-repeat;
    position: absolute;
    top: 3rem;
    left: 1rem;
    width: 100px;
    height: 100px;
    background-size: 70%;
  }
  .future04::after {
    content: "";
    background: url("../images/future_illust03.png") no-repeat;
    position: absolute;
    top: -1.4rem;
    right: 1rem;
    width: 67px;
    height: 209px;
    background-size: 100%;
  }
  .future04 p {
    text-align: center;
    font-size: 1.8rem;
    padding: 2rem 0;
  }
  .future04_ttl {
    font-size: 2.8rem;
    text-align: center;
  }
  .future04_ttl span {
    font-size: 4.8rem;
    color: #55cf55;
  }
  .f04_box {
    padding: 2rem;
  }
  .ore {
    background: rgba(228, 156, 73, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -6rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .pnk {
    background: rgba(246, 157, 228, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -6rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .grn {
    background: rgba(89, 203, 72, 0.8);
    width: 100%;
    padding: 2rem;
    margin-top: -6rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
  }
  .mmt50 {
  }
  .pt50 {
  }
  .important {
    position: relative;
    background: url("../images/important_bg.png") no-repeat center;
    background-size: cover;
  }
  .important::before {
    content: "";
    background: url("../images/deco06.png") no-repeat center;
    position: absolute;
    top: 8rem;
    right: 0;
    width: 74px;
    height: 100px;
    background-size: 100%;
  }
  .important::after {
    content: "";
    background: url("../images/deco07.png") no-repeat center;
    position: absolute;
    top: 10rem;
    left: 0;
    width: 80px;
    height: 80px;
    background-size: 100%;
  }
  .important_ttl {
    text-align: center;
    font-size: 2.8rem;
    padding: 3rem;
  }
  .important_ttl span {
    font-size: 4.8rem;
    color: #55cf55;
  }
  .third {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .half {
    width: 100%;
    display: flex;
    flex-direction: column !important;
  }
  .im_ttl {
    display: block;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-shadow: 2.1px 2.1px 2.1px #fff;
    text-align: center;
    width: 100%;
  }
  .im_ttl span {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .row_re {
    flex-direction: row-reverse;
  }
  .bg01 {
    background: url("../images/important01.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f4cb;
    background-position: top left;
  }
  .txtbg01 {
    background: #f6f4cb url("../images/important_bg02.png") no-repeat right;
  }
  .bg02 {
    background: url("../images/important02.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e4ffe4;
    background-position: top left;
  }
  .txtbg02 {
    background: #e4ffe4 url("../images/important_bg02.png") no-repeat right;
  }
  .bg03 {
    background: url("../images/important03.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f1ff;
    background-position: top left;
  }
  .txtbg03 {
    background: #e8f1ff url("../images/important_bg02.png") no-repeat right;
  }
  .bg04 {
    background: url("../images/important004.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffebd3;
    background-position: top left;
  }
  .txtbg04 {
    background: #ffebd3 url("../images/important_bg02.png") no-repeat right;
  }
  .bg05 {
    background: url("../images/important05.png") center no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe3f9;
    background-position: top left;
  }
  .txtbg05 {
    background: #ffe3f9 url("../images/important_bg02.png") no-repeat right;
  }
  .im_txt {
    font-size: 1.8rem;
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .col_g {
    color: #55cf55;
    font-size: 4.8rem !important;
  }
  .wrap {
    flex-wrap: wrap;
  }
  .stretch {
    align-items: stretch;
  }
  .bg_b {
    background: #e2f0ff;
    padding-bottom: 10rem;
  }
  .medical {
    background: url("../images/medical_bg.png") no-repeat center;
    background-size: cover;
    position: relative;
    padding: 5rem 3rem;
  }
  .medical::before {
    content: "";
    background: url("../images/deco08.png") no-repeat;
    position: absolute;
    top: 94px;
    left: 4%;
    width: 90px;
    height: 112px;
    background-size: 100%;
  }
  .medical::after {
    content: "";
    background: url("../images/deco09.png") no-repeat;
    position: absolute;
    top: 145px;
    right: 5%;
    width: 86px;
    height: 138px;
    background-size: 100%;
  }
  .medical_ttl {
    text-align: center;
    font-size: 2.4rem;
    padding: 1rem;
  }
  .m_txt {
    font-size: 1.8rem;
    padding: 3rem 0;
    text-align: center;
  }
  .m_txt span {
    margin: 0 auto;
  }
  .illust_box {
    width: 50%;
    margin: 0 auto;
  }
  .icon_box {
    width: 100%;
    z-index: 1;
    padding-right: 0rem;
  }
  .icon_box p {
    font-size: 2rem;
    font-weight: 600;
  }
  .icon_img {
    margin-bottom: 2rem;
  }
  .iconwrap {
    width: 100%;
    max-width: 320px;
  }
  .icon01 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon01::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #6b9ae8;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon02 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon02::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #55cf55;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon03 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon03::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #f69de4;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon04 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon04::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #9f9f9f;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon05 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon05::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #e49c49;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .icon06 {
    height: 200px;
    padding: 4rem 2rem 0;
    box-shadow: 2.1px 2.1px 7px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    background: #ffffff;
    margin: 0 2rem 2rem;
    text-align: center;
  }
  .icon06::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 14px solid #502300;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    right: 17px;
    bottom: 10px;
    transform: rotate(45deg);
  }
  .greeting {
    position: relative;
    background: url("../images/greeting_bg01.png") no-repeat center;
    background-size: cover;
    padding: 5rem 0;
  }
  .greeting::before {
    content: "";
    background: url("../images/deco10.png") no-repeat center;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100px;
    height: 100px;
    background-size: 100%;
  }
  .greeting::after {
    content: "";
    background: url("../images/deco12.png") no-repeat center;
    position: absolute;
    bottom: 52rem;
    right: 0;
    width: 250px;
    height: 250px;
    background-size: 50%;
  }
  .greeting p {
    font-size: 1.6rem;
    padding: 1rem;
  }
  .doc_img {
    width: 100%;
    z-index: 1;
  }
  .doc_txt {
    width: 100%;
    padding: 1rem;
  }
  .doc_ttl {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
  }
  .doc_ttl::after {
    content: "";
    background: url("../images/deco11.png") no-repeat right;
    position: absolute;
    top: 11rem;
    right: 0rem;
    width: 100px;
    height: 100px;
    background-size: 100%;
  }
  .col_re {
    flex-direction: column-reverse;
  }
  .doc_ttl span {
    font-size: 2.4rem;
    display: block;
  }
  .name {
    text-align: right;
    font-size: 2.4rem !important;
    font-weight: 600;
    color: #3e7db4;
  }
  .name span {
    font-size: 1.6rem;
  }
  .gallery {
    background: #fcffe2;
    padding: 8rem 0;
  }
  .time {
    padding: 5rem 0;
    font-size: 1.6rem !important;
  }
  .t_info {
    text-align: center;
    width: 100%;
    padding: 1rem;
    margin-bottom: 3rem;
  }
  .t_logo {
    margin-bottom: 2rem;
  }
  .add {
    margin-bottom: 2rem;
    position: relative;
  }
  .add::after {
    content: "";
    background: url("../images/Icon-marker.png") no-repeat center;
    position: absolute;
    top: 50%;
    left: 8%;
    height: 36px;
    width: 27px;
    transform: translateY(-50%);
  }
  .t_time {
    width: 100%;
    padding: 1rem;
  }
  .time_table {
    background: #fcffe2;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
  }
  .t_ore {
    color: #e49c49;
  }
  .t_bule {
    color: #6b9ae8;
  }
  .f_l_box {
    width: 100%;
  }
  .f_r_box {
    background: #e49c49;
    color: #ffffff;
    width: 100%;
    padding: 6rem 3%;
    max-width: 960px;
  }
  .sitemap_ttl {
    text-align: center;
    margin-bottom: 2rem;
  }
  .footerlist {
    margin-bottom: 5rem;
    border-top: 1px solid #ffffff;
    padding-top: 1rem;
  }
  .footerlist li {
    width: 48%;
    margin-top: 1rem;
    padding-left: 2rem;
    font-size: 1.8rem;
  }
  .footerlist li a {
    color: #ffffff;
  }
  .footerlist li::before {
    content: "-";
  }
  /*------------------------
    
    下層ページ
    
    ---------------------------*/

  .pagettl {
    background-image: url("../images/h2_bg.jpg");
    padding: 8rem 0 9rem;
    position: relative;
    margin-bottom: 5rem;
  }
  .pagettl::after {
    content: "";
    background: url("../images/deco03.png") no-repeat;
    background-size: 100%;
    position: absolute;
    right: 10px;
    bottom: -30px;
    width: 120px;
    height: 120px;
  }
  h2.h2_ttl {
    text-align: center;
  }
  h2.h2_ttl .ja {
    display: block;
    margin-bottom: 0.5em;
    line-height: 1;
    font-weight: 600;
    font-size: 3.8rem;
    letter-spacing: 0.1em;
    color: #ffffff;
  }
  h2.h2_ttl .eng {
    display: block;
    line-height: 1;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: #fff;
  }
  .h3_ttl {
    position: relative;
    padding: 2rem 1rem;
    background-image: url("../images/h3_bg.png");
    background-repeat: repeat;
    background-position: left top;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 5rem;
    color: #502300;
    text-align: center;
    font-size: 2.4rem;
  }
  .h3_ttl::after {
    content: "";
    background: url("../images/future_illust01.png") no-repeat;
    background-size: 100%;
    position: absolute;
    top: -3rem;
    left: 0rem;
    width: 84px;
    height: 122px;
  }
  .h3_ttl::before {
    content: "";
    background: url("../images/future_illust02.png") no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -3rem;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .h4_ttl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    background: #6b9ae8;
    position: relative;
    height: 100%;
    padding: 1% 3%;
    text-align: center;
    line-height: 1.4;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: 8rem 0 4rem;
    font-weight: 600;
  }
  .h4_ttl::after {
    content: "";
    background: #fff;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .clinic_list {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
  }
  .wrapbox {
    padding: 5rem 0;
  }
  .wrapbox p {
    font-size: 1.8rem;
    padding: 1rem 0;
  }
  .clinic_list {
    margin: 3rem;
  }
  .clinic_list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
  .clinic_list li::after {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
  }
  .box_career {
    padding-left: 5%;
    padding-right: 5%;
    background: #fff;
    border: 1px solid #ffcc27;
    position: relative;
    padding: 4rem 4% 5rem;
    margin: 3rem 6%;
  }
  .box_career::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border: 1px solid #ffcc27;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    margin: auto;
  }
  .list_career.flex li {
    width: 100%;
    font-size: 1.6rem;
    padding: 0.8rem;
  }
  .flex .img {
    width: 100%;
  }
  .flex .txt {
    width: 100%;
    padding: 1rem 0;
  }
}
