@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Zen+Maru+Gothic:wght@500;700&display=swap");
/*@mixin hover2 {
  transition: .1s;
  box-shadow: 0 5px 0 0 darken($black, 20%);
  &:hover {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    text-decoration: none;
    box-shadow: 0 0 0 0 darken($black, 20%);
  }
}*/
/******************************************
[column & thumbnail] カラム表示2〜6
******************************************/
.column-2n,
.thumbnail-2n {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
  margin: 20px 0;
}
.column-2n:first-child,
.thumbnail-2n:first-child {
  margin-top: 0;
}
.column-2n .column-box,
.column-2n .thumbnail-box,
.thumbnail-2n .column-box,
.thumbnail-2n .thumbnail-box {
  width: calc((100% - 10px * (2 - 1)) / 2);
  margin: 0;
  /* フレックスアイテムの並べ替え */
}
.column-2n .column-box.left,
.column-2n .thumbnail-box.left,
.thumbnail-2n .column-box.left,
.thumbnail-2n .thumbnail-box.left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.column-2n .column-box.right,
.column-2n .thumbnail-box.right,
.thumbnail-2n .column-box.right,
.thumbnail-2n .thumbnail-box.right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.column-2n .column-box.w100,
.column-2n .thumbnail-box.w100,
.thumbnail-2n .column-box.w100,
.thumbnail-2n .thumbnail-box.w100 {
  width: 100%;
}
.column-2n.space2,
.thumbnail-2n.space2 {
  gap: 2px 2px;
}
.column-2n.space2 .column-box,
.thumbnail-2n.space2 .column-box {
  width: calc((100% - 2px * (2 - 1)) / 2);
  margin: 0;
}

.column-3n,
.thumbnail-3n {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
  margin: 20px 0;
}
.column-3n:first-child,
.thumbnail-3n:first-child {
  margin-top: 0;
}
.column-3n .column-box,
.column-3n .thumbnail-box,
.thumbnail-3n .column-box,
.thumbnail-3n .thumbnail-box {
  width: calc((100% - 10px * (3 - 1)) / 3);
  margin: 0;
}
.column-3n.space2,
.thumbnail-3n.space2 {
  gap: 2px 2px;
}
.column-3n.space2 .column-box,
.thumbnail-3n.space2 .column-box {
  width: calc((100% - 2px * (3 - 1)) / 3);
  margin: 0;
}

.column-4n,
.thumbnail-4n {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
  margin: 20px 0;
}
.column-4n:first-child,
.thumbnail-4n:first-child {
  margin-top: 0;
}
.column-4n .column-box,
.column-4n .thumbnail-box,
.thumbnail-4n .column-box,
.thumbnail-4n .thumbnail-box {
  width: calc((100% - 10px * (4 - 1)) / 4);
  margin: 0;
}
.column-4n.space2,
.thumbnail-4n.space2 {
  gap: 2px 2px;
}
.column-4n.space2 .column-box,
.thumbnail-4n.space2 .column-box {
  width: calc((100% - 2px * (4 - 1)) / 4);
  margin: 0;
}

.column-5n,
.thumbnail-5n {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
  margin: 20px 0;
}
.column-5n:first-child,
.thumbnail-5n:first-child {
  margin-top: 0;
}
.column-5n .column-box,
.column-5n .thumbnail-box,
.thumbnail-5n .column-box,
.thumbnail-5n .thumbnail-box {
  width: calc((100% - 10px * (5 - 1)) / 5);
  margin: 0;
}
.column-5n.space2,
.thumbnail-5n.space2 {
  gap: 2px 2px;
}
.column-5n.space2 .column-box,
.thumbnail-5n.space2 .column-box {
  width: calc((100% - 2px * (5 - 1)) / 5);
  margin: 0;
}

.column-6n,
.thumbnail-6n {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
  margin: 20px 0;
}
.column-6n:first-child,
.thumbnail-6n:first-child {
  margin-top: 0;
}
.column-6n .column-box,
.column-6n .thumbnail-box,
.thumbnail-6n .column-box,
.thumbnail-6n .thumbnail-box {
  width: calc((100% - 10px * (6 - 1)) / 6);
  margin: 0;
}
.column-6n.space2,
.thumbnail-6n.space2 {
  gap: 2px 2px;
}
.column-6n.space2 .column-box,
.thumbnail-6n.space2 .column-box {
  width: calc((100% - 2px * (6 - 1)) / 6);
  margin: 0;
}

