@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
/*基本背景色PC*/
/*基本文字色*/
/*リンク色*/
/*ポイントカラーメイン*/
/*ポイントカラーサブ*/
/*赤*/
/*緑*/
/*橙*/
/*青*/
/* _reset.scss　出力*/
*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

button {
  cursor: pointer;
  appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
}

h5, h6 {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 1em 0;
}

img {
  height: auto;
  border: none;
  object-fit: contain;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

a {
  text-decoration: none;
}

/* /_reset.scss　出力ここまで */
/* _module.scss　出力 */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.underline {
  background: linear-gradient(transparent 60%, #e7dfec 60%);
}

.font_s {
  font-size: smaller;
}

.font_l {
  font-size: larger;
}

.fc_orange {
  color: #EC9B37 !important;
}

.fc_green {
  color: #00AFCC !important;
}

/* テキストカラー -------------------------------------- */
.fc_red {
  color: #ce1f3e !important;
}

.fc_blue {
  color: #004C7A !important;
}

.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l, .img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
  #lower main .inner img.img_r, #lower main .inner img.img_l {
    width: 30rem;
  }
}
.sp_n, .sp_n_i {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .sp_n_i {
    display: inline !important;
  }
  .pc_n {
    display: none;
  }
}
/* マージン -------------------------------------- */
.mb_00 {
  margin-bottom: 0 !important;
}

.mb_05 {
  margin-bottom: 0.5rem !important;
}

.mb_10 {
  margin-bottom: 1rem !important;
}

.mb_15 {
  margin-bottom: 1.5rem !important;
}

.mb_20 {
  margin-bottom: 2rem !important;
}

.mb_25 {
  margin-bottom: 2.5rem !important;
}

.mb_30 {
  margin-bottom: 3rem !important;
}

.mb_35 {
  margin-bottom: 3.5rem !important;
}

.mb_40 {
  margin-bottom: 4rem !important;
}

.mb_45 {
  margin-bottom: 4.5rem !important;
}

.mb_50 {
  margin-bottom: 5rem !important;
}

/* flex box */
.flex_LRTB, .flex_RLTB {
  flex-direction: column;
  -webkit-flex-direction: column;
}

