@charset "UTF-8";
/* ==========================================================================
   HTML5 Reset
========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* ==========================================================================
   Base
========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Links
========================================================================== */
a:active,
a:hover,
a:focus {
  outline: 0;
}

/* ==========================================================================
   Typography
========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 100%;
  font-weight: normal;
}

b,
strong {
  font-weight: bold;
}

p,
pre {
  margin: 0;
  padding: 0;
}

caption {
  text-align: left;
}

/* ==========================================================================
   Lists
========================================================================== */
dl,
menu,
ol,
ul,
li,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
========================================================================== */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
	Figures
========================================================================== */
figure {
  margin: 0;
}

/* ==========================================================================
	Forms
========================================================================== */
form {
  margin: 0;
  padding: 0;
}

input, textarea {
  margin: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

fieldset {
  border: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  ext-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

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

td {
  padding: 0;
}

th {
  text-align: left;
}

/* CSS Document */
/*【ビューポイント】

@media screen and (max-width:599px) 

@media screen and (max-width:767px) and (min-width:600px)
@media screen and (max-width:999px)  
@media screen and (max-width:1019px) and (min-width:768px) 



	• スマートフォン：599px [max-width : 599px]
	• タブレット：1024px [max-width : 1024px]
    • PC：設定なし（実質1025px以上）

    1000px未満　100% - 30px





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

html
body
header
    .menu
    .g_nav

    .breadcrumb
main
    .main_wrap
footer

【 a link 】
    a   

【 img 】

【 table 】
    .table_nomal

【 list 】
    .list_circle
    .list_asterisk
    .list_circled-number

【 box flex 】
.f_box
.img_box



【揃え】
- align

【背景色】
- background-color
- box-shadow


- dammy
- ttl_box
- block

- content_box_h4
- content_box_h5


- font
- text-align


【マージン】
.mt_1～5

【画像】
.img_box
.img_link_box
　（影付き　３列　画像とテキストリンクＢｏｘ）



【 btn 】

【 見出し 】


==================================== */
/* ====================================
記載順
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content　
 *
==================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  background-image: url("../images/bgimg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  width: 100%;
  height: 100%;
  color: #1a1a1a;
}

/* ページ切り替えアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**/
/* ---- header ---- */
.header {
  margin: 0 auto;
  padding: 1rem 0;
}

@media screen and (max-width: 599px) {
  .header {
    z-index: 1;
  }
}
/**/
/* ---- menu ---- */
.menu_wrap {
  margin-bottom: 50px;
}

.pc_menu {
  max-width: 1000px;
  box-sizing: border-box;
  z-index: 30;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.pc_menu h1 {
  display: block;
}

.pc_menu h1 a:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

.pc_off {
  display: none;
}

.sp_off {
  display: block;
}

.g_nav {
  min-width: 600px;
  height: 50px;
  display: flex;
  margin: 10px auto 0px;
  z-index: 20;
}

.g_item {
  width: 20%;
}

.menu_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: none;
  /*アニメーション用*/
  transform: perspective(2px) translateZ(0);
  background-image: url(../images/menu_line.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
}

.menu_ttl img {
  width: auto;
}

@media screen and (max-width: 599px) {
  /* 599px以内の範囲に収めるデザインはこの中に記述 */
  .sp_off {
    display: none !important;
  }
  .pc_off {
    display: block;
  }
  .pc_menu {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  /* 1000px未満 */
  .pc_menu h1 {
    margin: 20px auto;
  }
  .pc_menu {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* .menu_ttl アニメーション */
@keyframes hvr-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
/* .menu_ttl マウスオーバー時 */
.menu_ttl:hover .menu_icon,
.menu_ttl:focus .menu_icon,
.menu_ttl:active .menu_icon {
  animation-name: hvr-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  cursor: pointer;
}

.menu_txt {
  margin-top: 10px;
}

/* .g_nav 全てのリスト・リンク共通 */
.g_nav li {
  list-style: none;
  position: relative;
}

.g_nav li a {
  /*.g_nav li a*/
  display: block;
  height: 2rem;
  line-height: 2rem;
  text-decoration: none;
  color: #000;
}

/* .g_nav 子階層以降共通 */
.g_nav li li {
  font-size: 0.85rem;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  top: 3rem;
  width: calc(100% + 4rem);
  left: -2rem;
  /**/
  position: relative;
}

.g_nav li li a {
  border-top: 1px solid #eee;
  /**/
  background: #f4bd40;
  padding: 0 0 0 1.5rem;
}

.g_nav li li a::before {
  /*　menu　円　*/
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border: 3px solid #B7B7B7;
  border-radius: 50%;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translate(0, -50%);
}

.g_nav li li a:hover::before {
  border-color: #fff;
}

.g_nav li li a:hover {
  background-color: #B7B7B7;
}

.g_nav li:hover > ul > li {
  height: 2rem;
  overflow: visible;
}

/* .g_nav 孫階層以降共通 */
.s_item ul {
  left: 100%;
  position: absolute;
  top: -3rem;
  /*孫階層の位置調整*/
  width: 150%;
  z-index: 1;
}

.s_item ul li {
  border-left: 1px solid #eee;
  left: 0;
}

/*　.breadcrumb パンくずリスト　*/
.breadcrumb {
  width: 1000px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.breadcrumb a {
  text-decoration: none;
  color: #f6921e;
}

.breadcrumb ul {
  display: flex;
  flex-flow: row wrap;
}

.breadcrumb li {
  line-height: nomal;
  margin: auto 5px;
}

.breadcrumb li::after {
  content: ">";
  left: 5px;
  position: relative;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li:last-of-type::after {
  content: "";
}

@media screen and (max-width: 599px) {
  .breadcrumb {
    width: 100%;
  }
}
/**/
/* ----- main ----- */
.main {
  width: 100%;
  padding-bottom: 100px;
  min-height: 80vh;
}

@media screen and (max-width: 599px) {
  .main {
    padding-top: 90px;
  }
}
.main_top {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.main_wrap {
  padding: 3rem 0;
  width: 100%;
}

.main_wrap > div {
  max-width: 1000px;
  margin: auto;
}

@media screen and (max-width: 599px) {
  /* 小さい画面のスマホ用　600px未満 */
  .main_wrap > div {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 767px) and (min-width: 600px) {
  /* スマホ用 768px未満　600px以上 ハンバーガーメニュー */
  .main_wrap > div {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1019px) and (min-width: 768px) {
  /* タブレット & スマホ用  1020px未満　768px以上 gnav上にロゴ メニューはPC用*/
  .pc_menu {
    width: 100%;
  }
  .main_wrap > div {
    max-width: calc(100% - 30px);
  }
}
/**/
/* ----- footer ----- */
.footer {
  background: #808080;
  padding-top: 50px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 2em;
  width: 100%;
  color: #fff;
  font-size: 0.85em;
  line-height: 2;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer_logo {
  text-align: center;
  margin-bottom: 2em;
}

.footer_wrap {
  width: 800px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.footer_copyright {
  text-align: center;
  margin-top: 2em;
}

@media screen and (max-width: 599px) {
  .footer_wrap {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  /* 1000px未満 */
  .footer_wrap {
    max-width: 800px;
    width: calc(100% - 30px);
  }
}
/**/
/* -----【 a link 】----- */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/**/
/* -----【 img 】----- */
img {
  max-width: 100%;
}

/**/
/* -----【 table 】----- */
.table_nomal {
  background: #fff;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  max-width: 100%;
}

.table_nomal tr > * {
  padding: 10px;
  vertical-align: middle;
  border-left: solid 1px #666666;
  border-right: solid 1px #666666;
  border-bottom: solid 1px #faaf3b;
}

.table_nomal tr:first-of-type > * {
  border-top: solid 2px #666666;
}

.table_nomal tr:last-of-type > * {
  border-bottom: solid 2px #666666;
}

.table_nomal tr *:first-child {
  border-left: none;
}

.table_nomal tr *:last-child {
  border-right: none;
}

.table_nomal th {
  background: rgba(244, 189, 64, 0.3);
}

.table_left_orange th {
  background: rgb(244, 189, 64);
  text-align: center;
}

.table_left_orange tr td:first-of-type {
  background: rgba(244, 189, 64, 0.3);
}

/**/
/* -----【 list 】----- */
.main_wrap div > ul {
  margin-top: 1rem;
}

.list_circle li {
  padding: 0px 0px 0px 1.5em;
  position: relative;
  margin-top: 0.5rem;
}

.list_circle li:first-of-type {
  margin-top: 0;
}

.list_circle > li::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border: 3px solid #B7B7B7;
  border-radius: 50%;
  position: absolute;
  left: 0.3rem;
  top: 0.7rem;
  transform: translate(0, -50%);
}

.heading13rem li span:first-of-type {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  display: inline-block;
  width: 13rem;
}

.list_asterisk li {
  padding: 0px 0px 0px 1.5em;
  position: relative;
  margin-top: 0.5rem;
}

.list_asterisk > li::before {
  content: "※";
  position: absolute;
  left: 0rem;
  top: 0%;
  transform: translate(0, 0%);
}

.list_dl {
  /*width変えたい場合はページidでstyle追加*/
}

.list_dl dt {
  width: 8em;
  float: left;
}

.list_dl dd {
  margin-left: 9em;
}

.list_dl dt,
.list_dl dd {
  padding-top: 0.5rem;
}

.list_circled-number {
  position: relative;
  margin: 0;
  padding: 0;
}

.list_circled-number li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
}

.list_circled-number li span {
  position: absolute;
  left: 0;
  margin: 0;
}

/**/
/* -----【 box flex 】----- */
/* img_box */
.img_center {
  margin: 2rem auto;
  display: block;
  max-width: calc(100% - 200px);
}

@media screen and (max-width: 999px) {
  .img_center {
    max-width: 100%;
  }
}
.img_box_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  max-width: 700px;
  margin: 2rem auto;
}

.img_box {
  /* margin: 5px;*/
  text-align: center;
  /*キャプション付き画像*/
  max-width: 350px;
  margin: auto;
}

.img_box .txt {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  display: block;
}

/*img_box_left*/
.img_left_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.img_left_wrap > .item:first-child {
  width: calc(35% - 20px);
}

.img_left_wrap > .item:last-child {
  width: calc(65% - 20px);
}

@media screen and (max-width: 599px) {
  .img_left_wrap {
    display: block;
  }
  .img_left_wrap > .item {
    width: 100% !important;
  }
  .img_left_wrap > .item:last-child {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .img_left_wrap > .item:first-child {
    width: calc(50% - 20px);
  }
  .img_left_wrap > .item:last-child {
    width: calc(50% - 20px);
  }
}
/*img_box_right*/
.img_right_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.img_right_wrap > .item:first-child {
  width: calc(65% - 20px);
}

.img_right_wrap > .item:last-child {
  width: calc(35% - 20px);
}

@media screen and (max-width: 599px) {
  .img_right_wrap {
    display: block;
  }
  .img_right_wrap > .item {
    width: 100% !important;
  }
  .img_right_wrap > .item:last-child {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .img_right_wrap > .item:first-child {
    width: calc(50% - 20px);
  }
  .img_right_wrap > .item:last-child {
    width: calc(50% - 20px);
  }
}
/* img_link_box */
.img_link_box {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.img_link_item {
  text-decoration: none;
  width: calc(33.3333% - 20px);
  box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);
  background-color: #fff;
  margin-top: 2rem;
}

.img_link_emptyitem {
  width: calc(33.3333% - 20px);
  margin-top: 2rem;
}

.img_link_item a:hover {
  text-decoration: none;
}

.img_link_a {
  display: block;
  color: #000;
  text-decoration: none;
}

.img_link_hover {
  overflow: hidden;
  /*拡大時にはみ出た部分を隠す*/
  width: 100%;
  /*画像の幅*/
  height: 200px;
  /*画像の高さ*/
}

.img_link_hover img {
  min-width: 100%;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
  margin: auto;
}

a .img_link_hover img:hover {
  transform: scale(1.1);
  /*画像の拡大率*/
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}

.img_link_txt {
  font-size: 0.9rem;
  line-height: 1.3;
  padding: 15px 20px;
}

.img_link_txt p {
  margin-top: 0.3rem;
}

.img_link_ttl {
  font-size: 1.2rem;
}

.img_link_ttl span {
  font-size: 0.85rem;
  color: rgb(244, 189, 64);
}

@media screen and (max-width: 599px) {
  /*　1列　*/
  .img_link_box {
    flex-direction: column;
    align-items: center;
  }
  .img_link_item {
    width: 100% !important;
  }
  .img_link_item:nth-of-type(1) {
    margin-top: 0px;
  }
}
@media screen and (max-width: 999px) {
  /*　2列　*/
  .img_link_box {
    justify-content: space-around;
  }
  .img_link_item {
    width: calc(50% - 30px);
    max-width: 350px;
  }
}
@media screen and (min-width: 600px) {
  .img_link_item:nth-of-type(1+2) {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .img_link_item:nth-of-type(1+3) {
    margin-top: 0px;
  }
}
.box-main-image__heading .hdg-lv1 {
  width: 53px;
  display: inline-block;
  vertical-align: top;
  word-wrap: break-word;
  padding: 0;
  line-height: 1.2em;
  letter-spacing: 0.26em;
  position: relative;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  white-space: nowrap;
}

.box-main-image__heading .hdg-lv1:after {
  content: "";
  height: 148px;
  width: 1px;
  border-left: 1px dashed #000;
  position: absolute;
  bottom: -160px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
}

.box-main-image__heading__sub {
  display: inline-block;
  writing-mode: vertical-lr;
  margin-top: 5px;
  -ms-writing-mode: tb-lr;
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.24em;
}

/* flex */
.f_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.f_row_revers {
  flex-direction: row-reverse;
}

.f_wrap > .item {
  width: calc(50% - 30px);
}

.f_wrap > .item_3 {
  width: calc(33.3333% - 30px);
}

@media screen and (max-width: 999px) {
  .f_wrap {
    flex-direction: column;
  }
  .f_wrap > .item {
    width: 100%;
    margin-top: 1rem;
  }
  .f_wrap > .item_3 {
    width: 100%;
    margin-top: 3rem;
  }
}
.f_nowrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.f_nowrap_211 {
  flex: 2 1 1 100%;
}

.f_box {
  display: flex;
}

.f_row_wrap {
  flex-flow: row wrap;
}

.f_space_between {
  justify-content: space-between;
}

.f_space_around {
  justify-content: space-around;
}

.f_ .f_item_2_shadowbox {
  width: calc(50% - 50px);
  padding: 20px;
  box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);
}

.f_column {
  flex-direction: column;
}

.f_align_items_end {
  align-items: flex-end;
}

.f_align_items_start {
  align-items: flex-start;
}

.col_2 > * {
  width: calc((100% - 20px) / 2);
}

.img_box > .col_2 > * {
  width: calc((100% - 5px) / 2);
}

.col_2-1 {
  /*左＞右*/
}

.col_2-1 > *:first-of-type {
  width: calc((100% - 40px) / 3 * 2 + 20px);
}

.col_2-1 > *:last-of-type {
  width: calc((100% - 40px) / 3);
}

.col_2-2 {
  /*左＜右*/
}

.col_2-2 > *:first-of-type {
  width: calc((100% - 40px) / 3);
}

.col_2-2 > *:last-of-type {
  width: calc((100% - 40px) / 3 * 2 + 20px);
}

.col_2-3 {
  /*6:4*/
}

.col_2-3 > *:first-of-type {
  width: calc((100% - 40px) / 5 * 3 + 20px);
}

.col_2-3 > *:last-of-type {
  width: calc((100% - 40px) / 5 * 2);
}

.col_3 > * {
  width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 999px) {
  .col_2 > *,
  .col_2-1 > *,
  .col_2-2 > *,
  .col_2-3 > *,
  .col_3 > * {
    width: 100% !important;
  }
  .col_2-1 img,
  .col_2-2 img {
    max-width: 350px !important;
  }
  .col_2 > *:last-of-type {
    margin-top: 1rem;
  }
  .col_2-1 > *:nth-of-type(n+2) {
    margin-top: 1rem;
  }
  .col_2-2 > *:nth-of-type(n+2) {
    margin-top: 1rem;
  }
  .col_2-3 > *:nth-of-type(n+2) {
    margin-top: 1rem;
  }
  .col_3 > *:nth-of-type(n+2) {
    margin-top: 1rem;
  }
}
/* box */
.shadow_box {
  box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);
  background-color: #fff;
  padding: 30px;
}

.col_2 > .shadow_box {
  width: calc(50% - 70px);
}

@media screen and (max-width: 999px) {
  .col_2 > .shadow_box {
    width: calc(100% - 60px);
  }
}
/**/
/* ----- 揃え ----- */
.align_r {
  text-align: right;
}

.align_l {
  text-align: left;
}

.align_c {
  text-align: center;
}

/**/
/* ----- 背景色 ----- */
.bg_orange {
  background-color: #f6921e;
}

.bg_yellow {
  background-color: #eec645;
}

.bg_gray {
  background-color: #808080;
}

.bg_white {
  background-color: #ffffff;
}

.bg_shadow {
  padding: 30px;
  box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);
}

/* サイズ */
.width_100 {
  width: 100%;
}

.heading_left_wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
}

.headding_left_wrap .item_l {
  margin-right: 10rem;
}

/* margin */
.mt_1 {
  margin-top: 0.5rem;
}

.mt_2 {
  margin-top: 1rem;
}

.mt_3 {
  margin-top: 1.5rem;
}

.mt_4 {
  margin-top: 2rem;
}

.mt_5 {
  margin-top: 3rem;
}

/* ==================================== */
/**/
/* -----【 btn 】----- */
.btn a {
  text-decoration: none;
  color: #000;
  display: block;
  background-color: #f4bd40;
  padding: 10px 30px;
  text-decoration: none;
  margin-top: 1rem;
  position: relative;
}

.btn a::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translate(0, -50%);
}

.btn a:hover {
  background-color: #cbcbcb;
  transition: background 0.3s;
}

.btn01 {
  /*　コンテンツ内　*/
}

.btn01 a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  background-color: #f4bd40;
  padding: 10px 30px;
  text-decoration: none;
  margin-top: 1rem;
  position: relative;
}

.btn01 a::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translate(0, -50%);
}

.btn01 a:hover {
  background-color: #cbcbcb;
  transition: background 0.3s;
}

.width_full {
  width: 100%;
}

.max-width_half {
  max-width: 50%;
}

.bgColor_lightOrange {
  background-color: rgba(244, 189, 64, 0.3);
}

.txt_justify {
  text-align: justify;
}

.txt_center,
.txt_center tr > * {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.text_center,
.text_center > * {
  text-align: center;
}

.txt_indent1 {
  text-indent: 1em;
}

/* テキスト */
.font_gothic {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.txt_b {
  font-weight: bold;
}

.txt_red {
  color: #f61e1e;
}

.txt_black {
  color: #000;
}

.txt_orange {
  color: #f6921e;
}

.txt_size-1 {
  font-size: 1rem;
}

.txt_size-13 {
  font-size: 1.3rem;
}

.txt_size-15 {
  font-size: 1.5rem;
}

.txt_size-18 {
  font-size: 1.8rem;
}

/*----- 【 見出し 】 -----*/
.h1 {
  display: block;
  position: absolute;
  height: 20rem;
  left: calc(50% - 670px);
  top: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.h1_img {
  margin-bottom: 1rem;
}

.h1_text {
  font-size: 1.8rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  line-height: 1;
}

.h1_textEn {
  line-height: 1.3;
  text-align: center;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  background: url("../images/ttl_box_line.png") bottom right no-repeat;
  padding: 1em;
}

.h2 {
  /**/
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 0.8;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.h2 > span {
  font-size: 0.9rem;
  line-height: normal;
  /* 「BIZ UDPゴシック」をWindowsで指定 */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.h2:before {
  content: "";
  position: absolute;
  bottom: -30px;
  width: 50px;
  height: 5px;
  left: 0%;
  transform: translateX(0%);
  background-color: #faaf3b;
  border-radius: 5px;
}

.h2_2 {
  /*コンテンツトップにある見出し*/
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.h2_2 .en {
  font-size: 0.9rem;
  line-height: normal;
  /* 「BIZ UDPゴシック」をWindowsで指定 */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

@media screen and (max-width: 767px) {
  .h2_2 .newline {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
  }
}
.h3 {
  /*h4→h3 オレンジ文字*/
  line-height: 1;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f6921e;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.content_box_h4 {
  margin-top: 5rem;
}

h3 + .content_box_h4 {
  margin-top: 0rem;
}

.content_box_h4 h4 {
  line-height: 1;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f6921e;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.content_box_h4 h4 + p {
  margin-top: 0.5rem;
}

.main_wrap h4.ttl2 {
  font-size: 1.3rem;
  font-weight: bold;
  background: none;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
  color: #000;
  display: inline-block;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.main_wrap h4.ttl2 span {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(0, 161, 201);
}

.main_wrap h4.ttl2 :before {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 2px;
  width: 100%;
  left: 0%;
  transform: translateX(0%);
  background-color: rgb(0, 161, 201);
  border-radius: 2px;
}

.content_box_h5 {
  margin-top: 2rem;
}

.content_box_h5 h5 {
  padding: 0px 0px 0px 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.content_box_h5 h5::before {
  content: "●";
  font-family: "icomoon";
  color: #faaf3b;
  font-size: 1rem;
  border-radius: 50%;
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translate(0, -50%);
}

.main_wrap > div h3 {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 0.8;
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
}

.main_wrap > div h3 > span {
  font-size: 0.5em;
  line-height: normal;
  /* 「BIZ UDPゴシック」をWindowsで指定 */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.main_wrap > div h3:before {
  content: "";
  position: absolute;
  bottom: -30px;
  width: 50px;
  height: 5px;
  left: 0%;
  transform: translateX(0%);
  background-color: #faaf3b;
  border-radius: 5px;
}

.main_wrap > div h4 {
  line-height: 1;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f6921e;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.content_box_h4 {
  margin-top: 5rem;
}

h3 + .content_box_h4 {
  margin-top: 0rem;
}

.content_box_h4 h4 {
  line-height: 1;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #f6921e;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.content_box_h4 h4 + p {
  margin-top: 0.5rem;
}

.main_wrap h4.ttl2 {
  font-size: 1.3rem;
  font-weight: bold;
  background: none;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
  color: #000;
  display: inline-block;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.main_wrap h4.ttl2 span {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(0, 161, 201);
}

.main_wrap h4.ttl2 :before {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 2px;
  width: 100%;
  left: 0%;
  transform: translateX(0%);
  background-color: rgb(0, 161, 201);
  border-radius: 2px;
}

.content_box_h5 {
  margin-top: 2rem;
}

.content_box_h5 h5 {
  padding: 0px 0px 0px 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.content_box_h5 h5::before {
  content: "●";
  font-family: "icomoon";
  color: #faaf3b;
  font-size: 1rem;
  border-radius: 50%;
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translate(0, -50%);
}

.block {
  display: block;
}

@media screen and (max-width: 1369px) {
  /* h1横書き変更 */
  .h1 {
    position: static;
    left: auto;
    height: 8rem;
    margin: auto;
    flex-direction: row;
    justify-content: center;
  }
  .h1 > div {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .h1_text {
    display: block;
    writing-mode: horizontal-tb;
    margin-right: 1em;
  }
  .h1_img {
    margin: 0 1em 0 0;
  }
  .h1_textEn {
    flex-direction: row;
    margin-top: 5px;
  }
  .h1_textEn > span {
    margin: 0 0.2em;
  }
  /*.h1 {
  	display: block;
  	  position: absolute;
      height: 18rem;
      background: url("../images/ttl_box_line.png") bottom right no-repeat;
      left: calc(50% - 670px);
      top: 160px;
      padding: 0px 10px 20px;
  		  display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
      flex-flow: column wrap;
      justify-content: space-between;
      align-items: center;
      }

  .h1_img {
      margin-bottom: 1rem;
  }

  .h1_text{
  	font-size: 1.5rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  	line-height: 1.2;
  }

  .h1_textEn {
      line-height: 1.3;
      text-align: center;
      font-size: 0.75em;
      font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  }*/
}
/*レイアウト*/
.box_textIndent1 > p {
  text-indent: 1em;
}

.pc_off {
  display: none;
}

@media screen and (max-width: 599px) {
  .pc_off {
    display: block;
  }
  .sp_off {
    display: none;
  }
}
/* CSS Document */
/* ====================================

　-　トップページ　toppage

　-　当院について　about

　-　医療設備　equipment

　-　診療科目・部門　section

　-　外来案内　outpatient

　-　入院案内　hospitalization

　-　医療関係の方へ　medical

　-　病院活動　activity

　-　健康診断　checkup


==================================== */
/*
====================================
トップページ　toppage
====================================
*/
.topics_box {
  padding: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topics_orange {
  box-shadow: 0px 0px 30px hsla(38, 94%, 57%, 0.5);
}

.topics_l {
  width: 130px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.topics_l .topics_ttl:last-of-type {
  margin-top: auto;
}

.topics_ttl {
  display: block;
  line-height: 1.5;
}

.topics_ttl p:last-of-type {
  margin-top: 0.5rem;
}

.topics_ttl.orange p:first-of-type {
  background-color: #f6921e;
  color: #fff;
  padding: 0.5rem;
}

.topics_ttl.gray p:first-of-type {
  background-color: #4d4d4d;
  color: #faaf3b;
  padding: 0.5rem;
}

.topics_more > a {
  display: block;
  background-color: #4d4d4d;
  padding: 0.5rem;
  text-decoration: none;
  color: #faaf3b;
  transition: 0.3s;
}

.topics_more > a:hover {
  background-color: #faaf3b;
  color: #4d4d4d;
}

.topics_l_bottom {
  margin-top: auto;
}

.topics_r {
  width: calc(100% - 180px);
}

.dl_topics {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.dl_topics > dt,
.dl_topics > dd {
  padding: 0.2rem 0.3rem;
}

.dl_topics > dt:nth-of-type(n + 2),
.dl_topics > dd:nth-of-type(n + 2) {
  margin-top: 1rem;
}

.dl_topics > dt {
  background-color: #faaf3b;
  flex-basis: 8rem;
  flex-grow: 0;
  text-align: center;
}

.dl_topics > dd {
  flex-grow: 1;
  flex-basis: calc(100% - 10rem);
  margin-left: 0.5rem;
}

.topics_list .wrap {
  display: flex;
  -webkit-bos-direction: nomal;
  flex-flow: row wrap;
  border-bottom: #cbcbcb solid 1px;
  padding: 0.5rem 0;
}

.topics_list .item:first-of-type .wrap {
  padding-top: 0;
}

.topics_list .date {
  display: block;
  width: 9em;
  text-align: center;
}

.topics_list .item:first-child .date {
  background-color: #faaf3b;
}

.topics_list .txt {
  width: calc(100% - 13em);
  display: block;
  margin-left: 2rem;
}

.topics_orange_box {
  border: rgb(255, 225, 180) 5px solid;
  width: calc(100% - 80px);
  margin-top: 30px;
  padding: 20px 15px 15px;
}

.topics_orange_box_title {
  font-size: 1.3rem;
  font-weight: bold;
}

.topics_orange_box_title + * {
  margin-top: 1rem;
}

.ondutydoctor {
  /*　当番医　*/
  display: flex;
  margin-top: 2rem;
}
@media screen and (max-width: 599px) {
  .ondutydoctor {
    display: block;
  }
}

.ondutydoctor_item {
  border: rgb(255, 225, 180) 5px solid;
  padding: 0.75rem 1rem 0.5rem;
  flex-grow: 1;
  text-align: center;
  max-width: 350px;
}

.ondutydoctor_item:nth-of-type(2) {
  margin-left: 1rem;
}
@media screen and (max-width: 599px) {
  .ondutydoctor_item:nth-of-type(2) {
    margin-top: 1rem;
    margin-left: 0;
  }
}

.ondutydoctor table {
  margin: 0.5rem auto 0.5rem;
  width: 100%;
}

.ondutydoctor table th {
  text-align: center;
}

.ondutydoctor table tr.end th {
  background-color: rgba(178, 178, 178, 0.5);
}

.ondutydoctor table tr.end td {
  text-decoration: line-through;
}

.imprtantNotices dd div {
  display: inline-block;
  border: rgb(255, 225, 180) 5px solid;
  padding: 5px 15px;
  margin-bottom: 1rem;
}

.imprtantNotices dt {
  font-size: 1.3rem;
  font-weight: bold;
}

.imprtantNotices dt.notices_btn {
  /*見出し自体リンク*/
  padding-bottom: 30px;
}

.imprtantNotices dt.notices_btn a {
  background: #0066cc;
  padding: 10px 30px;
  color: #fff;
}

.imprtantNotices dt.notices_btn a:hover {
  text-decoration: none;
  background: rgba(0, 102, 204, 0.7);
  transition: background 0.3s;
}

.imprtantNotices dt:nth-of-type(n + 2) {
  padding-top: 30px;
  border-top: #cbcbcb solid 1px;
}

.imprtantNotices dd {
  padding: 10px 0 30px 0;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.imprtantNotices dd:last-of-type {
  padding-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .topics_box {
    display: block;
  }
  .topics_l {
    width: auto;
    display: block;
  }
  .topics_ttl {
    margin-bottom: 1rem;
  }
  .topics_more {
    display: inline-block;
    margin-left: auto;
  }
  .topics_r {
    width: 100%;
  }
  .topics_list .wrap {
    display: block;
  }
  .topics_list .date {
    margin-bottom: 0.5rem;
  }
  .topics_list .txt {
    width: 100%;
    display: block;
    margin-left: 0rem;
  }
}
#toppage .info_banner_box {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#toppage .info_banner_box_item {
  color: #fff;
  width: 30%;
  margin-bottom: 25px;
  text-align: center;
  padding: 15px 0px;
  box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);
}

.info_banner_box_item a {
  color: #fff;
  text-decoration: none;
}

#toppage main {
  padding-bottom: 0;
}

#toppage .map {
  padding: 50px 0;
}

#toppage .map .item:first-of-type dt {
  width: 3em;
}

#toppage .map .item:first-of-type dd {
  margin-left: 4em;
}

#toppage .map .item:last-of-type {
  border-left: 1px solid #000;
  padding-left: 50px;
}

/*

====================================
当院について　about
==================================== */
.policy_wrap {
  background: url(/about/images/about_010.jpg) no-repeat right center;
  background-size: contain;
}

.policy_wrap .shadow_box {
  width: calc(50% + 30px);
  padding: 50px;
}

@media screen and (max-width: 999px) {
  .policy_wrap .shadow_box {
    width: 80%;
    margin: auto;
  }
}
#about .vision_img {
  display: flex;
  justify-content: space-between;
}

#about .vision_img > * {
  width: calc((100% - 40px) / 3);
}

#about .creed_box {
  display: flex;
  justify-content: space-between;
}

#about .creed_box > *:first-of-type {
  width: calc((100% - 40px) / 3);
  flex-direction: column;
}

#about .creed_box > *:last-of-type {
  width: calc((100% - 40px) / 3 * 2 + 20px);
}

#about .history_list dt {
  display: block;
  float: left;
}

#about .history_list dd {
  margin-left: 8em;
}

#about .history_list dt,
#about .history_list dd {
  padding-top: 0.5rem;
}

/*
/*
====================================
当院について　about　info
==================================== */
/*　レポート　*/
.report__endai_list dt {
  margin-top: 1.5rem;
  font-weight: bold;
  padding: 0px 0px 0px 1.5em;
  position: relative;
}

.report__endai_list dt::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border: 3px solid #B7B7B7;
  border-radius: 50%;
  position: absolute;
  left: 0.3rem;
  top: 0.7rem;
  transform: translate(0, -50%);
}

.report__endai_list dd {
  margin-left: 10rem;
}

.report__endai_list dd span {
  font-size: 0.85rem;
}

/*
/*
====================================
医療設備　equipment
==================================== */
.equipment_topimg {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
}

.equipment_topimg img {
  margin: 0 5rem 0 2rem;
  max-width: 30%;
}

/*
====================================
広報誌　publicity
==================================== */
.publicity_contents {
  font-size: 0.8em;
}

/*
====================================
診療科・部門　section
==================================== */
#section .staff_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

#section .staff_item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: calc(50% - 20px);
}

#section .staff_img {
  width: 150px;
}

#section .staff_txt {
  width: 100%;
  max-width: calc(100% - 170px);
  /* table */
}

#section .staff_txt th {
  width: 5em;
}

#section .staff_txt th,
#section .staff_txt td {
  padding: 8px 5px;
}

#section .staff_txt .ryakureki {
  font-size: 0.9em;
}
#section .staff_txt .ryakureki dt {
  margin-top: 0.5em;
  float: left;
}
#section .staff_txt .ryakureki dd {
  margin-top: 0.5em;
  margin-left: 4em;
}
#section .staff_txt .ryakureki dt:first-of-type, #section .staff_txt .ryakureki dd:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 599px) {
  #section .staff_item {
    display: block;
  }
  #section .staff_txt {
    max-width: 100%;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 999px) {
  #section .staff_wrap {
    display: block;
  }
  #section .staff_item {
    width: 100%;
    margin-top: 3rem;
  }
  #section .staff_item:first-of-type {
    margin-top: 0rem;
  }
}
.section_link {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section_link:after {
  display: block;
  content: "";
  width: calc(33.3333% - 10px);
}

.section_btn {
  text-decoration: none;
  width: calc(33.3333% - 10px);
  /*   -webkit-box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);*/
  /*    box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.15);*/
  margin-top: 1rem;
  position: relative;
  display: flex;
  /**/
}

.section_btn::before {
  /**/
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translate(0, -50%);
}

.section_btn:nth-child(1),
.section_btn:nth-child(2),
.section_btn:nth-child(3) {
  margin-top: 0;
}

.section_btn a {
  text-decoration: none;
  color: #000;
  display: block;
  width: 100%;
  background-color: #f4bd40;
  padding: 10px 30px;
}

.section_btn a:hover {
  background-color: #cbcbcb;
  transition: background 0.3s;
}

@media screen and (max-width: 599px) {
  .section_btn {
    width: 100%;
  }
  .section_btn:nth-of-type(n+2) {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 999px) and (min-width: 600px) {
  .section_btn {
    width: calc(50% - 10px);
  }
  .section_btn:nth-of-type(n+3) {
    margin-top: 1rem;
  }
}
/*


====================================
外来案内　outpatient
==================================== */
#outpatient .f_wrap .item:first-child {
  width: calc(60% - 80px);
}

#outpatient .f_wrap .item:nth-child(2) {
  width: calc(40% - 80px);
}