/******************************************
[topics]
******************************************/
/* トピックスページャー */
.topics_paging {
  margin: 40px 0 0;
  clear: both;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.topics_paging li {
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  width: auto !important;
  height: 24px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 4px !important;
  list-style: none;
  border: 1px solid #C4C4C4 !important;
  padding: 4px !important;
}
.topics_paging li a {
  font-size: 0.875rem;
  color: #aa0813;
  text-decoration: underline;
  display: block;
}

/******************************************
[floatImg] 画像回り込み
******************************************/
.floatImg {
  overflow: hidden;
}
.floatImg-left, .floatImg-right {
  font-size: 1rem;
  text-align: center;
  display: block;
}
.floatImg-left img,
.floatImg-left .floatImg-photo, .floatImg-right img,
.floatImg-right .floatImg-photo {
  margin-bottom: 10px;
  display: block;
}
.floatImg p {
  overflow: hidden;
}
.floatImg-right {
  float: right;
  margin: 0 0 20px 40px;
}
.floatImg-left {
  float: left;
  margin: 0 40px 20px 0;
}
.floatImg {
  /* sp */
}
@media screen and (max-width: 767px) {
  .floatImg-left, .floatImg-right {
    float: none;
    margin: 0 auto 20px;
  }
  .floatImg-left img, .floatImg-right img {
    height: auto;
  }
}

/******************************************
[sideBnr] 追随バナー
******************************************/
.sideBnr {
  width: 60px;
  position: fixed;
  right: -5px;
  top: 20%;
  z-index: 10;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.sideBnr a {
  font-size: 1.125rem;
  color: #ff632f;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  background: #EBB219;
  border-radius: 5px;
  padding: 15px 22px 15px 15px;
  display: block;
  line-height: 1;
}
.sideBnr a:hover {
  text-decoration: none;
}
.sideBnr {
  /* sp */
}
@media screen and (max-width: 767px) {
  .sideBnr {
    width: 100%;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
  }
  .sideBnr a {
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    -ms-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
            writing-mode: horizontal-tb;
    border-width: 0;
    border-radius: 0;
    padding: 10px;
    display: block;
  }
}

.js-scroll-shrink {
  opacity: 0;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease, -webkit-transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, -webkit-transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.js-scroll-shrink.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/******************************************
[global]
******************************************/
html,
body {
  /*height: 100%;*/
  max-width: 720px;
  margin: auto;
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: "Zen Maru Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

.inner {
  width: 100%;
  padding: 0 16px;
}

img {
  max-width: 100%;
  height: auto;
}
img.radius {
  border-radius: 16px;
}

a {
  color: #1957A4;
}
a:hover {
  text-decoration: underline;
}

p {
  line-height: 1.8;
  text-align: justify;
}
p a {
  color: #ff9903;
  text-decoration: underline;
}

b {
  font-weight: 900;
}

br.space {
  content: "";
  display: block;
  margin: 15px 0;
}

hr {
  margin: 0;
  padding: 30px 0;
  border: 0;
}
hr:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #eaeaea;
}

.small {
  font-size: 84%;
}

.tel i {
  margin-right: 5px;
}

.fz0 {
  font-size: 0;
}

.eng {
  font-family: "Oswald";
  font-weight: normal !important;
}

.img {
  font-size: 0;
}
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

/******************************************
[文字拡大]
******************************************/
.big {
  font-size: 120% !important;
  font-weight: 600 !important;
  /* sp */
}
@media screen and (max-width: 767px) {
  .big {
    line-height: 1.6;
  }
}

/******************************************
[テキスト揃え]
******************************************/
.t-center {
  text-align: center !important;
}

.t-center-pc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .t-center-pc {
    text-align: justify;
  }
}

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

.t-right {
  text-align: right !important;
}

/******************************************
[左右寄せ float]
******************************************/
.f-left {
  float: left;
  margin: 0 20px 0 0;
}

.f-right {
  float: right;
  margin: 0 0 0 20px;
}

/******************************************
[テキストカラー]
******************************************/
.color-main {
  color: #ff632f !important;
}

.color-sub {
  color: #EBB219 !important;
}

.black {
  color: #333 !important;
}

.white {
  color: #fff !important;
}

.red {
  color: #aa0813 !important;
}

.orange {
  color: #ff9903 !important;
}

.yellow {
  color: #fff000 !important;
}

.green {
  color: #19a464 !important;
}

.blue {
  color: #1957A4 !important;
}

.brown {
  color: #8b674c !important;
}

.gray {
  color: #C4C4C4 !important;
}

.gray-light {
  color: #eaeaea !important;
}

/******************************************
[見出し]
******************************************/
h2 {
  font-weight: normal;
}
h2.midashi-h2 {
  font-size: 1.75rem;
  color: #333;
  text-align: center;
  line-height: 1.4;
  font-weight: normal;
  letter-spacing: 3px;
  text-indent: 3px;
  margin-bottom: 20px;
}
h2.midashi-h2 .eng {
  font-size: 0.875rem;
  display: block;
  color: #ff9903;
  text-align: center;
  letter-spacing: 2px;
  text-indent: 2px;
}

h3.midashi-h3 {
  font-size: 1.25rem;
  color: #5a5858;
  font-weight: normal;
  line-height: 1.4;
  margin: 10px auto 20px;
  text-align: center;
  width: calc(100% - 20px);
  overflow: hidden;
}
h3.midashi-h3 span {
  display: inline-block;
  letter-spacing: 2px;
  text-indent: 2px;
}
h3.midashi-h3 span:before, h3.midashi-h3 span:after {
  content: "";
  position: absolute;
  top: 52%;
  width: 200%;
  height: 1px;
  border-bottom: 2px dotted #5a5858;
}
h3.midashi-h3 span:before {
  left: -210%;
}
h3.midashi-h3 span:after {
  right: -210%;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ff632f;
  border-bottom: 2px solid #eaeaea;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: inline-block;
}
h4:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ff9903;
  position: absolute;
  bottom: -2px;
}

h5 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1957A4;
  margin: 10px 0;
}

