@charset "UTF-8";
/* ==================================================
common.css
================================================== */
/* common
--------------------------------------------------*/
body {
  font-family: inherit;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", 'Sawarabi Mincho', serif;
}

/* レイアウト調整
--------------------------------------------------*/
.margin-top {
  margin-top: 50px !important;
}

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

.margin-top-half {
  margin-top: 25px !important;
}

.margin-bottom-half {
  margin-bottom: 25px !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-gutter > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

/* biggerlink
--------------------------------------------------*/
.biggerlink {
  cursor: pointer;
}

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

/* Flex-box
--------------------------------------------------*/
/*
==================================================
 8.0 - Flex-box
--------------------------------------------------
*/
.alm-reveal,
.flex-5,
.flex-4,
.flex-3,
.flex-2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  justify-content: space-between;
}

.flex-5 .unit,
.flex-4 .unit,
.flex-3 .unit,
.flex-2 .unit {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  -ms-flex-flow: column;
  flex-flow: column;
}

.flex-5 .unit ul li,
.flex-5 .unit ol li,
.flex-4 .unit ul li,
.flex-4 .unit ol li,
.flex-3 .unit ul li,
.flex-3 .unit ol li,
.flex-2 .unit ul li,
.flex-2 .unit ol li {
  width: 100%;
  text-align: left;
}

.flex-5 li,
.flex-5 .unit {
  width: 20%;
}

.flex-4 li,
.flex-4 .unit {
  width: 25%;
}

.alm-reveal li,
.flex-3 li,
.flex-3 .unit {
  width: 33.333%;
}

.flex-2 li,
.flex-2 .unit {
  width: 50%;
}

.flex-pic {
  background-position: center center;
  background-size: cover;
}

.alm-reveal::after,
.flex-3::after {
  /* 左寄せ（flex-3のみ有効） */
  content: "";
  display: block;
  width: 33.2%;
}

/* 特殊サイズ */
.doctor-nav .flex-2 .flex-pic {
  width: 40%;
}

.doctor-nav .flex-2 .note {
  width: 60%;
}

@media screen and (max-width: 991px) {
  /* < 992px */
  .flex-5 li,
  .flex-5 .unit,
  .flex-4 li,
  .flex-4 .unit,
  .alm-reveal li,
  .flex-3 li,
  .flex-3 .unit,
  .flex-2 li,
  .flex-2 .unit {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  /* < 768px */
  .flex-5,
  .flex-4,
  .alm-reveal,
  .flex-3,
  .flex-2 {
    align-items: center;
    justify-content: center;
  }
  .flex-5 li,
  .flex-5 .unit,
  .flex-4 li,
  .flex-4 .unit,
  .alm-reveal li,
  .flex-3 li,
  .flex-3 .unit,
  .flex-2 li,
  .flex-2 .unit {
    width: 100% !important;
  }
  .flex-pic {
    height: 300px;
  }
}

/* Waypoints
--------------------------------------------------*/
.animated {
  visibility: visible !important;
}

.delay {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-3 {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.delay-4 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-5 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* Links
--------------------------------------------------*/
/* secion
--------------------------------------------------*/
section {
  margin: 50px 0;
}

/* Header
--------------------------------------------------*/
header {
  border-top: 22px solid #193E91;
  padding: 20px 0;
}

header .container {
  position: relative;
}

header h1 {
  margin: 0;
}

header h1 img {
  width: 170px;
}

header nav {
  position: absolute;
  top: 20px;
  right: 0;
  text-align: right;
}

header nav ul li {
  display: inline-block;
  padding-left: 75px;
  font-size: 110%;
}

header nav ul li a {
  color: #707070;
  padding: 0 2px 5px;
  border-bottom: 1px solid #193E91;
  transition: all 0.5s ease;
}

header nav ul li a:hover {
  text-decoration: none;
  color: #C08D4E;
  border-color: #C08D4E;
  padding-bottom: 10px;
}

@media (max-width: 1200px) {
  header nav {
    top: 25px;
  }
  header nav ul li {
    padding-left: 40px;
    font-size: 100%;
  }
}

@media (max-width: 991px) {
  header nav ul li {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  header .container {
    padding-left: 0;
    padding-right: 0;
  }
  header h1 {
    padding-left: 15px;
  }
  header h1 img {
    width: 120px;
  }
  header nav {
    position: relative;
    top: 15px;
    width: 100%;
    background-color: #193E91;
  }
  header nav ul {
    padding-left: 0;
    display: none;
  }
  header nav ul li {
    display: block;
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  header nav ul li a {
    color: #ffffff;
    display: block;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #ffffff;
  }
  header nav ul li a:hover {
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff;
  }
}

/* Footer
--------------------------------------------------*/
footer {
  border-bottom: 22px solid #193E91;
  padding: 15px 0;
  color: #5F5E5E;
  text-align: right;
  font-size: 80%;
}

@media (max-width: 767px) {
  footer {
    text-align: center;
  }
}

/* モバイルメニュー
--------------------------------------------------*/
.mobile-menu {
  position: absolute;
  top: 4px;
  right: 15px;
  text-align: right;
  display: inline-block;
  z-index: 999;
}

.mobile-menu a {
  display: block;
  padding-top: 7px;
  font-size: 12px;
}

.mobile-menu a span.caption {
  display: inline-block;
  vertical-align: middle;
  margin-top: .2em;
  margin-left: .5em;
  color: #000000;
}

.mobile-menu button {
  vertical-align: middle;
}

/* ハンバーガーメニューアイコン */
.c-hamburger {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0px 0 0;
  padding: 0;
  width: 35px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  right: 5px;
  height: 3px;
  background: #000000;
  border-radius: 5px;
}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000000;
  content: "";
  border-radius: 5px;
}

.c-hamburger span::before {
  top: -8px;
}

.c-hamburger span::after {
  bottom: -8px;
}

.c-hamburger--htx {
  background-color: transparent;
}

.c-hamburger--htx span {
  transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: transparent;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

/* Hero
--------------------------------------------------*/
#hero {
  height: 630px;
  background: transparent url(../images/home/hero.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  display: -ms-flexbox;
  /* for IE10 */
  -ms-flex-pack: center;
  /* for IE10 */
  align-items: center;
}

#hero p {
  padding: 0 15px;
  font-size: 220%;
  color: #ffffff;
}

@media (max-width: 991px) {
  #hero {
    height: 450px;
  }
  #hero p {
    font-size: 150%;
  }
}

@media (max-width: 767px) {
  #hero {
    height: 315px;
  }
  #hero p {
    font-size: 100%;
  }
}