@media screen and (max-width: 999px) {
  #outpatient .f_wrap .item {
    width: calc(100% - 60px) !important;
  }
}
.tantoihyo {
  table-layout: fixed;
  width: 100%;
}

.tantoihyo tr > * {
  text-align: center;
}

.tantoihyo span {
  color: #f61e1e;
}

.tantoihyo td:empty {
  /*空欄*/
  background: rgba(178, 178, 178, 0.5);
}

.tantoihyo tr:first-of-type > * {
  border-color: #666666;
}

.gozen tr:first-of-type th {
  background: rgb(178, 178, 178);
}

.gozen tr:first-of-type td {
  background: rgb(244, 189, 64);
}

.gogo th {
  background: rgba(178, 178, 178, 0.3);
}

.gogo tr:first-of-type th {
  background: rgb(244, 189, 64);
}

.gogo tr:first-of-type td {
  background: rgb(178, 178, 178);
}

/*


====================================
入院案内　hospitalization
==================================== */
#hospitalization .list_disc li {
  margin-top: 1em;
}

#hospitalization .list_disc li:first-child {
  margin-top: 0em;
}

#hospitalization .table_nomal {
  max-width: 50%;
  border: none;
  text-align: center;
}

#hospitalization .table_nomal td:first-of-type {
  background: rgb(244, 189, 64);
  border-right: #fff 2px solid;
  text-align: center;
}