/******************************************
[header]
******************************************/
header {
  max-width: 720px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .header {
  height: 60px;
  padding: 5px 60px 5px 10px;
}
header .header .logo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
header .header .logo a {
  font-size: 0;
  display: block;
}
header .header .logo a img {
  width: auto;
  height: 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.scrollOn {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.scrollOn header {
  background-color: #F4F0E7;
}
/******************************************
[footer]
******************************************/
footer {
  background-color: #ff632f;
  padding: 60px 0 80px;
}
footer .footer {
  max-width: 360px;
  margin: auto;
}
footer .footer .logo {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
}
footer .footer .logo img {
  width: auto;
  height: 30px;
}
footer .footer > P {
  color: #fff;
  text-align: center;
}
footer .footer > P.add span {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  color: #ff632f;
  background-color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
  display: inline-block;
}
footer .footer > P.tel {
  font-size: 1.5rem;
}
footer .footer .footNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 160px;
  margin-top: 15px;
}
footer .footer .footNav > li {
  margin-top: 10px;
}
footer .footer .footNav > li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
footer .footer .footNav > li a:before {
  content: "-";
  margin: 0 5px;
}
footer .footer .footNav > li:nth-child(-n+4) {
  width: 45% !important;
}
footer .footer .footNav > li::nth-child(n+5) {
  width: 55% !important;
}

/* コピーライト */
.copy {
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  margin-top: 30px;
}

/******************************************
[section]
******************************************/
section {
  padding: 60px 0;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}
section:nth-of-type(even) {
  background-color: #F4F0E7;
}
section:nth-of-type(even) .frame-white {
  background-color: #F4F0E7;
}
section:nth-of-type(even) .frame-beige {
  background-color: #fff;
}

/******************************************
[グローバルナビ]
******************************************/
nav {
  position: fixed;
  left: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  visibility: hidden;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff632f;
  z-index: 10000;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  will-change: transform;
  border-width: 0;
  border-radius: 0;
  padding: 70px 15px 20px;
}
nav > ul {
  display: block;
  width: 100%;
}
nav > ul li {
  border-bottom: 1px solid #fff;
}
nav > ul li:first-child {
  border-top: 1px solid #fff;
}
nav > ul li a {
  display: block;
  color: #fff;
  padding: 15px 0;
}
nav .ttl {
  font-size: 1.25rem;
  font-weight: 700;
}
nav dl.info {
  margin-top: 20px;
}
nav dl.info dt span {
  color: #ff632f;
  background-color: #fff;
}
nav dl.info dd {
  color: #fff;
}
nav dl.info dd a {
  color: #fff;
  text-decoration: underline;
}

/* スマホ用グローバルナビボタン
******************************************/
.button,
.telBtn,
.screen {
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.button,
.telBtn {
  top: 5px;
  width: 50px;
  height: 50px;
  z-index: 99999;
  cursor: pointer;
  border-radius: 4px;
}
.button:after,
.telBtn:after {
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  bottom: 6px;
  width: 100%;
  display: block;
  position: absolute;
}

.button {
  right: 10px;
  outline: none;
}
.button:after {
  color: #fff;
}
.button .bar {
  display: block;
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #ff632f;
  border-radius: 100px;
}
.button .bar:before, .button .bar:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #ff632f;
  border-radius: 100px;
}
.button .bar:before {
  top: -8px;
}
.button .bar:after {
  top: 8px;
}

.open header .logo {
  z-index: 0;
}
.open nav {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}
.open .button {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  left: initial;
  right: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 100000;
}
.open .button:after {
  color: #ff632f;
  bottom: 4px;
}
.open .telBtn {
  z-index: 99998;
}
.open .bar {
  background: none;
}
.open .bar:before, .open .bar:after {
  top: 0;
  background: #fff;
}
.open .bar:before {
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.open .bar:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.open .screen {
  opacity: 0.9;
  visibility: visible;
}

.telBtn {
  right: 60px;
  padding: 5px 0;
  text-align: center;
  z-index: 99997;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.telBtn:after {
  color: #ff632f;
}
.telBtn i {
  font-size: 1.5625rem;
  line-height: 1;
  color: #ff632f;
  top: 2px;
}

.screen {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
}

/* クローンナビ */
.clone-nav {
  width: 100%;
  height: 70px;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: -10px;
  max-width: 100% !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
  background: #ff632f;
  border-top-width: 0;
  padding: 0;
  margin: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 !important;
}
.clone-nav.is-show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
  top: 0;
  -webkit-box-shadow: 6px 6px 4px 0px rgba(51, 51, 51, 0.1);
          box-shadow: 6px 6px 4px 0px rgba(51, 51, 51, 0.1);
}
.clone-nav.is-show .clone-navi-logo {
  display: block;
  padding: 10px 0 10px 20px;
}
.clone-nav.is-show .clone-navi-logo a {
  font-size: 0;
}
.clone-nav.is-show .clone-navi-logo a img {
  width: auto;
  height: 100%;
}
.clone-nav ul {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding-right: 10px;
}
.clone-nav ul li {
  background-color: #ff632f;
  border-right-width: 0 !important;
}
.clone-nav ul li.nav-main a:after {
  font-size: 8px;
  bottom: -3px;
}
.clone-nav ul li a {
  font-size: 16px !important;
}
/******************************************
[totop] トップへ戻るボタン
******************************************/
.pagetop {
  position: fixed;
  bottom: 38px;
  right: -45px;
  margin: auto;
  width: 40px;
  height: auto;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagetop a {
  color: #fff;
  line-height: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
}
.pagetop a i {
  font-size: 1.25rem;
  text-align: center;
  display: block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  line-height: 10px;
}
.pagetop.fade {
  right: 0;
}

/******************************************
[google map]
******************************************/
.gmap {
  height: 500px;
  background-color: #fff;
  padding: 4px;
  overflow: hidden;
  border-radius: 8px;
}
.gmap iframe {
  border-radius: 6px;
  height: 492px;
}

/******************************************
[画像・ボックスの影]
******************************************/
.shadow-1 {
  -webkit-box-shadow: 5px 5px 0px 0px rgba(235, 178, 25, 0.5);
          box-shadow: 5px 5px 0px 0px rgba(235, 178, 25, 0.5);
}

.shadow-2 {
  -webkit-box-shadow: 10px 10px 0px 0px rgba(235, 178, 25, 0.5);
          box-shadow: 10px 10px 0px 0px rgba(235, 178, 25, 0.5);
}

.shadow-3 {
  -webkit-box-shadow: 5px 5px 5px 0px rgba(235, 178, 25, 0.5);
          box-shadow: 5px 5px 5px 0px rgba(235, 178, 25, 0.5);
}

/******************************************
注釈.note
******************************************/
.note {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  text-indent: -1em;
  padding: 0 0 0 1em;
  margin: 5px 0;
  display: block;
  width: 100%;
}
.note-big {
  font-size: initial;
  line-height: 1.5;
  text-indent: -1rem;
  padding: 0 0 0 1rem;
  display: block;
}

/******************************************
[topics] トピックス
******************************************/
.topics.news ul:first-of-type li {
  width: 100%;
  margin-bottom: 15px;
}
.topics.news ul:first-of-type li .topics_date {
  color: #ff632f;
  display: block;
  margin: 0;
  font-weight: 800;
}
.topics.news ul:first-of-type li .category_name {
  font-size: 0.75rem;
  color: #fff;
  margin-left: 5px;
  padding: 5px 10px;
  background: #ff632f;
}
.topics.news ul:first-of-type li .topics_title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin: 5px 0 15px;
}
.topics.news ul:first-of-type li a {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px dashed #C4C4C4;
}
.topics.news ul:first-of-type li a:hover {
  text-decoration: none;
}
.topics.news ul:first-of-type li a span {
  line-height: 1;
}
.topics.detail .topics_title {
  font-size: 1rem;
  font-weight: 600;
}
.topics.detail .topics_date {
  font-size: 0.75rem;
  text-align: right;
  margin: 15px 0;
}
.topics.detail .topics_thumb {
  margin: 10px 0;
}
.topics.detail .topics_thumb img {
  height: auto;
  max-height: 400px;
  display: block;
  margin: auto;
}
.topics.detail .topics_body {
  font-size: 0.875rem;
}
.topics.detail .topics_body a {
  text-decoration: underline;
}
.topics.thumbnail ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2%;
}
.topics.thumbnail ul li {
  width: 23%;
}
.topics.thumbnail ul li a {
  color: #fff;
  display: block;
  line-height: 1.2;
}
.topics.thumbnail ul li .topics_thumb {
  width: 100%;
  height: 15vw;
  display: block;
  margin-bottom: 5px;
  overflow: hidden;
  background: rgba(139, 103, 76, 0.8) url("../img/logo.svg") center no-repeat;
  background-size: 50%;
}
.topics.thumbnail ul li .topics_thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.topics.thumbnail ul li .topics_title {
  font-size: 1rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/******************************************
[.imgTxt] 画像とテキストのセット
******************************************/
.imgTxt-img {
  font-size: 0;
}
.imgTxt-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.imgTxt-txt .ttl {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 15px 0;
  color: #aa0813;
}
.imgTxt-txt .txt {
  font-size: 0.9375rem;
}
.imgTxt:nth-of-type(even) .imgTxt-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.imgTxt:nth-of-type(even) .imgTxt-txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.imgTxt.mini .imgTxt-img {
  width: 300px;
}
.imgTxt.mini .imgTxt-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.imgTxt.reverse .imgTxt-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.imgTxt.reverse .imgTxt-txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/******************************************
[btn] ボタン
******************************************/
.btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px auto 0;
  z-index: 1;
}
.btn a {
  font-size: 0.9375rem;
  color: #333;
  text-decoration: none;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #333;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 13px 20px 15px;
  margin: 0 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-shadow: 0 3px 3px 0 rgba(51, 51, 51, 0.2);
          box-shadow: 0 3px 3px 0 rgba(51, 51, 51, 0.2);
}
.btn a:hover {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
      transform: translateY(3px);
  text-decoration: none;
  -webkit-box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.2);
          box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.2);
}
.btn a:after {
  content: "";
  background-image: url("../img/icon-btnRight.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 15px;
  margin: 1px 0 0 10px;
}

.btn-tel {
  text-align: center;
  margin: 10px 0 0;
  z-index: 1;
}
.btn-tel a {
  font-size: 1.125rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 13px 30px 15px;
  background-color: #EBB219;
  border-radius: 8px;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
.btn-tel a:before {
  font-size: 1rem;
  font-family: "icomoon";
  content: "\e90d";
  margin: 0 5px 0 0;
}

/******************************************
基本テーブルデザイン
******************************************/
table.basic {
  width: 100%;
  table-layout: fixed;
  margin: 0;
}
table.basic tr > th, table.basic tr td {
  font-weight: 500;
  vertical-align: text-top;
  padding: 15px 5px;
  border-bottom: 1px dashed #C4C4C4;
  line-height: 1.4;
}
table.basic tr > th {
  text-align: left;
  width: 80px;
  color: #ff9903;
}
table.basic tr:first-child > th, table.basic tr:first-child td {
  padding-top: 0;
}
table.basic.profile th, table.basic.profile td {
  font-size: 0.9375rem;
  line-height: 1.4;
  padding: 15px 5px;
}
table.basic.profile th {
  width: 65px !important;
  font-weight: 600;
  border-bottom: 2px solid #ff9903;
  color: #ff632f;
  padding-left: 0;
}
table.basic.profile td {
  width: calc(100% - 65px) !important;
  padding-left: 5px;
  padding-right: 0;
  border-bottom: 2px solid #eaeaea;
}
table.normal {
  background: #fff;
}
table.normal tr th, table.normal tr td {
  line-height: 1.6;
  color: #333;
  border: 1px solid #C4C4C4;
  padding: 5px;
}
table.normal tr th {
  text-align: center;
  background: #eaeaea;
  width: 80px;
}

/******************************************
[.frame] フレーム
******************************************/
.frame {
  color: #333;
  background: #F4F0E7;
  padding: 24px;
  margin: 20px 0;
}
.frame-line {
  border: 1px solid #C4C4C4;
  padding: 15px 20px;
  border-radius: 6px;
  margin: 10px 0;
}
.frame-white {
  border-radius: 12px;
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 12px;
}
.frame-beige {
  background-color: rgba(244, 240, 231, 0.5);
  padding: 20px;
  margin: 20px 0;
  border-radius: 12px;
}

/******************************************
[.check] チェックボックス
******************************************/
ul.normal li {
  line-height: 1.4;
  margin: 8px 0 0;
  padding: 0 0 0 20px;
  border-bottom: 1px dashed #C4C4C4;
  padding-bottom: 10px;
}
ul.normal li:before {
  color: #ff632f;
  font-size: 50%;
  content: "●";
  line-height: 1;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 6px;
  top: 8px;
}
ul.normal li:first-child {
  margin-top: 0;
}
ul.check li {
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 10px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #C4C4C4;
}
ul.check li:before {
  color: #ff632f;
  content: "\e901";
  font-family: "icomoon";
  display: block;
  text-align: center;
  margin-right: 5px;
}
ul.check li:first-child {
  margin-top: 0;
}
ul.check.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.check.inline li {
  margin: 0 15px 5px 0;
}

dl.normal dt {
  font-weight: 700;
  text-indent: -21px;
  padding-left: 25px;
  margin-top: 10px;
}
dl.normal dd {
  padding-left: 12px;
}
dl.check {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
dl.check:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}
dl.check dt {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  color: #EBB219;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 20px;
}
dl.check dt p {
  line-height: 1;
}
dl.check dt:first-of-type {
  margin-top: 0;
}
dl.check dt:before {
  font-size: 1.3em;
  content: "\e901";
  font-family: "icomoon";
  display: block;
  text-align: center;
}
dl.check dd {
  font-size: 0.875rem;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}
dl.check dd p {
  line-height: 1.4;
}

/******************************************
[値段共通] .price
******************************************/
.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 8px 5px 10px;
  margin: 5px 0 0;
  border-bottom: 1px dashed #C4C4C4;
}
.price:first-of-type {
  margin-top: 0;
}
.price dt, .price dd {
  font-size: 1.125rem;
  line-height: 1.4;
}
.price dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.price dt small {
  color: #333;
}
.price dd {
  font-size: 1.5rem;
  padding-left: 10px;
  color: #aa0813;
  text-align: right;
}
.price dd small {
  font-size: 0.875rem;
}

/******************************************
ローディング　loading
******************************************/
#load_animation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#load_animation .load-icon {
  padding: 50px 0;
}