@media screen and (min-width: 48em), print {
  /* PCで左→右に配置／SPで上→下に配置 */
  .flex_LRTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
  }
  .flex_LRTB.half {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_LRTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_LRTB.half > li {
    margin-bottom: 1rem;
  }
  .flex_LRTB.half > section {
    margin: 0 !important;
  }
  .flex_LRTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_LRTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.center {
    justify-content: center;
  }
  /* PCで右→左に配置／SPで上→下に配置 */
  .flex_RLTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
  }
  .flex_RLTB.half {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_RLTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_RLTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_RLTB.half > figure + ul {
    width: 68% !important;
  }
}
/* ----------------------------------------------------------------------------------
リストなど　_basic.scss
---------------------------------------------------------------------------------- */
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
ul {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
ul li {
  margin: 0 0 10px;
  padding: 0;
}

/* シンプル -------------------------------------- */
ul.list_sim {
  margin: 0 0 10px 20px;
}
ul.list_sim > li {
  margin: 0 0 8px 0;
  padding: 0;
  text-indent: -0.5em;
}
ul.list_sim > li::before {
  position: relative;
  top: -0.1em;
  left: -0.5em;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  content: "";
  border-radius: 100%;
  background: #00AFCC;
  vertical-align: middle;
}

/* ● -------------------------------------- */
ul.list_maru {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_maru li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_maru li::before {
  display: inline-block;
  content: "●";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: #00AFCC;
}

/*　● インライン -------------------------------------- */
ul.list_maru.list_in li {
  display: inline-block;
  margin: 0 40px 8px 0;
}

/* ※ -------------------------------------- */
ul.list_kome {
  padding: 0;
}
ul.list_kome li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
ul.list_kome li::before {
  content: "※";
  width: 1em;
  color: #f0013c;
}

/* link -------------------------------------- */
ul.list_lnk {
  padding: 0;
}
ul.list_lnk li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.8rem;
}
ul.list_lnk li::before {
  font-family: "fontello";
  content: "w";
  padding-right: 0.5rem;
  font-weight: bold;
  color: #008299;
}
ul.list_lnk a {
  color: #008299;
}

/* ページ内リンク -------------------------------------- */
ul.list_pl li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
ul.list_pl li a {
  color: #333;
}
ul.list_pl a::before {
  font-family: "fontello";
  content: "r";
  padding-right: 5px;
  font-weight: bold;
  color: #00AFCC;
}

@media screen and (min-width: 48em), print {
  ul.list_pl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  ul.list_pl li {
    width: 33%;
  }
  ul.list_pl li a {
    background: rgba(0, 76, 122, 0.2);
    display: block;
    border: #004C7A solid 2px;
    border-radius: 5px;
    padding: 7px 0 7px 25px;
  }
  ul.list_pl::after {
    content: "";
    display: block;
    width: 33%;
  }
}
/* 数値 -------------------------------------- */
ol.list_num {
  box-sizing: border-box;
  width: 100%;
}
ol.list_num li {
  list-style-type: decimal;
  margin: 0 0 10px 35px;
  box-sizing: border-box;
  width: 90%;
}

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow li {
  border: 5px solid #00AFCC;
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 0.5rem 1rem 1rem;
  position: relative;
}
ol.list_flow li p.ttl {
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 0.5rem;
}
ol.list_flow li p.ttl::first-letter {
  color: #008299;
  font-size: 2.5rem;
  padding-right: 0.5rem;
}
ol.list_flow li *:last-child {
  margin-bottom: 0;
}
ol.list_flow li::after {
  bottom: -30px;
  color: #00AFCC;
  content: "▼";
  font-size: 24px !important;
  left: 48%;
  position: absolute;
}
ol.list_flow li:last-child::after { /*最後の▼を外す*/
  content: "";
}

@media screen and (min-width: 48em), print {
  ol.list_flow li {
    padding: 0.5rem 1.5rem 1.5rem;
  }
  ol.list_flow li p.ttl::first-letter {
    font-size: 3rem;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.dl_career dd {
  margin: 0 0 1em 5px;
}

@media screen and (min-width: 48em), print {
  .dl_career {
    display: flex;
    flex-wrap: wrap;
  }
  .dl_career dt {
    width: 12em;
  }
  .dl_career dd {
    width: calc(100% - 13em);
  }
}
/* dtに二重線 -------------------------------------- */
.dl_def {
  margin: 2rem auto;
}
.dl_def > dt {
  font-weight: bold;
  border-bottom: double 3px #008299;
  margin-bottom: 0.7rem;
}
.dl_def > dd {
  margin-bottom: 1.5rem;
}
.dl_def > dd ul.list_maru li::before {
  color: #004C7A;
}

/* テーブルもどき -------------------------------------- */
.dl_tbl {
  border: #00AFCC solid 1px;
  margin-bottom: 0.5rem;
}
.dl_tbl > dt {
  background: #00AFCC;
  padding: 0.5rem;
  color: #fff;
  font-size: 105%;
}
.dl_tbl > dd {
  padding: 1rem;
  margin: 0;
}
.dl_tbl > dd *:last-child {
  margin-bottom: 0;
}
.dl_tbl > dd > ul.list_maru li::before {
  color: #008299;
}

@media screen and (min-width: 48em), print {
  .dl_tbl > dt {
    padding: 1.5rem;
  }
  .dl_tbl > dd {
    padding: 1.5rem;
  }
}
/* box -------------------------------------- */
.box1, .box2 {
  padding: 20px !important;
  margin-bottom: 20px;
  background: rgba(0, 76, 122, 0.1);
  border-radius: 0.5rem;
}
.box1 > dt, .box2 > dt {
  border-bottom: #004C7A dotted 2px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-weight: bold;
}
.box1 > dd, .box2 > dd {
  margin: 10px;
}
.box1 > dd dt, .box2 > dd dt {
  color: #00AFCC;
  font-weight: bold;
}
.box1 > *:last-child, .box2 > *:last-child {
  margin-bottom: 0;
}
.box1 ul.list_maru > li::before, .box2 ul.list_maru > li::before {
  color: #004C7A;
}

.box2 {
  background: rgba(0, 175, 204, 0.1);
}
.box2 dt {
  border-bottom: #00AFCC dotted 2px;
}
.box2 ul.list_maru > li::before {
  color: #00AFCC;
}

@media screen and (min-width: 48em), print {
  .box1 > dt, .box2 > dt {
    font-size: 18px;
  }
  .box1 > dd dt, .box2 > dd dt {
    font-size: 17px;
  }
}
/* リンク -------------------------------------- */
a {
  text-decoration: none;
}

main a {
  border-bottom: 1px solid #008299;
  color: #008299;
}

main a:hover {
  color: #004C7A;
  border-bottom: 1px solid #004C7A;
}

a.btn {
  background: transparent linear-gradient(172deg, var(--unnamed-color-b19447) 0%, var(--unnamed-color-b19447) 46%, #91762E 50%, #91762E 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(172deg, #B19447 0%, #B19447 46%, #91762E 50%, #91762E 100%) 0% 0% no-repeat padding-box;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  color: #fff;
  padding: 1.5rem 4rem;
  text-align: center;
  margin: 5px auto;
  width: auto;
  display: inline-block;
  position: relative;
  border: none;
}
a.btn:hover {
  border: none !important;
  color: #fff !important;
  opacity: 0.8;
}

a[target=_blank]::after {
  font-family: fontello;
  content: "\f08e";
  padding-left: 0.3rem;
}

a.border_n {
  border: none !important;
}

/* 画像  -------------------------------------- */
figure {
  margin: 0;
}

#lower figure {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  width: auto;
}

/* Table  -------------------------------------- */
.tbl_def {
  border: 0.1rem solid #008299;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}
.tbl_def caption {
  caption-side: bottom;
  text-align: left;
  padding: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.tbl_def thead {
  background: #008299;
  color: #fff;
}
.tbl_def thead th {
  padding: 0.7rem 0;
  font-weight: normal;
}
.tbl_def tbody th {
  background: #00AFCC;
  color: #fff;
  font-weight: normal;
  border-bottom: 0.1rem solid #fff;
}
.tbl_def tbody td {
  border-bottom: 0.1rem solid #00AFCC;
}
.tbl_def tbody > tr:last-child th, .tbl_def tbody > tr:last-child td {
  border-bottom: none;
}
.tbl_def tbody th, .tbl_def tbody td {
  padding: 0.7rem 0.5rem;
  vertical-align: middle;
}

@media screen and (min-width: 48em), print {
  .tbl_def caption {
    font-size: 1.6rem;
    padding: 0.5rem 0 0;
  }
  .tbl_def thead th {
    padding: 1.5rem;
  }
  .tbl_def tbody th, .tbl_def tbody td {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 48em) {
  .tbl_res thead {
    display: none;
  }
  .tbl_res tbody th, .tbl_res tbody td {
    display: block;
    width: 100%;
  }
}
/* /_module.scss　出力ここまで */
/* _common.scss　出力 */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
.demo-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 3.125vw;
  width: 100%;
}

body {
  font-family: YakuHanJPs_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  font-size: 1.2rem;
  background-color: #fff;
  line-height: 1;
  margin: 0;
  padding: 0;
  letter-spacing: 0.08em;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  width: 100%;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%; /* ベースを10pxに */
  }
  body {
    min-width: 1220px;
    font-size: 1.8rem;
  }
}
/* 全体の横幅設定  -------------------------------------- */
.wrap {
  margin: 0 1.5rem;
}

main {
  line-height: 1.4;
}

.inner {
  padding: 0;
}

main > .inner {
  margin: 0 15px 30px;
  line-height: 1.6;
}

section {
  margin-bottom: 3rem;
}

@media screen and (min-width: 48em), print {
  .wrap {
    width: 1220px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  section {
    margin-bottom: 5rem;
  }
  .inner {
    padding: 0;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* header  -------------------------------------- */
header > .wrap {
  margin: 0;
}
header .h_white {
  text-align: center;
  margin-bottom: 1rem;
}
header .logo {
  height: 10rem;
  padding: 0 0 0 1rem;
  display: flex;
  align-items: center;
  margin: 1rem 0;
  justify-content: center;
}
header .logo img {
  height: 10rem;
}

/* ハンバーガーメニュー  -------------------------------------- */
.js-btn {
  margin: 0;
  padding: 1.5rem 0.5rem 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  /* ボタンの配置位置 */
  /* ボタンの大きさ  */
  width: 5rem;
  height: 6rem;
  /* 最前面に */
  z-index: 100;
  background-color: #008299;
  border: none;
}

.btn-txt {
  display: block;
  text-align: center;
  width: 100%;
  padding-top: 1.6rem;
  font-size: 1.2rem;
  color: #fff;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative; /* バーガー線の位置基準として設定 */
  width: 100%; /* 線の長さと高さ */
  height: 4px;
  background-color: #fff;
  transition: 0.2s;
}

/****** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
  left: 0;
  box-sizing: inherit;
}

.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-1rem);
}

.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(1rem);
}

/***** メニューオープン時 *****/
.btn-line.open {
  background-color: transparent; /* 真ん中の線を透明に */
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  transition: 0.2s;
}

.btn-line.open::before {
  transform: rotate(45deg); /* 上の線を傾ける */
}

.btn-line.open::after {
  transform: rotate(-45deg); /* 下の線を傾ける */
}

nav {
  width: 100%;
  padding: 1rem 1rem 0;
  background-color: #eef1f7;
  position: absolute;
  top: -130%;
  transition: 0.3s;
  z-index: 99;
  font-weight: bold;
}
nav a {
  color: #333;
  text-decoration: none;
}
nav br {
  display: none;
}
nav > ul {
  margin: 0 auto 2rem;
  flex-wrap: wrap;
  max-width: 46rem;
}
nav > ul li {
  margin: 1rem;
}
nav > ul li a {
  padding: 0.5rem;
  display: block;
}
nav > ul .subnav br {
  display: none;
}
nav > ul a::before {
  font-family: fontello;
  content: "w";
  color: #008299;
  padding-right: 0.5rem;
}
nav > ul .dropdown > a::before,
nav > ul .subsub::before {
  content: "r";
}
nav > ul .dropdown > a.close::before {
  content: "e";
}

nav.open {
  top: 0;
}

@media screen and (min-width: 48em), print {
  header {
    padding: 0;
    width: 100%;
    min-width: 1220px;
    margin: 0;
  }
  header .h_white {
    width: 41.6rem;
    height: 57rem;
    background-color: white;
    background-clip: padding-box;
    padding: 2rem 0;
    border: 2rem solid rgba(255, 255, 255, 0.8);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 0px 0px 5px 5px;
    border-top-width: 0;
  }
  header > .wrap {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    height: 57rem;
    align-items: flex-end;
    justify-content: space-between;
    letter-spacing: normal;
    display: flex;
  }
  header > .wrap > .btn {
    display: none;
  }
  header > .wrap .logo {
    height: auto;
    width: 33.3rem;
    margin: 0.5rem auto 2.5rem;
    padding: 0;
    display: block;
  }
  header > .wrap .logo img {
    height: 26.7rem;
  }
  header > .wrap .h_address {
    font-size: 2rem;
  }
  header > .wrap .h_address .sp_n {
    font-size: 3.4rem;
    color: #b19447;
    font-weight: bold;
    white-space: nowrap;
  }
  header > .wrap .btn {
    width: 29rem;
    margin: 1rem auto 0;
    font-size: 2.4rem;
  }
  header > .wrap .btn:hover {
    border: none !important;
    color: #fff !important;
  }
  nav {
    padding: 0 1rem;
    margin: 0 auto;
    font-weight: normal;
    min-width: 1220px;
    width: 100%;
    position: static;
    z-index: 10;
    background-color: transparent;
  }
  nav ul.gnav {
    display: flex;
    width: 120rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    max-width: none;
    line-height: 1;
    margin: 0 auto;
    letter-spacing: normal;
  }
  nav ul.gnav > li {
    margin: 0;
    padding: 0;
    position: relative;
    width: 16.6666666667%;
    border-right: 1px dashed #707070;
  }
  nav ul.gnav > li > a {
    color: #004C7A;
    text-align: center;
    width: 100%;
    display: block;
    padding: 1.5rem 0;
    font-weight: bold;
  }
  nav ul.gnav > li > a::after {
    content: "\e807";
    display: block;
    font-size: 3rem;
    margin-top: 1rem;
    color: #004C7A;
    font-family: fontello;
    font-weight: normal;
  }
  nav ul.gnav > li > a::before {
    display: none;
  }
  nav ul.gnav > li:first-child {
    border-left: 1px dashed #707070;
  }
  nav ul.gnav > li:first-child > a::after {
    content: "\e82c";
  }
  nav ul.gnav > li:nth-child(2) > a::after {
    content: "\e889";
  }
  nav ul.gnav > li:nth-child(3) > a::after {
    content: "\e82a";
  }
  nav ul.gnav > li:nth-child(4) > a::after {
    content: "\e82d";
  }
  nav ul.gnav > li:nth-child(5) > a::after {
    content: "\e840";
  }
  nav ul.gnav > li.dropdown {
    padding: 0;
    margin: 0;
  }
  nav ul.gnav > li.dropdown a {
    position: relative;
  }
  nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    padding: 0 0;
    margin: 0;
    z-index: 100;
    top: 8.8rem;
    background: rgba(0, 76, 122, 0.8);
    text-align: left;
    width: 48rem;
  }
  nav ul.gnav > li.dropdown .subnav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  nav ul.gnav > li.dropdown .subnav ul li {
    width: 50%;
    margin: 0;
    padding: 0;
    border-bottom: 0.1rem #fff dotted;
    height: 6rem;
  }
  nav ul.gnav > li.dropdown .subnav ul li > a {
    color: #008299;
    padding: 0.5rem 0 0.5rem 1.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    color: #fff;
    line-height: 1.2;
  }
  nav ul.gnav > li.dropdown .subnav ul li > a::before {
    display: none;
  }
  nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    background: #004c7a;
    color: #fff;
  }
  nav ul.gnav > li.dropdown .subnav ul li span {
    display: inline-block;
    width: 100%;
  }
  nav ul.gnav > li.dropdown .subnav ul li span.font_s {
    font-size: 1.4rem;
  }
  nav ul.gnav > li.dropdown .subnav ul li:nth-child(odd) {
    border-right: 0.1rem #fff dotted;
  }
}
/* main   -------------------------------------- */
main {
  display: block;
}
main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
main li,
main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  main {
    margin: 0;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
#overview {
  padding: 4rem 0 0;
  line-height: 1.4;
  background: url("../img/overview_bg.jpg") center center no-repeat;
  background-size: cover;
}
#overview .logo {
  text-align: center;
  margin-bottom: 1rem;
}
#overview .logo img {
  height: 10rem;
}
#overview .tel {
  font-size: 165%;
  color: #008299;
}
#overview .tel a {
  color: #008299;
}
#overview .overviewL {
  max-width: 37rem;
  margin: 0 auto;
}