/* main-content 共通
--------------------------------------------------*/
.main-content {
  text-align: center;
}

.main-content h2 span {
  display: block;
  font-size: 60%;
}

.main-content h2 span:before {
  content: "";
  display: block;
  height: 2px;
  width: 100px;
  background-color: #C08D4E;
  margin: 15px auto 10px;
}

.main-content h2, .main-content p {
  margin-bottom: 25px;
}

.main-content h3 {
  margin-bottom: 50px;
  font-size: 170%;
}

.main-content h4 {
  font-size: 120%;
}

.main-content .arrows {
  width: 2em;
}

.main-content .image-box {
  padding: 150px 0;
  margin-bottom: 50px;
  color: #ffffff;
  background-color: gray;
}

.main-content .image-box h2 span:before {
  background-color: #ffffff;
}

.main-content .line-box {
  max-width: 800px;
  padding: 25px 0 25px;
  border-bottom: 1px solid #000000;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.main-content .line-box h3 {
  position: relative;
  text-align: center;
  font-size: 120%;
  margin-top: 0;
}

.main-content .line-box h3 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  background-color: #ffffff;
  text-align: left;
}

.main-content .line-box h3::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000000;
}

.main-content .line-box dl {
  padding: 0 15px;
}

.main-content .line-box dl dt {
  text-align: center;
  border: 1px solid #000000;
  font-weight: inherit;
  margin-bottom: 16.66667px;
}

.main-content .line-box dl dd {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 16.66667px;
}

@media (max-width: 767px) {
  .main-content .image-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Business section
--------------------------------------------------*/
#business .flex-3 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

#business .flex-3 .unit {
  padding: 10px;
}

#business .flex-3 .unit img {
  display: block;
  height: auto;
  max-width: 100%;
  flex-shrink: 0;
  /* for IE11 */
}

@media (max-width: 991px) {
  #business .flex-3 {
    width: 100%;
  }
  #business .flex-3 .unit {
    width: 33% !important;
  }
}

@media (max-width: 767px) {
  #business .flex-3 .unit {
    width: 50% !important;
  }
}

/* Recruit section
--------------------------------------------------*/
#recruit .image-box {
  background: transparent url(../images/home/bg-recruit.jpg) center center no-repeat;
  background-size: cover;
}

#recruit .tel {
  font-size: 300%;
  letter-spacing: 0.05em;
}

#recruit .tel a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

#recruit .tel .title {
  font-size: 50%;
}

#recruit .mail {
  font-size: 300%;
}

#recruit .mail a {
  color: #000000;
}

@media (max-width: 767px) {
  #recruit .tel {
    font-size: 200%;
  }
  #recruit .mail {
    font-size: 150%;
  }
}

/* Shop section
--------------------------------------------------*/
#shop {
  /*
	.image-banner {
		width: 100%;
		height: 450px;
		margin-bottom: $blank;
		background: transparent url(../images/home/bg-shop.jpg) center 80% no-repeat;
		background-size: cover;		
	}
*/
}

#shop .image-box {
  background: transparent url(../images/home/bg-shop.jpg) center 80% no-repeat;
  background-size: cover;
}

#shop .shop-list {
  padding-left: 0;
  margin-bottom: 75px;
}

#shop .shop-list li {
  list-style: none;
  margin-bottom: 50px;
}

#shop .shop-list li .address {
  margin-bottom: 10px;
}

#shop .shop-list li .button a {
  color: #193E91;
  display: inline-block;
  border: 1px solid #193E91;
  padding: 0px 10px 2px;
  transition: all 0.5s ease;
}

#shop .shop-list li .button a:hover {
  color: #C08D4E;
  border-color: #C08D4E;
  text-decoration: none;
}

#shop .shop-list .hovered .button a {
  color: #C08D4E;
  border-color: #C08D4E;
  text-decoration: none;
}

@media (max-width: 991px) {
  #shop .image-banner {
    height: 250px;
  }
}

@media (max-width: 767px) {
  #shop .image-banner {
    height: 200px;
  }
}

/* Company section
--------------------------------------------------*/
#company {
  margin-bottom: 15px;
}

#company .image-box {
  background: transparent url(../images/home/bg-company.jpg) left bottom no-repeat;
  background-size: cover;
  margin-bottom: 0;
  padding: 100px 0;
}

#company .image-box h2 {
  margin-bottom: 50px;
}

#company .image-box h2 span:before {
  background-color: #C08D4E;
}

#company dl {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

#company dl dt, #company dl dd {
  line-height: 1.8em;
  text-align: left;
  margin-bottom: 5px;
}

#company dl dt {
  width: 100px;
  font-weight: inherit;
}

#company dl dd {
  margin-left: 120px;
}

@media (max-width: 767px) {
  #company dl dt, #company dl dd {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  #company dl dd {
    margin-bottom: 25px;
  }
}

/*# sourceMappingURL=common.map */