#load_animation .load-icon img {
  width: 200px;
  height: auto;
  display: none;
}

#load_animation .loading_gif {
  padding: 50px 0;
}

#load_animation .loading_gif img {
  height: auto;
  display: none;
}

/******************************************
コンタクトエリア　.contactSec
******************************************/
#contactSec {
  background-color: #fff !important;
  -webkit-box-shadow: 0 -5px 5px 0 rgba(51, 51, 51, 0.1);
          box-shadow: 0 -5px 5px 0 rgba(51, 51, 51, 0.1);
}
#contactSec h3 {
  margin-bottom: 40px;
}
#contactSec .contactSec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}
#contactSec .contactSec li {
  width: 50%;
  text-align: center;
}
#contactSec .contactSec li p {
  text-align: center;
  line-height: 1;
}
#contactSec .contactSec li .ttl {
  font-size: 1rem;
  color: #ff632f;
  background-color: #fff;
  display: inline-block;
  padding: 0 5px;
  z-index: 1;
}
#contactSec .contactSec li .tel {
  font-size: 1rem;
  border: 2px solid #eaeaea;
  border-radius: 10px;
  padding: 20px 10px 15px;
  margin-top: -17px;
}
#contactSec .contactSec-bnr {
  text-align: center;
  margin-top: 20px;
}
#contactSec .contactSec-bnr a {
  display: inline-block;
  margin: 0 5px;
}
#contactSec .contactSec-bnr a img {
  width: auto;
  height: 50px;
}