.dl_overview {
  margin-bottom: 0;
}
.dl_overview > dt {
  color: #004C7A;
  padding: 0 0 0.5rem;
  line-height: 1;
  font-weight: bold;
}
.dl_overview > dd {
  padding: 0 0 1.5rem;
}
.dl_overview > dd i {
  color: #008299;
}

.gmap {
  margin: 1rem auto 0;
  height: 25rem;
  width: 100%;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 0 0;
    margin-bottom: 0;
    background-size: auto;
    background-position: top center;
  }
  #overview .flex_LRTB {
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
    padding: 10rem 0;
  }
  #overview .overviewL {
    width: 27.3rem;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
  }
  #overview .overviewL img {
    height: auto;
  }
  #overview .overviewL .logo {
    text-align: center;
  }
  #overview .overviewL .logo img {
    width: 27.3rem;
  }
  #overview .overviewR {
    width: 87rem;
  }
  .dl_overview {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .dl_overview > dt {
    width: 20rem;
    margin: 0;
    padding: 3rem 0;
    border-top: 0.1rem solid #004C7A;
    font-size: 2rem;
  }
  .dl_overview > dd {
    width: calc(100% - 20rem);
    margin: 0;
    padding: 0;
    border-top: 0.1rem solid #004C7A;
    display: flex;
    align-items: center;
  }
  .overviewR .dl_overview > dt:nth-child(11) {
    width: 100%;
    padding: 3rem 0 1rem;
  }
  .overviewR .dl_overview > dd:nth-child(12) {
    width: 100%;
    padding: 0;
    border-top-width: 0;
  }
  .gmap {
    margin: 0;
    height: 50rem;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_time caption {
  caption-side: bottom;
  padding: 1rem 0 0;
  text-align: left;
}
.tbl_time thead tr {
  background: #004C7A;
  color: #fff;
}
.tbl_time thead th {
  padding: 0.7rem 0 0.7rem;
  font-weight: normal;
}
.tbl_time tbody tr {
  border-bottom: 0.1rem solid #004C7A;
}
.tbl_time tbody th,
.tbl_time tbody td {
  padding: 0.7rem 0;
  vertical-align: middle;
}
.tbl_time tbody th {
  font-weight: normal;
}
.tbl_time tbody td {
  min-width: 2em;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time thead th {
    padding: 0.6rem 0;
  }
  .tbl_time tbody th {
    padding: 0.5rem 0;
    width: 14.5rem;
    line-height: 1.2;
  }
  .tbl_time tbody td {
    padding: 1.8rem 0;
  }
}
/* ページトップ -------------------------------------- */
.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
  width: 100%;
  padding: 0.1rem;
  text-align: center;
  z-index: 100;
  letter-spacing: normal;
}
.sp_bottom li {
  width: 33%;
  margin: 0.2rem;
  position: relative;
}
.sp_bottom li a {
  background: #004C7A;
  padding: 1.5rem 0;
  color: #fff;
  text-align: center;
  display: block;
}
.sp_bottom li:first-child {
  width: 20%;
}
.sp_bottom li:nth-child(2) {
  width: 35%;
}
.sp_bottom li:nth-child(3) {
  width: 28%;
}
.sp_bottom li:last-child {
  width: 12%;
}

@media screen and (min-width: 48em), print {
  .sp_bottom li {
    display: none;
  }
  .sp_bottom #pageup {
    position: fixed;
    bottom: -55rem;
    right: 1rem;
    z-index: 1;
    cursor: pointer;
    transition: 0.8s;
    display: inline-block;
    width: 5rem;
  }
  .sp_bottom #pageup a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
    background: #00AFCC;
    color: #fff;
    padding: 0;
  }
  .sp_bottom #pageup.block {
    display: block;
    bottom: 12rem;
  }
}
/* footer -------------------------------------- */
footer {
  background: #008299;
}
footer .wrap {
  display: none;
}