#hospitalization .table_nomal td:last-of-type {
  background: rgb(203, 203, 203);
}

/*


====================================
医療関係の方へ　medical
==================================== */
#medical .flow {
  margin-left: 1rem;
  margin-top: 1rem;
}

#medical .flow th {
  font-size: 3rem;
  line-height: 1;
  padding: 10px;
}

#medical .flow th span {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: rgb(246, 146, 30);
  border-bottom: 1px solid #000;
}

#medical .flow td {
  vertical-align: top;
  padding: 20px 10px;
}

/*


====================================
病院活動　activity
==================================== */
.table_5s .fukidasipop {
  display: none;
  color: #000;
  font-size: 0.85em;
}

.table_5s a:hover .fukidasipop {
  display: block;
  text-decoration: none;
}

/*


====================================
健康診断　checkup
==================================== */
/*.checkup_item td {
    text-align: center;
}

.checkup_item td:nth-of-type(1) {
    text-align: left;
}

.checkup_item .tr_marge td:nth-of-type(1) {
    text-align: center;
}

.checkup_item .tr_marge td:nth-of-type(2) {
    text-align: left;
}*/
/*　いきいきサロン　みらい　*/
.mirai_report > li {
  position: relative;
  display: block;
  width: calc(20% - 20px);
  height: auto;
  margin-bottom: 1rem;
  padding: 5px;
  background: #fff;
  text-align: center;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.mirai_report > li.empty {
  background: none;
}

.mirai_report > li:hover {
  opacity: 0.5;
}

.mirai_report img {
  width: auto;
}

.mirai_report > li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mirai_report > li p {
  font-weight: bold;
}

.mirai_report > li p span {
  font-size: 0.85rem;
  font-weight: nomal;
}

/*　加圧トレーニング　みらい　20220120　*/
.kaatsu_price_box {
  background-color: #f5e09c;
  padding: 1rem;
}

.main_wrap > div h4.kaatsu_price_h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.kaatsu_price_box dl {
  font-weight: bold;
}

.kaatsu_price_box dt {
  float: left;
  font-size: 1rem;
  font-weight: bold;
}

.kaatsu_price_box dt span {
  font-size: 1.3rem;
  width: 6em;
  display: inline-block;
  font-weight: bold;
}

.kaatsu_price_box dd {
  padding-left: 17rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.kaatsu_price_box dd span:first-of-type {
  width: 6rem;
  display: inline-block;
  text-align: right;
  font-weight: bold;
}

.kaatsu_price_box dd span:nth-of-type(2) {
  color: red;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 0.5rem;
}

/* CSS Document */
/* ====================================
	文字の装飾
==================================== */
.txt_red {
  color: #f00;
}

.txt_blue {
  color: #00f;
}

.txtBold {
  font-weight: bold;
}

/*====================================
	疾患について-肛門疾患
====================================*/
.dl_col-1 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1024px;
  padding: 0.5rem 0;
}

.dl_col-1 dt {
  font-weight: bold;
  position: relative;
  padding-left: 1.2rem;
  box-sizing: border-box;
}

.dl_col-1 dt::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #faaf3b;
  border-radius: 50%;
}