.modalTel {
  position: fixed;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  visibility: hidden;
  top: 0;
  width: 100%;
  height: 100%;
  background: #eaeaea url("../img/bg_seigaiha-g.png") center repeat;
  background-size: 100px 57px;
  overflow-y: auto;
  z-index: 1000000;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  will-change: transform;
  border-width: 0;
  border-radius: 0;
  padding: 25px 15px 20px;
}
.modalTel .ttl {
  font-weight: 700;
  color: #fff;
  background-color: #333;
  padding: 10px 10px 12px;
  line-height: 1;
  margin: 10px 0 5px;
}
.modalTel dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modalTel dl dt, .modalTel dl dd {
  padding: 7px 10px 5px;
  margin: 5px 0;
  line-height: 1;
}
.modalTel dl dt {
  width: 30%;
  background-color: #EBB219;
  text-align: center;
}
.modalTel dl dd {
  width: 70%;
  font-size: 1.25rem;
  font-weight: 700;
}
.modalTel dl dd a {
  color: #333;
}

/******************************************
ローディング　loading
******************************************/
#load_animation {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

#load_animation.is-active {
  opacity: 0;
  visibility: hidden;
}

.load-icon {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.load-icon img {
  width: 70%;
  height: auto;
}

.load-icon.is-active {
  opacity: 1;
  visibility: visible;
}

/******************************************
#bnr バナー
******************************************/
#bnr:after {
  display: none !important;
}
#bnr a {
  font-size: 0;
  display: block;
  text-align: center;
}