address {
  padding: 0.8rem 0 5.5rem;
  font-style: normal;
  font-size: 1.2rem;
  text-align: center;
}
address a {
  color: #fff;
}

@media screen and (min-width: 48em), print {
  footer {
    display: block;
    padding: 7rem 0 0;
    margin: 0 auto 0;
    background: url("../img/footer_bg.png") bottom center no-repeat #008299;
  }
  footer .wrap {
    display: block;
    padding: 5rem 1rem 3.5rem;
  }
  footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }
  footer ul li {
    margin: 0 0 4.5rem;
    padding: 0 0.7rem;
    border-right: 0.1rem solid #fff;
  }
  footer ul li:last-child, footer ul li:nth-child(6) {
    border-right: none;
  }
  footer ul .dropdown {
    display: none;
  }
  footer ul a {
    display: block;
    padding: 0;
    color: #fff;
  }
  footer ul a br.sp_n_i {
    display: none !important;
  }
  footer ul a span.font_s {
    font-size: medium !important;
  }
  address {
    margin: 0;
    padding: 0 0 8.5rem;
  }
  address a {
    color: #fff;
    font-size: 1.8rem;
  }
}
a.nl {
  pointer-events: none;
}

/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage #kv {
  background-size: auto 20rem;
  background-position: top center;
  background-repeat: no-repeat;
  margin-bottom: 3rem;
  padding-top: 20rem;
  position: relative;
}
#TopPage #kv .wrap {
  position: relative;
  padding: 0;
  margin: 0;
}
#TopPage #kv .kv_open {
  background: #22D1E5;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0;
}
#TopPage #kv .kv_open li {
  margin: 0.5rem 0;
}
#TopPage #kv .kv_txt {
  padding: 1rem;
  color: #008299;
  line-height: 1.4;
  font-size: 1.6rem;
  background-color: rgba(191, 157, 97, 0.8);
  color: #fff;
}
#TopPage a.dr_f[target=_blank]::after {
  display: none;
}
#TopPage .info_box .txt_01 {
  border: 1px solid #22D1E5;
  padding: 20px;
  margin-bottom: 0 !important;
  font-size: 130%;
  line-height: 1.2;
}
#TopPage .info_box .txt_02 {
  border: 1px solid #22D1E5;
  background-color: #22D1E5;
  color: #ffffff;
  padding: 10px;
  margin-top: 0 !important;
  text-align: center;
  font-size: 130%;
}
#TopPage main {
  margin: 0;
  font-size: 1.3rem;
}
#TopPage main section {
  margin: 0 0 5rem;
}
#TopPage h2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
  background: transparent linear-gradient(90deg, #3BCAE2 0%, #2C9EB1 100%) 0% 0% no-repeat padding-box;
  border-radius: 3px;
  position: relative;
  padding: 0.5rem 0.8rem;
  font-weight: normal;
}
#TopPage #news dl {
  margin: 0;
  padding: 0 0 1rem 0;
  border-top: 0.1rem solid #666;
  border-bottom: 0.1rem solid #666;
}
#TopPage #news dl dt {
  margin: 0.5rem 0 0;
  cursor: pointer;
  padding: 1rem 0 0.5rem 1.8rem;
  position: relative;
  color: #008299;
  font-weight: bold;
  font-size: 1.4rem;
}
#TopPage #news dl dt::before {
  content: "r";
  font-family: fontello;
  text-align: center;
  position: absolute;
  left: 0;
  color: #008299;
}
#TopPage #news dl dt.close::before {
  transform: scale(1, -1);
}
#TopPage #news dl dt span {
  display: none;
}
#TopPage #news dl dd {
  margin: 0.5rem 0 0;
}
#TopPage #news dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}
#TopPage #time .tbl_time thead tr {
  background: #BF9D61;
}
#TopPage #time .tbl_time tbody tr {
  border-bottom-color: #BF9D61;
}
#TopPage #covid19 img {
  display: block;
  margin: 0 auto 1rem;
  max-width: 30rem;
}
#TopPage #covid19 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#TopPage #covid19 li {
  margin-bottom: 2rem;
  max-width: 40rem;
}
#TopPage #covid19 li span {
  font-size: 130%;
  color: #008299;
  font-weight: bold;
}
#TopPage #covid19 a {
  /*display: block;*/
  margin: 1rem auto 0;
  font-size: 130%;
  width: 23rem;
}
#TopPage #feature dl {
  background: url(/img/feature_bg.png) no-repeat center center;
  background-size: contain;
  font-size: 1.4rem;
}
#TopPage #feature dl dt {
  color: #008299;
  font-size: 140%;
  text-align: center;
  padding: 1rem;
}
#TopPage #feature dl dt span {
  display: inline-block;
}
#TopPage #feature ul::before {
  content: "";
  background: url(/img/feature_img00.jpg) no-repeat center center;
  background-size: contain;
  display: block;
  width: 100%;
  margin: 2rem auto;
  height: 20rem;
}
#TopPage #feature ul li {
  max-width: 40rem;
  margin: 0 auto 3rem;
}
#TopPage #feature ul li div {
  position: relative;
  width: 20rem;
  margin: 0 auto 3rem;
}
#TopPage #feature ul li div::before {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 100%;
  height: 100%;
  background-color: #F6EDD0;
  z-index: -1;
}
#TopPage #feature ul li figcaption {
  position: relative;
  text-align: justify;
}
#TopPage #feature ul li figcaption span {
  position: absolute;
  right: 0;
  top: -2rem;
  font-size: 350%;
  color: #F6EDD0;
  z-index: -1;
  font-family: "Bebas Neue", cursive;
}
#TopPage #treatment ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#TopPage #treatment ul li {
  width: 18rem;
  margin: 0 1rem 2rem;
}
#TopPage #treatment ul li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  color: #008299;
  background: url("/img/icon_neurology.png") left 1rem center #daf7f8 no-repeat;
  background-size: auto 2.5rem;
  border-bottom: 0.5rem solid #008299;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 0.2rem;
  height: 7rem;
  padding: 1rem 1rem 1rem 5rem;
  line-height: 1.2;
}
#TopPage #treatment ul li a span {
  width: 100%;
  color: #333;
}
#TopPage #treatment ul li:nth-child(2) a {
  background-image: url("/img/icon_internal.png");
}
#TopPage #treatment ul li:nth-child(3) a {
  background-image: url("/img/icon_numbness.png");
}
#TopPage #treatment ul li:nth-child(4) a {
  background-image: url("/img/icon_dementia.png");
}
#TopPage #treatment ul li:nth-child(5) a {
  background-image: url("/img/icon_cidp.png");
}
#TopPage #treatment ul li:nth-child(6) a {
  background-image: url("/img/icon_als.png");
}
#TopPage #treatment ul li:nth-child(7) a {
  background-image: url("/img/icon_parkinson_disease.png");
}
#TopPage #treatment ul li:nth-child(8) a {
  background-image: url("/img/icon_epilepsy.png");
}
#TopPage #treatment ul li:nth-child(9) a {
  background-image: url("/img/icon_diabetes.png");
}
#TopPage #treatment ul li:nth-child(10) a {
  background-image: url("/img/icon_vaccination.png");
}
#TopPage #treatment ul li:nth-child(11) a {
  background-image: url("/img/icon_checkup.png");
}
#TopPage #treatment ul li:nth-child(12) a {
  background-image: url("/img/icon_headache.png");
}
#TopPage #calendar .calender-notes span {
  color: #FFE1D3;
}
#TopPage #calendar .caledit {
  width: 100%;
  font-weight: 500;
  border-collapse: collapse;
  border-spacing: 0.2rem;
  text-align: center;
  line-height: 1;
}
#TopPage #calendar .caledit.month0 {
  margin-bottom: 2rem;
}
#TopPage #calendar .caledit tr.month, #TopPage #calendar .caledit tr.week {
  background: #EFE3C1;
}
#TopPage #calendar .caledit tr.month th, #TopPage #calendar .caledit tr.week th {
  padding: 0.6rem 0;
  font-weight: normal;
}
#TopPage #calendar .caledit tr.day {
  border-bottom: 0.1rem solid #ccc;
}
#TopPage #calendar .caledit tr.day .shortTitle {
  display: none;
}
#TopPage #calendar .caledit tr.day td {
  padding: 0.3rem 0;
}
#TopPage #calendar .caledit tr.day td.outPatient {
  background: #FFE1D3;
  box-shadow: 0 0 0 0.3rem #fff inset;
}
#TopPage #calendar .caledit tr.day td.notTheMonth {
  color: #fff;
  background: #fff;
}