.dl_col-1 dd {
  padding-left: 1.2rem;
  box-sizing: border-box;
}

.dl_col-1 dt + dd {
  margin-bottom: 1rem;
}

.dl_col-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1024px;
  padding: 1rem 0;
}

p + .dl_col-2 {
  padding-top: 1rem;
}

.dl_col-2 dt {
  width: 22%;
  font-weight: bold;
  position: relative;
  padding-left: 2.2rem;
  box-sizing: border-box;
}

.dl_col-2 dt::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  width: 10px;
  height: 10px;
  background-color: #faaf3b;
  border-radius: 50%;
}

.dl_col-2 dd {
  width: 78%;
  padding: 0 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.dl_col-2 dd:last-child {
  margin-bottom: 0;
}

/*====================================
	画像-文章　横並び
====================================*/
.flex_col-2 {
  display: flex;
}

.flex_col-2_main {
  width: 70%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.flex_col-2_sub {
  width: 30%;
}

/*====================================
	QandA
====================================*/
.qanda {
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1024px;
  padding-top: 0.5rem;
}

.qanda dt {
  font-weight: bold;
  padding-left: 3rem;
  text-indent: -3rem;
  box-sizing: border-box;
  margin-top: 1rem;
}

.qanda dt::before {
  content: "Ｑ";
  font-size: 2rem;
  line-height: 0;
  padding-right: 1rem;
  color: #faaf3b;
}

.qanda dd {
  padding-left: 3rem;
  text-indent: -3rem;
  box-sizing: border-box;
  margin-top: 1rem;
  text-align: justify;
}

.qanda dd::before {
  content: "Ａ";
  font-size: 2rem;
  line-height: 0;
  padding-right: 1rem;
  color: #00f;
}

.qanda dd + dt {
  margin-top: 2rem;
}

/* =============================================
================================================
	スマホ版のスタイル
================================================
============================================= */
button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 24px;
  right: 24px;
  /* 最前面に */
  z-index: 10;
  /* ボタンの大きさ  */
  width: 42px;
  height: 42px;
}

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

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d6d5d5;
  transition: 0.3s;
}

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

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

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

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  background-color: #333;
  transition: 0.3s;
}

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

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