/******************************************
下部固定ボタン.fixBnr
******************************************/
.scrollOn .fixBnr {
  bottom: 0;
}

.fixBnr {
  width: 100%;
  height: 40px;
  max-width: 720px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  bottom: -45px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fixBnr a {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 0;
}
.fixBnr a i, .fixBnr a img {
  margin-right: 5px;
}
.fixBnr a.contact {
  background-color: #aa0813;
  width: 50%;
}
.fixBnr a.contact i {
  font-size: 18px;
}
.fixBnr a.simu {
  background-color: #EBB219;
  width: 50%;
}
.fixBnr a.simu i {
  font-size: 20px;
}

dl.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
dl.info dt,
dl.info dd {
  margin-top: 5px;
}
dl.info dt {
  width: 68px;
  line-height: 1;
}
dl.info dt span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  display: block;
  background-color: #ff632f;
  padding: 6px 10px 7px;
  border-radius: 4px;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
dl.info dd {
  font-size: 0.875rem;
  line-height: 1.4;
  width: calc(100% - 78px);
}
dl.info dd.tel {
  font-size: 140%;
  font-weight: bold !important;
}
dl.info dd.tel a {
  line-height: 1;
  display: block;
}

/******************************************
#breadcrumb-nav パンくずリスト
******************************************/
#breadcrumb-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10;
}
#breadcrumb-nav::-webkit-scrollbar {
  display: none;
}
#breadcrumb-nav ul, #breadcrumb-nav ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
#breadcrumb-nav li {
  font-size: 12px;
  color: #5a5858;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#breadcrumb-nav li:not(:last-child)::after {
  content: ">";
  font-size: 10px;
  color: #5a5858;
  margin: 0 8px;
}
#breadcrumb-nav li a {
  color: #ff632f;
  text-decoration: none;
  padding: 4px 0;
}
#breadcrumb-nav li a:active {
  opacity: 0.6;
}
#breadcrumb-nav li[aria-current=page], #breadcrumb-nav li:last-child {
  color: #5a5858;
  padding-right: 15px;
}

/* ==========================================================================
   Modal Window Simulation 
   ========================================================================== */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  /* アクティブ時のクラス */
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.c-modal {
  /* 背景の黒いマスク */
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.c-modal {
  /* モーダル本体のコンテナ */
}
.c-modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 92%;
  max-width: 480px;
  max-height: 80%;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.c-modal {
  /* 閉じるボタン */
}
.c-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-modal__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #333;
  display: block;
}
.c-modal__close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal__close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-modal__close:hover {
  background: #e0e0e0;
}
.c-modal {
  /* タイトル */
}
.c-modal__title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  padding-right: 30px;
}
.c-modal {
  /* スクロールエリア */
}
.c-modal__content {
  padding: 40px 10px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* モーダル内部の schedule 用スタイル */
}
.c-modal__content .schedule {
  margin: 0 !important;
}
.c-modal__content .schedule .note {
  font-size: 0.75rem;
}

body.is-modal-open {
  overflow: hidden;
}

/******************************************
[.schedule] 診察時間
******************************************/
.schedule table {
  width: 100%;
  margin: 10px 0;
  table-layout: fixed;
  border-collapse: collapse;
}
.schedule table tr th, .schedule table tr td {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 12px 7px;
  border-right: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
}
.schedule table tr th {
  padding: 7px;
}
.schedule table tr th:first-child {
  width: 90px;
  text-align: right;
  padding-left: 0;
}
.schedule table tr th:last-child {
  border-right: none;
}
.schedule table tr th:not(:first-child) {
  width: auto;
}
.schedule table tr td {
  text-align: center;
}
.schedule table tr td:last-child {
  border-right: none;
}
.schedule table tr td.short {
  color: #ff9903;
  padding: 5px 0;
  margin-top: -10px;
}
.schedule table tr td.short span.small {
  font-size: 0.625rem;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.schedule table tr td.holiday {
  color: #aa0813;
}
.schedule table tr:last-child th, .schedule table tr:last-child td {
  border-bottom: none;
}
.schedule dl dt {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 10px;
  background-color: #aa0813;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 5px;
}
.schedule dl dd {
  font-size: 0.875rem;
  color: #aa0813;
  line-height: 1.4;
  display: inline-block;
}
.schedule .note span {
  text-decoration: underline;
}

.access .img {
  margin-bottom: 20px;
}
.access .img img {
  border-radius: 14px;
}
.access dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.access dl dt {
  width: 60px;
}
.access dl dt span {
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  background-color: #aa0813;
  padding: 6px 9px 7px;
  margin-top: 2px;
  border-radius: 4px;
  -moz-text-align-last: justify;
       text-align-last: justify;
  display: block;
}
.access dl dd {
  width: calc(100% - 70px);
}

#index {
  /******************************************
  [mv]
  ******************************************/
}
#index .mv {
  height: 100vh;
  height: 100dvh;
  padding: 60px 20px 20px;
  background-color: #F4F0E7;
}
#index .mv-box {
  width: 100%;
  height: 100%;
  background: url("../img/mv-bg.jpg") center bottom no-repeat;
  background-size: cover;
  border-radius: 12px;
}
#index .mv-box .mv-ttl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 30px 30px 0 0;
}
#index .mv-box .mv-ttl p {
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2px;
  color: #fff;
  margin: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow: 0px 0px 5px #333333;
}
#index .mv-box .mv-ttl p:first-child {
  font-size: 1.25rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#index .mv-box .mv-ttl p:last-child {
  font-size: 2rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#index .mv-box .mv-txt {
  width: 100%;
  max-width: 350px;
  font-size: 1rem;
  line-height: 170%;
  color: #333;
  margin: 10px auto 0;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}