@media screen and (min-width: 48em), print {
  #TopPage header > .wrap {
    height: 80rem;
    align-items: flex-start;
  }
  #TopPage #kv {
    background-size: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80rem;
    padding: 0;
    min-width: 1220px;
    width: 100%;
  }
  #TopPage #kv .wrap {
    margin: 0 auto;
  }
  #TopPage #kv .kv_open {
    display: flex;
    justify-content: flex-end;
    background-color: transparent;
    margin: 3rem auto 0;
    padding: 0;
    font-size: 2.8rem;
    line-height: 3rem;
  }
  #TopPage #kv .kv_open li {
    width: 15rem;
    height: 15rem;
    background: #22D1E5;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.8rem 0.2rem #fff;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  #TopPage #kv .kv_open li span {
    font-size: 1.8rem;
  }
  #TopPage #kv .kv_txt {
    font-size: 3.2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 3rem 0;
  }
  #TopPage nav {
    margin: 5rem 0 8rem;
  }
  #TopPage .info_box {
    margin-bottom: 5rem;
  }
  #TopPage .info_box .txt_01 {
    border: 1px solid #22D1E5;
    padding: 20px;
    margin-bottom: 0 !important;
    font-size: 130%;
    line-height: 1.2;
    text-align: center;
  }
  #TopPage .info_box .txt_02 {
    border: 1px solid #22D1E5;
    background-color: #22D1E5;
    color: #ffffff;
    padding: 10px;
    margin-top: 0 !important;
    text-align: center;
    font-size: 130%;
  }
  #TopPage main {
    margin: 0 auto 0;
    padding: 0;
    font-size: 1.8rem;
  }
  #TopPage main section {
    margin-bottom: 10rem;
  }
  #TopPage main h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    padding: 1rem 6rem;
  }
  #TopPage main h2::before {
    content: "";
    background: url(../img/h2_1.png) no-repeat center center;
    width: 4.7rem;
    height: 4.3rem;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0.3rem;
  }
  #TopPage main h2::after {
    content: "";
    background: url(../img/h2_2.png) no-repeat center center;
    width: 5.2rem;
    height: 4.2rem;
    background-size: contain;
    position: absolute;
    bottom: 0.3rem;
    right: 0.3rem;
  }
  #TopPage main #news h2, #TopPage main #time h2 {
    width: 16.4rem;
    height: 16.4rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #TopPage main #news, #TopPage main #time {
    display: flex;
    justify-content: space-between;
  }
  #TopPage main #news .inner, #TopPage main #time .inner {
    width: 99.4rem;
  }
  #TopPage main #news dl, #TopPage main #time dl {
    padding: 2rem 0;
  }
  #TopPage main #news dl > dt, #TopPage main #time dl > dt {
    font-size: 2.2rem;
    padding: 2rem 0 0 2.2rem;
    margin: 1.5rem 0 0;
  }
  #TopPage main #news dl > dt:first-child, #TopPage main #time dl > dt:first-child {
    padding-top: 0;
    margin-top: 0;
  }
  #TopPage main #news dl > dt::before, #TopPage main #time dl > dt::before {
    font-size: 2rem;
  }
  #TopPage main #news .tbl_time thead th, #TopPage main #time .tbl_time thead th {
    padding: 1.8rem 0;
  }
  #TopPage main #covid19 ul {
    display: block;
  }
  #TopPage main #covid19 ul li {
    max-width: none;
    padding: 0 26rem 0 0;
    font-size: 2rem;
  }
  #TopPage main #covid19 ul li figure {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #TopPage main #covid19 ul li img {
    margin: 0 1.7rem 0 0;
  }
  #TopPage main #covid19 ul li:nth-child(2) {
    padding: 0 0 0 26rem;
    margin-top: -5rem;
  }
  #TopPage main #covid19 ul li:nth-child(2) figure {
    flex-direction: row-reverse;
  }
  #TopPage main #covid19 ul li:nth-child(2) img {
    margin: 0 0 0 1.7rem;
  }
  #TopPage main #covid19 ul li:nth-child(2) figcaption {
    text-align: right;
  }
  #TopPage main #covid19 ul li .btn {
    margin: 1.5rem 0 0 auto;
    width: 30rem;
  }
  #TopPage main #feature dl {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 5rem;
  }
  #TopPage main #feature dl dt {
    font-size: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.7rem;
  }
  #TopPage main #feature dl dt::before, #TopPage main #feature dl dt::after {
    content: "";
    width: 24rem;
    height: 0.2rem;
    background: #008299;
    display: block;
    margin: 0 1.7rem;
  }
  #TopPage main #feature dl dd {
    font-size: 2rem;
  }
  #TopPage main #feature ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 2rem;
  }
  #TopPage main #feature ul::before {
    width: 78.8rem;
    height: 54.8rem;
    margin: 0;
  }
  #TopPage main #feature ul li {
    width: 38.4rem;
    margin: 0 0 3rem;
  }
  #TopPage main #feature ul li span {
    font-size: 14rem;
    line-height: normal;
    top: -7rem;
  }
  #TopPage main #feature ul li div {
    width: 35rem;
    margin: 0 0 6.8rem;
  }
  #TopPage main #feature ul li div::before {
    bottom: -1.8rem;
    right: -1.8rem;
  }
  #TopPage main #treatment ul {
    justify-content: space-between;
  }
  #TopPage main #treatment ul li {
    width: 27.3rem;
    margin: 0 0 3.2rem;
  }
  #TopPage main #treatment ul li a {
    font-size: 2.2rem;
    line-height: 1.18;
    background-size: auto;
    height: 12rem;
    background-position: left 2rem center;
    padding: 1.6rem 0 1.6rem 8.1rem;
    border-bottom-width: 0.5rem;
  }
  #TopPage main #treatment ul li a span {
    margin-top: 0.2rem;
  }
  #TopPage main #treatment ul li a:hover {
    background-color: rgba(218, 247, 248, 0.5);
  }
  #TopPage main #treatment ul li:nth-child(6) span {
    margin-bottom: 1em;
  }
  #TopPage main #treatment ul::after {
    content: "";
    display: block;
    width: 27.3rem;
    height: 1rem;
  }
  #TopPage main #calendar .caledit tr.month th {
    padding: 1.2rem 0 0.5rem;
    font-size: 2.4rem;
  }
  #TopPage main #calendar .caledit tr.week th {
    padding: 1rem 0;
  }
  #TopPage main #calendar .caledit tr.day {
    font-size: 2rem;
  }
  #TopPage main #calendar .caledit tr.day td {
    padding: 1.2rem 0;
  }
  #TopPage main #calendar .caledit tr.day td.outPatient {
    box-shadow: 0 0 0 0.7rem #fff inset;
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower main {
  margin-top: 1rem;
}
#lower main section {
  margin: 0 auto 4rem;
  padding: 0;
}
#lower main .breadcrumb {
  display: flex;
  list-style: none;
  margin-bottom: 4rem;
}
#lower main .breadcrumb a {
  color: #004C7A;
  border-bottom: none;
}
#lower main .breadcrumb li:first-child::after {
  content: "w";
  font-family: fontello;
  padding: 0 1rem;
  display: inline-block;
}
#lower main .breadcrumb span {
  display: block;
}
#lower main .btn.online,
#lower main .btn.reserve {
  width: 23rem;
  font-size: 130%;
  margin: 0.5rem auto;
  display: block;
  padding: 1.5rem 0;
}
#lower h1 {
  background: url("../img/h1.jpg") center center no-repeat;
  background-size: auto 100%;
  margin: 0 0 2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  padding: 4rem 0;
  text-align: center;
  color: #008299;
}
#lower h1 span {
  display: block;
}
#lower h1 span span {
  font-size: 90%;
}
#lower h2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
  background: transparent linear-gradient(90deg, #3bcae2 0%, #2c9eb1 100%) 0% 0% no-repeat padding-box;
  border-radius: 3px;
  position: relative;
  padding: 0.5rem 0.8rem;
}
#lower h3 {
  margin: 4rem 0 2rem;
  color: #008299;
  font-size: 1.6rem;
  font-weight: normal;
  color: #004C7A;
  border-bottom: #004C7A solid 0.2rem;
  position: relative;
  padding-bottom: 0.3rem;
}
#lower h3::after {
  width: 100%;
  height: 0.2rem;
  display: block;
  background: #00AFCC;
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
}
#lower h4 {
  margin: 3rem 0 2rem;
  font-size: 1.4rem;
  color: #b19447;
  border-bottom: #b19447 solid 0.3rem;
  padding-bottom: 0.3rem;
}
#lower h5 {
  margin: 1rem 0 2rem;
  font-size: 1.3rem;
  color: #00afcc;
  border-bottom: #00afcc dotted 0.2rem;
  padding-bottom: 0.3rem;
}