/* PC閲覧時にハンバーガーボタン及びスマホ用グローバルナビを非表示 */
@media screen and (min-width: 600px) {
  .btn {
    display: none;
  }
  .sp_menu {
    display: none;
  }
}
/* スマホ閲覧時のスタイル */
@media screen and (max-width: 599px) {
  body#toppage {
    width: 100%;
    min-width: unset;
  }
  .img_top {
    padding-top: 90px;
  }
  .header {
    width: 100%;
    height: 90px;
    background-color: #faaf3b;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
  }
  .menu_wrap {
    width: 100%;
    height: 90px;
    margin: 0;
    padding: 0;
  }
  .pc_menu {
    display: none;
  }
  /* 以下スマホ版グローバルナビゲーション */
  .sp_menu {
    width: 100%;
    height: 100%;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  }
  .sp_menu > h1 {
    height: 100%;
  }
  .sp_menu > h1 > a > img {
    height: 100%;
    width: auto;
    padding: 15px 30px;
    box-sizing: border-box;
  }
  .sp_menu .sp_nav {
    height: 100%;
    overflow: auto;
  }
  .sp_menu .sp_nav-wrapper {
    width: 100%;
    height: calc(100vh - 90px);
    position: fixed;
    top: 90px;
    right: -100%;
    display: flex;
    flex-direction: column;
    background-color: #aaa;
    transition: 0.2s;
    z-index: 10;
  }
  .sp_menu .sp_nav-wrapper.open {
    right: 0;
  }
  .sp_menu .sp_nav .sp_cat {
    display: flex;
    flex-direction: column;
    min-height: 60px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
    overflow: auto;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-title {
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-list {
    display: flex;
    flex-direction: column;
    overflow: auto;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-list > li {
    height: 60px;
    background-color: #ccc;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-list > li > a {
    display: block;
    height: 100%;
    width: 100%;
    padding: 20px 20px 20px 40px;
    box-sizing: border-box;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-list .sp_cat-subcat .sp_cat-subcat-title {
    height: 60px;
    padding: 20px 20px 20px 40px;
    box-sizing: border-box;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-list .sp_cat-subcat .sp_cat-subcat-list {
    display: flex;
    flex-direction: column;
    overflow: auto;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-list .sp_cat-subcat .sp_cat-subcat-list li {
    height: 60px;
    background-color: #eee;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
  }
  .sp_menu .sp_nav .sp_cat .sp_cat-list .sp_cat-subcat .sp_cat-subcat-list li a {
    display: block;
    height: 100%;
    width: 100%;
    padding: 20px 20px 20px 60px;
    box-sizing: border-box;
  }
  .sp_menu .sp_nav .sp_cat > .sp_cat-list > .sp_cat-subcat {
    height: unset;
    min-height: 60px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
    overflow: hidden;
  }
}
@media print {
  .sp_menu {
    display: none;
  }
}
/* CSS Document */
/* ====================================

    2022.4.16　整理開始

　-　トップページ　toppage

　-　当院について　about

　-　医療設備　equipment

　-　診療科目・部門　section

　-　外来案内　outpatient

　-　入院案内　hospitalization

　-　医療関係の方へ　medical

　-　病院活動　activity

　-　健康診断　checkup


==================================== */
.main_wrap_inner .textBold {
  font-weight: bold;
}

.main_wrap_inner .text130 {
  font-size: 1.3rem;
}

.main_wrap_inner .text200 {
  font-size: 2rem;
}

.main_wrap_inner .textRed {
  color: red;
}

.main_wrap_inner .textCenter {
  text-align: center;
}

.main_wrap_inner > *:not(:first-child) {
  margin-top: 1rem;
}

.main_wrap_inner .title {
  font-weight: bold;
}

.main_wrap_inner .title.-orangeGothic {
  margin-top: 5rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1;
  font-size: 1.3rem;
  color: #f6921e;
}

.main_wrap_inner .title.-orangeGothic.-rehaTorikumi {
  font-size: 2.8rem;
  margin-top: 0;
}

.main_wrap_inner .title.-circle {
  margin-top: 3rem;
  padding: 0px 0px 0px 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.main_wrap_inner .title.-circle::before {
  content: "●";
  font-family: "icomoon";
  color: #faaf3b;
  font-size: 1rem;
  border-radius: 50%;
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translate(0, -50%);
}

.main_wrap_inner .mt10 {
  margin-top: 10rem;
}


/* CSS Document */
/*削除するため、ここに移動*/
/*
.dammy {
    background: #B7B7B7;
}

.ttl_box h1 {
    display: block;
    font-size: 1.5rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 0;
    padding-right: 0.7rem;
}

.ttl_box h1 img {
    margin-bottom: 0.3rem;
}


.ttl_box p:last-of-type {
    line-height: 1.3;
    text-align: center;
    font-size: 0.75em;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

*/
.un_ingaikatsudo_tableBox {
  overflow-y: scroll;
  max-height: 45em;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .un_ingaikatsudo_tableBox {
    overflow-x: scroll;
  }
}
@media screen and (max-width: 599px) {
  .un_ingaikatsudo_tableBox {
    overflow-x: scroll;
  }
}

.un_ingaikatsudo_table {
  width: 100%;
  min-width: 980px;
  font-size: 0.85em;
  border-bottom: solid 2px #666;
}
.un_ingaikatsudo_table tr > th {
  text-align: center;
}
.un_ingaikatsudo_table tr > td:first-child {
  width: 8em;
  text-align: center;
}
.un_ingaikatsudo_table tr > td:nth-child(2) {
  width: 15em;
}
.un_ingaikatsudo_table tr > td:nth-child(3) {
  width: auto;
}
.un_ingaikatsudo_table tr > td:nth-last-child(2) {
  width: 8em;
}
.un_ingaikatsudo_table tr > td:last-child {
  width: 8em;
}
.un_ingaikatsudo_table .ingaikatsudo_td3 > td:first-child {
  text-align: left;
  width: auto;
}
.un_ingaikatsudo_table .ingaikatsudo_td3 > td:nth-child(2) {
  width: 8em;
}
.un_ingaikatsudo_table .ingaikatsudo_td3 > td:nth-child(3) {
  width: 8em;
}
.un_ingaikatsudo_table .ingaikatsudo_year > th {
  font-weight: bold;
  text-align: left;
  background-color: #faaf3b;
  border-top: solid 2px #666;
  border-bottom: solid 1px #666;
}
.un_ingaikatsudo_table + .h4 {
  margin-top: 1.5em;
}

.un_ingaikatsudo_col4 tr > td:first-child {
  text-align: left;
  width: 20em;
}
.un_ingaikatsudo_col4 tr > td:nth-child(2) {
  width: auto;
}
.un_ingaikatsudo_col4 tr > td:nth-last-child(2) {
  width: 8em;
}
.un_ingaikatsudo_col4 tr > td:last-child {
  width: 8em;
}

.un_topics_nenmatsunenshi th, .un_topics_nenmatsunenshi td {
  text-align: center;
}
.un_topics_nenmatsunenshi tr:last-of-type {
  border-bottom: solid 2px #666666;
}
.un_topics_nenmatsunenshi .kyushin {
  color: red;
}

.un_e-cart_img {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
.un_e-cart_img > .item {
  max-width: 48%;
}
.un_e-cart_img .slide_box {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* ふわっとアニメーション */
}
.un_e-cart_img .slide_box .slide_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: e-cart-slide 20s 0s infinite;
}
.un_e-cart_img .slide_box .slide_img:nth-of-type(2) {
  animation-delay: 5s;
}
.un_e-cart_img .slide_box .slide_img:nth-of-type(3) {
  animation-delay: 10s;
}
.un_e-cart_img .slide_box .slide_img:nth-of-type(4) {
  animation-delay: 15s;
}
@keyframes e-cart-slide {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.un_e-cart_img .slide_box .slide_img > img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.el_title_circleLarge {
  position: relative;
  margin-top: 8rem;
  margin-bottom: 1.5rem;
  padding-left: 1.25em;
  font-size: 2rem;
  font-weight: bold;
  font-family: '"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif';
}
.el_title_circleLarge::before {
  content: "●";
  color: #faaf3b;
  position: absolute;
  left: 0;
}

.el_title_circleLarge + p {
  margin-top: 0;
}

.el_title_bg {
  margin-top: 5rem;
  margin-bottom: 1rem;
  padding: 0.5em;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: '"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif';
  background-color: #fdd79e;
}

.el_title_gothic {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: '"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif';
}

.el_title_mark {
  margin-right: 0.25em;
  vertical-align: 10%;
  font-size: 0.75em;
  color: #a0a0a0;
}

.el_caption_indent {
  padding-left: 1.25em;
  text-align: left;
  text-indent: -1.25em;
}

.el_caption_number {
  margin-right: 0.25em;
}

.hp_displayNone {
  display: none;
}

@media screen and (max-width: 599px) {
  .hp_displayNone_s {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 999px) {
  .hp_displayNone_m {
    display: none;
  }
}

.hp_h5 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

h4 + .hp_h5 {
  margin-top: 1rem;
}

.hp_mt1rem {
  margin-top: 1rem;
}

.hp_mt3rem {
  margin-top: 3rem !important;
}

.hp_mt5rem {
  margin-top: 5rem !important;
}

.hp_mt8rem {
  margin-top: 8rem !important;
}

.hp_mb1rem {
  margin-bottom: 1rem;
}

sup, sub {
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.hp_textAlign_center {
  text-align: center;
}

.hp_textAlign_right {
  text-align: right;
}

.hp_fontSize_large {
  font-size: 1.5rem;
}

.hp_fontSize_l {
  font-size: 1.5rem;
}

.hp_fontSize_m {
  font-size: 1.3rem;
}

.hp_fontSize_normal {
  font-size: 1rem !important;
}

.hp_fontGothic {
  font-family: '"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif';
}

.hp_fontWeight_b {
  font-weight: bold;
}

.hp_colorOrange {
  color: #f6921e;
}

.hp_colorGreen {
  color: #329646;
}

.hp_colorBlue {
  color: #3c64b4;
}/*# sourceMappingURL=style.css.map */