#index {
  /******************************************
  [sec3]  新型コロナウイルス感染予防および感染防止の取り組み
  ******************************************/
}
#index #infection-control {
  background: none;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
#index #infection-control:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin: auto;
  max-width: 720px;
  height: 100vh;
  background-image: url("../img/index_sec3-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}
#index #infection-control .inner {
  z-index: 2;
}
#index #infection-control h2, #index #infection-control p, #index #infection-control li {
  color: #fff;
}
#index #infection-control .midashi-h2 {
  font-size: 1.5rem;
  letter-spacing: 0;
  text-indent: 0;
  font-weight: 700;
}
#index #infection-control h3.ttl {
  font-size: 1.125rem;
  color: #ff632f;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px 13px;
  border-radius: 100px;
  margin: 0 auto 20px;
}
#index #infection-control .normal li {
  border-bottom-color: #fff;
}
#index #infection-control .normal li:before {
  color: #fff;
}
#index .infection-control-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px 20px;
}
#index .infection-control-list li {
  width: 29.33%;
}
#index .infection-control-list li .img {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}
#index .infection-control-list li > .ttl {
  font-size: 0.875rem;
  line-height: 140%;
  text-align: center;
  margin-top: 5px;
  font-weight: 700;
}
#index .infection-control-list li {
  /*最後の２つだけ幅が変わる*/
}
#index .infection-control-list li:nth-last-child(-n+2) {
  width: 41.33%;
}
#index {
  /******************************************
  [sec5]  access
  ******************************************/
}
#index {
  /******************************************
  [sec4]  トップお知らせ
  ******************************************/
}
#index #news {
  background-size: 25px 25px;
}
#index #news .news {
  background-color: #F4F0E7;
  padding: 20px;
  border-radius: 20px;
}
#index #news .news ul li a .topics_date {
  font-size: 0.875rem;
}

#second section:nth-child(even) .frame-line {
  background-color: rgba(244, 240, 231, 0.2);
}
#second section:nth-child(odd) .frame-line {
  background-color: #fff;
}
#second {
  /******************************************
  [mv] メインタイトル
  ******************************************/
}
#second .mv {
  width: 100%;
  height: 180px;
  margin-top: 60px;
}
#second .mv-box {
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}
#second .mv-box:after {
  content: "";
  width: 102%;
  height: 102%;
  background: url(../img/mv-bg.jpg) no-repeat center bottom -125px;
  background-size: cover;
  -ms-filter: blur(2px);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: 0;
  opacity: 0.3;
}
#second .mv-ttl {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #333;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#second .mv-img {
  font-size: 0;
  width: 100%;
  height: auto;
}
#second {
  /******************************************
  [policy.html] 診療方針
  ******************************************/
}
#second .greeting .name {
  font-size: 0.75rem;
}
#second {
  /******************************************
  [info.html] 診療案内
  ******************************************/
}
#second .department {
  margin-top: 40px;
}
#second .department:first-of-type {
  margin-top: 0;
}
#second .department .img {
  text-align: center;
}
#second .department .img img {
  border-radius: 12px;
}
#second .department .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #ff632f;
  background-color: #fff;
  padding: 15px;
  border-radius: 0 0 16px 0;
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
}
#second .department .ttl:before, #second .department .ttl:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  background-size: contain;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform-origin: center center;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  z-index: 1;
}
#second .department .ttl:before {
  background-image: url(../img/polygon-r.svg);
  left: 0;
  bottom: -16px;
}
#second .department .ttl:after {
  background-image: url(../img/polygon-r.svg);
  right: -16px;
  top: 0;
}
#second {
  /******************************************
  [facility.html] 設備紹介
  ******************************************/
}
#second section:nth-child(odd) .facility {
  background-color: #fff;
}
#second .img-shadow {
  -webkit-box-shadow: 8px 8px 0 0 #fff;
          box-shadow: 8px 8px 0 0 #fff;
}
#second .facility {
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  background-color: #F4F0E7;
}
#second .facility:first-of-type {
  margin-top: 0;
}
#second .facility .img {
  width: 80%;
  margin: 0 auto 20px;
}
#second .facility .img img {
  border-radius: 12px;
}
#second .facility .txt {
  line-height: 170%;
}
#second {
  /******************************************
  [hospital.html] 成田整形外科について
  ******************************************/
}
#second .about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
#second .about > li {
  width: calc(50% - 7px);
  border-radius: 8px;
  background-color: #F4F0E7;
  padding: 10px;
}
#second .about > li .img img {
  border-radius: 6px;
}
#second .about > li .txt {
  font-size: 0.875rem;
  line-height: 150%;
  margin-top: 10px;
}
#second {
  /******************************************
  [faq.html] よくあるご質問
  ******************************************/
}
#second .faq {
  background: rgba(244, 240, 231, 0.6);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}