/* main   -------------------------------------- */
main {
  display: block;
}
main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
main li,
main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  #lower {
    background: url("../img/h1.jpg") top center no-repeat;
  }
  #lower main .breadcrumb {
    margin: 3rem 0 10rem;
  }
  #lower main .breadcrumb span {
    display: inline;
  }
  #lower main section {
    margin: 0 auto 7rem;
  }
  #lower main section > section {
    margin: 7rem auto 5rem;
  }
  #lower main section > section > section {
    margin: 6rem auto 4rem;
  }
  #lower main section > section > section > section {
    margin: 5rem auto 3rem;
  }
  #lower main .btn.online,
  #lower main .btn.reserve {
    width: 30rem;
  }
  #lower h1 {
    background-image: none;
    font-size: 4rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 120rem;
    margin: 0 auto;
    padding: 0 1rem 10rem;
    height: 57rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
  #lower h1 > span {
    width: 75rem;
  }
  #lower h1 > span span {
    display: inline;
  }
  #lower h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    padding: 1rem 6rem;
    font-weight: normal;
  }
  #lower h2::before {
    content: "";
    background: url(../img/h2_1.png) no-repeat center center;
    width: 4.7rem;
    height: 4.3rem;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0.3rem;
  }
  #lower h2::after {
    content: "";
    background: url(../img/h2_2.png) no-repeat center center;
    width: 5.2rem;
    height: 4.2rem;
    background-size: contain;
    position: absolute;
    bottom: 0.3rem;
    right: 0.3rem;
  }
  #lower h3 {
    font-size: 2.8rem;
    margin: 0 0 2rem;
    border-bottom-width: 0.5rem;
    font-weight: normal;
  }
  #lower h3::after {
    height: 0.5rem;
    bottom: -1rem;
  }
  #lower h4 {
    font-size: 2.6rem;
    margin: 0 0 2rem;
    border-bottom-width: 0.5rem;
    font-weight: normal;
  }
  #lower h5 {
    margin: 0 0 2rem;
    font-size: 2.4rem;
    border-bottom-width: 0.4rem;
    font-weight: normal;
  }
  #lower #access .dl_overview {
    border-bottom: 0.1rem solid #008299;
  }
}
#lower .slider-pro {
  overflow: hidden;
  box-sizing: content-box;
}
#lower .slider-pro * {
  box-sizing: content-box;
}
#lower .slider-pro p {
  margin: 0;
}
#lower .slider-pro .sp-white {
  background: #008299;
  color: #fff;
  font-size: 3rem;
}
#lower .sp-selected-thumbnail {
  border: 0.4rem solid #008299;
}
#lower .sp-mask {
  padding-bottom: 3.2rem;
}
#lower .sp-slide {
  padding-bottom: 3rem;
}
#lower #first .tel {
  font-size: 165%;
  color: #008299;
}
#lower #first .tel a {
  border: none;
}

@media screen and (min-width: 48em), print {
  #lower #internal .tbl_def.tbl_res tbody th {
    width: 25rem;
  }
  #lower .slider-pro .sp-white {
    font-size: 2rem;
  }
  #lower .sp-mask {
    padding-bottom: 5.3rem;
  }
  #lower .sp-slide {
    padding-bottom: 5.3rem;
  }
  #lower #first .dl_overview > dt {
    width: 32rem;
    padding-left: 1rem;
  }
  #lower #first .dl_overview > dd {
    width: calc(100% - 32rem);
    padding-left: 2rem;
  }
}
/* /_lower.scss　出力ここまで */

/*# sourceMappingURL=style.css.map */