#second .faq:last-child {
  margin-bottom: 0;
}
#second .faq dt, #second .faq dd {
  padding-left: 30px;
}
#second .faq dt:before, #second .faq dd:before {
  font-family: "Hina Mincho";
  font-size: 0.875rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  padding: 0;
}
#second .faq dt {
  font-weight: 700;
  margin-bottom: 15px;
}
#second .faq dt:before {
  content: "Q";
  background-color: #ff632f;
}
#second .faq dd:before {
  content: "A";
  background-color: #EBB219;
}
#second {
  /******************************************
  [news.html] トピックスリスト
  ******************************************/
}
#second #news .inner {
  max-width: 800px;
}
#second .topics.thumbnail ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 3%;
}
#second .topics.thumbnail ul li {
  width: 31.333%;
  margin-bottom: 3%;
}
#second .topics.thumbnail ul li:nth-child(4n) {
  margin-right: 0;
}
#second {
  /******************************************
  [contact.html] お問い合わせ
  ******************************************/
}
#second .formTable {
  width: 100%;
}
#second .formTable tr {
  border-bottom: 1px solid #eaeaea;
  display: block;
}
#second .formTable tr th, #second .formTable tr td {
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 5px 0;
  width: 100% !important;
  display: block;
}
#second .formTable tr th {
  font-weight: 600;
  text-align: left;
  margin-top: 10px;
}
#second .formTable tr th span {
  font-size: 0.625rem;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  background-color: #aa0813;
  border-radius: 2px;
  padding: 3px 5px;
  display: inline-block;
  margin-left: 10px;
}
#second .formTable tr td {
  margin-bottom: 10px;
}
#second .formTable tr td input,
#second .formTable tr td select,
#second .formTable tr td textarea {
  width: 100% !important;
  border: 1px solid #C4C4C4;
  border-radius: 2px;
  padding: 5px 10px;
}
#second .formTable tr td input::-webkit-input-placeholder, #second .formTable tr td select::-webkit-input-placeholder, #second .formTable tr td textarea::-webkit-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input::-moz-placeholder, #second .formTable tr td select::-moz-placeholder, #second .formTable tr td textarea::-moz-placeholder {
  color: #ccc;
}
#second .formTable tr td input:-ms-input-placeholder, #second .formTable tr td select:-ms-input-placeholder, #second .formTable tr td textarea:-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input::-ms-input-placeholder, #second .formTable tr td select::-ms-input-placeholder, #second .formTable tr td textarea::-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input::placeholder,
#second .formTable tr td select::placeholder,
#second .formTable tr td textarea::placeholder {
  color: #ccc;
}
#second .formTable tr td input:-ms-input-placeholder,
#second .formTable tr td select:-ms-input-placeholder,
#second .formTable tr td textarea:-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input,
#second .formTable tr td select,
#second .formTable tr td textarea { /* IE */ }
#second .formTable tr td input::-ms-input-placeholder,
#second .formTable tr td select::-ms-input-placeholder,
#second .formTable tr td textarea::-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input,
#second .formTable tr td select,
#second .formTable tr td textarea { /* Edge */ }
#second .formTable tr td .select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#second .formTable tr td .select i {
  font-size: 70%;
  color: #ff632f;
  display: inline-block;
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 14px 0;
  z-index: 1;
}
#second .formTable tr td .select select {
  padding-right: 20px;
  margin-right: 5px;
}
#second .formTable tr td label {
  margin-right: 10px;
}
#second .formTable tr td label input[type=checkbox],
#second .formTable tr td label input[type=radio] {
  margin-right: 5px;
  -webkit-appearance: checkbox;
  width: auto !important;
}
#second .submit {
  text-align: center;
  margin-top: 20px;
}
#second .submit input {
  font-size: 0.9375rem;
  text-align: center;
  border: 1px solid #C4C4C4;
  padding: 5px 10px;
  margin: 0 5px;
  width: 100px;
}
#second .submit input[type=submit] {
  color: #fff;
  background: #ff632f;
}
#second .privacy-box {
  width: 100%;
  margin-top: 0 !important;
  padding: 10px;
}
#second .privacy-box-txt {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
#second .privacy-box-txt > p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
#second .privacy-box-txt dl dt, #second .privacy-box-txt dl dd {
  font-size: 0.875rem;
  line-height: 1.6;
}
#second .privacy-box-txt dl dt p, #second .privacy-box-txt dl dd p {
  line-height: 1.6;
}
#second .privacy-box-txt dl dt {
  font-weight: bold;
  color: #1957A4;
  margin: 20px 0 5px;
}
#second .privacy-box-txt dl dd:nth-child(2) {
  margin-bottom: 10px;
}
#second .privacy-box-txt dl dd a {
  text-decoration: underline;
}
#second .privacy-box-txt ul {
  margin: 0 0 20px 2em;
}
#second .privacy-box-txt ul.parenthesized {
  margin: 0 0 20px 1em;
}
#second .privacy-box-txt ul.parenthesized li {
  list-style-type: none;
  counter-increment: cnt;
}
#second .privacy-box-txt ul.parenthesized li::before {
  content: "（ " counter(cnt) " ）";
}
#second .privacy-box-txt ul.decimal li {
  list-style-type: decimal;
}
#second .privacy-box-txt ul li {
  font-size: 0.875rem;
  margin: 5px 0;
}
#second .privacy table {
  margin-top: 5px;
}
#second .privacy table tr th, #second .privacy table tr td {
  font-size: 0.75rem;
  color: #333;
  border: 1px solid #C4C4C4;
  padding: 10px 5px;
}
#second .privacy table tr th {
  width: 120px;
  background-color: rgba(234, 234, 234, 0.4);
}
#second .privacy table tr td {
  background-color: #fff;
}
#second .cookie .cookieTable {
  overflow-y: scroll;
}
#second .cookie .cookieTable table {
  width: 800px;
}
#second .cookie .cookieTable table tr th, #second .cookie .cookieTable table tr td {
  font-size: 0.875rem;
}
#second .cookie .cookieTable table tr th {
  width: 33.333% !important;
}