@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/******************************************
[global]
******************************************/
html,
body {
  height: 100%;
  margin: auto;
}

html {
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  /* sp */
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  body {
    font-size: 14px;
  }
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .inner {
    max-width: 100%;
    padding: 0 20px;
  }
}

img {
  max-width: 100%;
}

a {
  color: initial;
}

a:hover {
  text-decoration: underline;
}

p {
  line-height: 2;
  text-align: justify;
}

/******************************************
[PC・SP表示非表示]
******************************************/
.pc {
  display: inline-block;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .sp {
    display: inline-block;
  }
}

/******************************************
[文字拡大]
******************************************/
.big {
  font-size: 140%;
  font-weight: bold;
}

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

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

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

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

.f-right {
  float: right;
}

/******************************************
[テキストカラー]
******************************************/
.black {
  color: #333;
}

.white {
  color: #fff;
}

.red {
  color: #e4007f;
}

.orange {
  color: #ff7043;
}

.yellow {
  color: #fff000;
}

.green {
  color: #8abc00;
}

.brown {
  color: #3dab4a;
}

.gray {
  color: #a3a3a3;
}

/******************************************
[見出し]
******************************************/
h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #3dab4a;
  line-height: 1.5;
  font-weight: 900;
  margin: 0 0 60px;
  /* sp */
}

h1:before, h1:after {
  content: "";
  width: 95px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

h1:before {
  background-image: url("../img/icon-clover-l.png");
  left: 50px;
}

h1:after {
  background-image: url("../img/icon-clover-r.png");
  right: 50px;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  h1 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0 0 30px;
  }
  h1:before, h1:after {
    content: "";
    width: 47.5px;
    height: 60px;
  }
  h1:before {
    left: 0;
  }
  h1:after {
    right: 0;
  }
}

h2 {
  font-size: 2.5rem;
  color: #3dab4a;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
  /* sp */
}

h2 span {
  font-size: 1rem;
  color: #333;
  font-weight: 300;
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

h2 span:before, h2 span:after {
  content: "";
  width: 30px;
  height: 1px;
  background: #333;
  display: inline-block;
  margin: 0 10px;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  h2 {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }
  h2 span {
    font-size: 0.75rem;
  }
  h2 span:before, h2 span:after {
    content: "";
    width: 20px;
  }
}

/******************************************
[header]
******************************************/
header {
  /* sp */
}

header .header {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}

header .header-left {
  width: 23%;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

header .header-right {
  width: 77%;
  text-align: right;
}

header .header-right > div {
  display: inline-block;
  vertical-align: middle;
}

header .contact {
  background: #3dab4a;
  padding: 20px;
}

header .contact p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

header .contact p span {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  header .header {
    display: block;
  }
  header .header-left {
    width: 100%;
    padding: 10px 70px;
  }
  header .header-left img {
    height: auto;
  }
  header .header-right {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  header .header-right > div {
    display: inherit;
  }
  header .contact {
    width: 100%;
    max-width: 400px;
    padding: 10px 0;
  }
  header .contact p {
    line-height: 1;
  }
  header .contact p span {
    display: inline-block;
    margin-left: 10px;
  }
}

/******************************************
[footer]
******************************************/
footer {
  padding: 20px 0;
  /* sp */
}

footer:after {
  content: "";
  width: 100%;
  height: 70px;
  opacity: 0.2;
  background: url("../img/mv-bottom.png");
  background-size: contain;
  position: absolute;
  bottom: 0;
}

footer .footer-add, footer .footer-tel {
  line-height: 1.5;
  text-align: right;
}

footer .footer-tel span {
  font-size: 1.875rem;
  color: #3dab4a;
  font-weight: 900;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  footer:after {
    height: 35px;
    background-size: cover;
  }
  footer .footer-add, footer .footer-tel {
    text-align: center;
  }
  footer .footer-tel span {
    font-size: 1.5625rem;
  }
}

/* コピーライト */
.copy {
  font-size: 0.75rem;
  color: #3dab4a;
  line-height: 1;
  text-align: center;
  padding: 20px 0 0;
  /* sp */
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .copy {
    font-size: 0.625rem;
  }
}

/******************************************
[section]
******************************************/
section {
  margin: auto;
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
  /* sp */
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  section {
    padding: 30px 0;
  }
}

/******************************************
[グローバルナビ]
******************************************/
nav {
  line-height: 1;
  width: 100%;
  padding: 20px 20px 20px 0;
  /* sp */
}

nav ul {
  margin: auto;
  display: flex;
}

nav ul li {
  flex-grow: 1;
  text-align: center;
  border-left: 1px solid #a3a3a3;
  padding: 0 5px;
}

nav ul li:last-child {
  border-right: 1px solid #a3a3a3;
}

nav ul li a {
  font-weight: 100;
  line-height: 1;
  display: inline-block;
  width: 100%;
  padding: 10px;
  transition: .3s;
}

nav ul li a img {
  height: 30px;
}

nav ul li a span {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

@media screen and (min-width: 770px) {
  nav ul li a:hover {
    background: #80c269;
    color: #fff;
    text-decoration: none;
  }
  nav ul li a:hover img {
    filter: brightness(300%);
  }
  nav ul li a:hover span {
    color: #fff;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  nav {
    position: fixed;
    left: -240px;
    top: 0;
    width: 240px;
    height: 100%;
    background: #3dab4a;
    overflow-y: auto;
    z-index: 1000000;
    -webkit-overflow-scrolling: touch;
    transition: left .2s;
    will-change: transform;
    border-width: 0;
    padding: 0;
  }
  nav ul {
    width: 100%;
    display: block;
    justify-content: center;
    position: initial;
  }
  nav ul li {
    text-align: left;
    padding: 10px;
    border-bottom: 1px dashed #fff;
    border-right-width: 0 !important;
    display: block;
  }
  nav ul li a {
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
  }
  nav ul li a span {
    color: #fff;
    display: inline-block;
    padding: 0;
    margin: 0 0 0 10px;
    border-top-width: 0;
    border-bottom-width: 0;
  }
  nav ul li a img {
    filter: brightness(500%);
  }
  nav ul li a:after {
    content: "\e907";
    font-family: "icomoon";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 16px;
  }
  nav .clone-nav {
    display: none;
  }
}

/* スマホ用グローバルナビボタン
      ******************************************/
.button, .telBtn {
  display: none;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .button, .telBtn {
    display: block !important;
  }
  .button {
    position: fixed;
    top: 30px;
    left: 5px;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: #3dab4a;
    z-index: 1000000;
    cursor: pointer;
    outline: none;
    transition: .2s;
    transform: translate(0, 0);
  }
  .button:after {
    content: "MENU";
    display: block;
    position: absolute;
    bottom: 0px;
    width: 100%;
    color: #fff;
    font-size: 11px;
    text-align: center;
    font-weight: 700;
  }
  .button .bar {
    display: block;
    position: absolute;
    top: 16px;
    right: 0;
    left: 0;
    width: 36px;
    height: 3px;
    margin: auto;
    background: #fff;
  }
  .button .bar:before, .button .bar:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 36px;
    height: 3px;
    margin: auto;
    background: #fff;
  }
  .button .bar:before {
    top: -9px;
  }
  .button .bar:after {
    top: 9px;
  }
  .screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
  }
  .open nav {
    left: 0;
  }
  .open .button {
    border: 2px solid #fff;
    background: none;
    transform: translate(240px, 0);
  }
  .open .bar {
    background: none;
  }
  .open .bar:before, .open .bar:after {
    top: 0;
    background: #fff;
  }
  .open .bar:before {
    transform: rotate(45deg);
  }
  .open .bar:after {
    transform: rotate(-45deg);
  }
  .open .button:after {
    content: "CLOSE";
    color: #fff;
  }
  .open .screen {
    opacity: .6;
    visibility: visible;
  }
  .screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
  }
  .telBtn {
    position: fixed;
    top: 30px;
    right: 5px;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: #3dab4a;
    z-index: 100000;
    cursor: pointer;
    padding: 4px 0;
    text-align: center;
    transition: .2s;
  }
  .telBtn i {
    color: #fff;
    font-size: 40px;
  }
  .button.fixed,
  .telBtn.fixed {
    top: 5px;
  }
}

/* スクロール後グローバルナビ
      ******************************************/
.clone-nav {
  position: fixed;
  z-index: 1000;
  top: -10px;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  transition: .3s;
  transform: translateY(-100%);
  background: #fff;
  border-bottom: 1px solid #a3a3a3;
  padding: 10px 0;
  /* sp */
}

.clone-nav ul {
  width: 1000px;
  margin: auto;
  position: initial;
}

.clone-nav .logo {
  width: 90px;
  top: 0px;
}

.clone-nav .logo img {
  height: auto;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .clone-nav {
    display: none;
  }
}

.is-show {
  transform: translateY(0);
  top: 0;
}

.button, .telBtn {
  display: none;
}

/******************************************
[topics]
******************************************/
.topics {
  padding: 30px;
  border: 1px solid #333;
  /* sp */
}

.topics li {
  width: 100%;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px dashed #333;
}

.topics li:last-child {
  border-bottom-width: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.topics li a {
  display: flex;
  flex-wrap: wrap;
}

.topics li a .topics_date {
  color: #80c269;
  width: 14%;
}

.topics li a .topics_title {
  width: 86%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .topics {
    padding: 20px;
  }
  .topics li {
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
  .topics li a span {
    width: 100% !important;
    display: block;
  }
}

/* トピックスページャー */
.topics_paging {
  margin: 20px 0 0;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* sp */
}

.topics_paging li {
  width: 24px;
  text-align: center;
  font-size: 0.875rem;
  display: inline-block;
  margin: 0 4px;
  list-style: none;
  border: 1px solid #a3a3a3;
  padding: 2px 0;
}

.topics_paging li a {
  color: #3dab4a;
  text-decoration: underline;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .topics_paging li {
    width: auto;
    font-size: 0.75rem;
    padding: 2px;
  }
  .topics_paging li a {
    font-size: 0.75rem;
  }
}

/* 詳細画面 */
.detail {
  border: 1px solid #333;
  padding: 30px;
  /* sp */
}

.detail .topics_title {
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 2px solid #3dab4a;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.detail .topics_date {
  font-size: 0.875rem;
  text-align: right;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .detail {
    padding: 20px;
  }
  .detail .topics_title {
    font-size: 1rem;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .detail .topics_date {
    font-size: 0.75rem;
    text-align: right;
  }
  .detail .topics_body {
    font-size: 0.875rem;
  }
}

/******************************************
[totop]
******************************************/
#pageTop {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 10;
  /* sp */
}

#pageTop a {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 5px;
  display: block;
  width: 50px;
  height: 50px;
  background: #3dab4a;
  border-radius: 100px;
  border: 2px solid #fff;
  transition: .3s;
}

#pageTop a:before {
  content: "\e902";
  font-family: "icomoon";
  display: block;
}

#pageTop a:hover {
  text-decoration: none;
  color: #ff7043;
  background: #fff;
  border: 2px solid #ff7043;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #pageTop {
    right: 10px;
    bottom: 10px;
  }
}

/******************************************
[column]
******************************************/
.column-2n {
  display: flex;
  flex-wrap: wrap;
}

.column-2n .column-box {
  width: calc(105% / 2 - 5%);
  margin: 0 5% 0 0;
}

.column-2n .column-box:nth-child(2) {
  margin-right: 0;
}

.column-2n .column-box.left {
  order: 1;
  margin: 0 5% 0 0;
}

.column-2n .column-box.right {
  order: 2;
  margin: 0 0 0 0;
}

/************************ ここからsp ************************/
@media screen and (max-width: 769px) and (orientation: portrait) {
  .column-2n {
    display: block;
    flex-flow: row-reverse;
  }
  .column-2n .column-box {
    width: 100%;
    margin: 0 0 5%;
  }
  .column-2n .column-box:nth-child(2) {
    margin-bottom: 0;
  }
}

/************************ spここまで ************************/
.column-3n {
  display: flex;
  flex-wrap: wrap;
}

.column-3n .column-box {
  width: calc(105% / 3 - 5%);
  margin: 0 5% 0 0;
}

.column-3n .column-box:nth-child(3n) {
  margin-right: 0;
}

/************************ ここからsp ************************/
@media screen and (max-width: 769px) and (orientation: portrait) {
  .column-3n {
    display: block;
    flex-flow: row-reverse;
  }
  .column-3n .column-box {
    width: 100%;
    margin: 0 0 5%;
  }
  .column-3n .column-box:nth-child(3) {
    margin-bottom: 0;
  }
}

/************************ spここまで ************************/
.column-4n {
  display: flex;
  flex-wrap: wrap;
}

.column-4n .column-box {
  width: calc(105% / 4 - 5%);
  margin: 0 5% 0 0;
}

.column-4n .column-box:nth-child(4n) {
  margin-right: 0;
}

/************************ ここからsp ************************/
@media screen and (max-width: 769px) and (orientation: portrait) {
  .column-4n {
    display: block;
    flex-flow: row-reverse;
  }
  .column-4n .column-box {
    width: 100%;
    margin: 0 0 5%;
  }
  .column-4n .column-box:nth-child(4) {
    margin-bottom: 0;
  }
}

/************************ spここまで ************************/
.column-5n {
  display: flex;
  flex-wrap: wrap;
}

.column-5n .column-box {
  width: calc(105% / 5 - 5%);
  margin: 0 5% 0 0;
}

.column-5n .column-box:nth-child(5n) {
  margin-right: 0;
}

/************************ ここからsp ************************/
@media screen and (max-width: 769px) and (orientation: portrait) {
  .column-5n {
    display: block;
    flex-flow: row-reverse;
  }
  .column-5n .column-box {
    width: 100%;
    margin: 0 0 5%;
  }
  .column-5n .column-box:nth-child(5) {
    margin-bottom: 0;
  }
}

/************************ spここまで ************************/
/******************************************
[google map]
******************************************/
.gmap {
  height: 404px;
  border-top: 2px solid #3dab4a;
  border-bottom: 2px solid #3dab4a;
  /* sp */
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .gmap {
    height: 304px;
  }
  .gmap iframe {
    height: 300px;
  }
}

/******************************************
[画像・ボックスの影]
******************************************/
.shadow-1 {
  box-shadow: 15px 15px 0px 0px rgba(51, 51, 51, 0.2);
}

.shadow-2 {
  box-shadow: 5px 5px 0px 0px rgba(51, 51, 51, 0.2);
}

.shadow-3 {
  box-shadow: 5px 5px 5px 0px rgba(51, 51, 51, 0.4);
}

/******************************************
[.info] 店舗情報
******************************************/
.info {
  display: flex;
  background: #3dab4a;
  /* sp */
}

.info-left, .info-right {
  width: 50%;
}

.info-left {
  display: flex;
  justify-content: center;
  padding: 30px;
}

.info-left .info-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}

.info-left .info-box h3 {
  margin-bottom: 20px;
  padding-top: 50px;
}

.info-left .info-box h3:before {
  width: 44px;
  height: 50px;
}

.info-left .info-box h3 p {
  font-size: 1.875rem;
  font-weight: 700;
}

.info-left .info-table tr {
  border-bottom: 1px dashed #a3a3a3;
}

.info-left .info-table tr th,
.info-left .info-table tr td {
  padding: 10px;
}

.info-left .info-table tr th {
  color: #3dab4a;
  text-align: right;
}

.info-left .info-table tr td {
  text-align: justify;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .info {
    display: block;
  }
  .info-left, .info-right {
    width: 100%;
  }
  .info-left {
    padding: 20px;
  }
  .info-left .info-box {
    padding: 20px;
  }
  .info-left .info-box h3 p {
    font-size: 1.5625rem;
  }
  .info-left .info-table tr th {
    width: 75px;
    padding: 10px 10px 10px 0;
  }
  .info-left .info-table tr td {
    padding: 10px 0 10px 10px;
  }
}

/******************************************
[check] チェックボックス 
******************************************/
.check {
  width: 600px;
  margin: 30px auto;
  border: 2px solid #3dab4a;
  border-radius: 10px;
  padding: 40px;
  /* sp */
}

.check li {
  font-size: 1.5625rem;
  line-height: 1;
  margin-bottom: 20px;
  border-bottom: 1px dotted #3dab4a;
  padding-bottom: 20px;
}

.check li:last-child {
  margin-bottom: 0;
}

.check li:before {
  content: "";
  width: 41px;
  height: 35px;
  background: url("../img/icon-check.png") no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 10px;
  vertical-align: text-bottom;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .check {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
  }
  .check li {
    font-size: 1.125rem;
    text-indent: -35px;
    padding-left: 35px;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) and (max-width: 320px) and (orientation: portrait) {
  .check li {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .check li:before {
    width: 25px;
    height: 21px;
    vertical-align: middle;
  }
}

/******************************************
モニターバナー
******************************************/
.tester {
  text-align: center;
  margin-top: 30px;
}

/******************************************
お客様の声
******************************************/
.voice {
  /* sp */
}

.voice dl {
  width: 100%;
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px dotted #3dab4a;
}

.voice dl dt, .voice dl dd {
  width: 50%;
}

.voice dl dt {
  font-size: 0;
  padding-right: 25px;
}

.voice dl dd {
  padding-left: 25px;
}

.voice dl dd P {
  font-size: 1.125rem;
}

.voice dl dd span {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3dab4a;
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .voice dl {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dotted #3dab4a;
  }
  .voice dl dt, .voice dl dd {
    width: 100%;
  }
  .voice dl dt {
    text-align: center;
    padding: 0 0 20px;
  }
  .voice dl dt img {
    width: 80%;
    max-width: 500px;
    height: auto;
  }
  .voice dl dd {
    padding: 0;
  }
  .voice dl dd p {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .voice dl dd span {
    font-size: 1.25rem;
  }
}

/******************************************
注釈.note
******************************************/
.note {
  font-size: 0.875rem;
  line-height: 1.4;
  text-indent: -1em;
  padding: 0 0 0 1em;
  margin: 5px 0;
}

/******************************************
[btn]
******************************************/
.btn {
  text-align: center;
}

.btn a {
  color: #fff;
  line-height: 1;
  display: inline-block;
  padding: 20px 40px;
  margin-top: 20px;
  border-radius: 100px;
  background: #3dab4a;
  /* sp */
}

.btn a:after {
  content: "\e907";
  font-family: "icomoon";
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
  transition: .3s;
}

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

.btn a:hover:after {
  margin-left: 10px;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  .btn a {
    padding: 10px 20px;
  }
}

.btn2 {
  transition: .3s;
  box-shadow: 4px 4px 0px 0px rgba(51, 51, 51, 0.2);
  margin: 0 4px 4px 0;
}

.btn2:hover {
  box-shadow: none;
  margin: 4px 0 0 4px;
}

#index {
  /******************************************
  [mv]
  ******************************************/
  /******************************************
  [sec1] 一人ひとりの生きる力の基礎を培い、自ら考え表現する力を育成する。
  ******************************************/
  /******************************************
  [sec2] トップメニューバナー
  ******************************************/
  /******************************************
  [sec3] お知らせ
  ******************************************/
  /******************************************
  [sec4] リクルートバナー
  ******************************************/
  /******************************************
  [sec5] 社会福祉法人 笑優会について
  ******************************************/
}

#index .mv {
  width: 100%;
  margin: auto;
  height: 700px;
  overflow: hidden;
  /* sp */
}

#index .mv:before {
  content: "ドキドキわくわく\A毎日が体験";
  white-space: pre;
  font-size: 4.375rem;
  color: #fff;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  text-shadow: 4px 4px 0px rgba(51, 51, 51, 0.9);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  height: 100%;
  max-height: 180px;
}

#index .mv:after {
  content: "";
  width: 100%;
  height: 75px;
  background: url("../img/mv-bottom.png");
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: 0;
}

#index .mv-box {
  height: 700px;
  margin: auto;
}

#index .mv-box li {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#index .mv-box li.mv-1 {
  background-image: url("../img/mv1.jpg");
}

#index .mv-box li.mv-2 {
  background-image: url("../img/mv2.jpg");
}

#index .mv .bx-controls {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}

#index .mv .bx-controls .bx-controls-direction {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 100px;
}

#index .mv .bx-controls .bx-controls-direction .bx-prev,
#index .mv .bx-controls .bx-controls-direction .bx-next {
  background: rgba(51, 51, 51, 0.8);
  border-radius: 10px;
  transition: .3s;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#index .mv .bx-controls .bx-controls-direction .bx-prev span,
#index .mv .bx-controls .bx-controls-direction .bx-next span {
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
  display: block;
}

#index .mv .bx-controls .bx-controls-direction .bx-prev:hover,
#index .mv .bx-controls .bx-controls-direction .bx-next:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
}

#index .mv .bx-controls .bx-controls-direction .bx-prev:hover span,
#index .mv .bx-controls .bx-controls-direction .bx-next:hover span {
  color: #333;
}

#index .mv .bx-controls .bx-controls-direction .bx-prev {
  left: -10px;
  padding: 30px 20px 30px 30px;
}

#index .mv .bx-controls .bx-controls-direction .bx-next {
  right: -10px;
  padding: 30px 30px 30px 20px;
}

#index .mv .bx-controls .bx-pager {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

#index .mv .bx-controls .bx-pager .bx-pager-item {
  margin: 0 8px;
  width: 19px;
  height: 19px;
  display: inline-block;
  text-align: center;
}

#index .mv .bx-controls .bx-pager .bx-pager-item .bx-pager-link {
  font-size: 10px;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

#index .mv .bx-controls .bx-pager .bx-pager-item .bx-pager-link.active {
  background: none;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #index .mv {
    width: 100%;
    height: 300px;
  }
  #index .mv:before {
    font-size: 1.875rem;
    text-shadow: 2px 2px 0px rgba(51, 51, 51, 0.9);
    max-height: 80px;
  }
  #index .mv:after {
    height: 40px;
    background-size: cover;
  }
  #index .mv-box {
    height: 300px;
  }
  #index .mv-box li {
    background-size: cover;
  }
  #index .mv .bx-controls {
    display: none;
  }
}

#index #sec1 {
  /* sp */
}

#index #sec1 p {
  font-size: 1.25rem;
  overflow: hidden;
}

#index #sec1 p img {
  float: right;
  margin: 0 0 0 40px;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #index #sec1 p {
    font-size: 1rem;
  }
  #index #sec1 p img {
    float: none;
    margin: 0 0 20px 0;
  }
}

#index #sec2 {
  padding: 0;
  /* sp */
}

#index #sec2 .topMenu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 5px solid #3dab4a;
  border-bottom: 5px solid #3dab4a;
}

#index #sec2 .topMenu li {
  width: 33.333%;
  /*width: 500px;*/
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

#index #sec2 .topMenu li:nth-child(1) {
  background-image: url("../img/index-menu-tomiya.jpg");
}

#index #sec2 .topMenu li:nth-child(2) {
  background-image: url("../img/index-menu-oshimizu.jpg");
}

#index #sec2 .topMenu li:nth-child(3) {
  background-image: url("../img/index-menu-tatekoshi.jpg");
}

#index #sec2 .topMenu li a {
  display: block;
  width: 100%;
  height: 100%;
}

#index #sec2 .topMenu li a .menu-box {
  text-align: center;
  width: 100%;
  height: 180px;
  padding: 20px 0;
  background: rgba(51, 51, 51, 0.8);
  transition: .3s;
  position: absolute;
  margin: auto;
  bottom: -90px;
}

#index #sec2 .topMenu li a .menu-box img {
  display: block;
  margin: 0 auto 30px;
}

#index #sec2 .topMenu li a .menu-box .btn {
  line-height: 1;
  color: #fff;
  background: #e4007f;
  padding: 8px 0 10px;
  display: block;
  margin: auto;
  width: 200px;
  border-radius: 5px;
}

@media screen and (min-width: 770px) {
  #index #sec2 .topMenu li a:hover .menu-box {
    color: #fff;
    border-radius: 0;
    width: 100%;
    height: 100%;
    padding: 135px 0;
    bottom: 0;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #index #sec2 .topMenu {
    display: block;
    border-top: 5px solid #3dab4a;
    border-bottom: 5px solid #3dab4a;
  }
  #index #sec2 .topMenu li {
    width: 100%;
    height: 200px;
  }
  #index #sec2 .topMenu li a .menu-box {
    height: 100%;
    padding: 50px 30px;
    bottom: 0;
  }
  #index #sec2 .topMenu li a .menu-box img {
    width: 100%;
    height: auto;
  }
}

#index .topics {
  width: 800px;
  margin: auto;
  /* sp */
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #index .topics {
    width: 100%;
  }
}

#index .recruit-bnr {
  background: url("../img/index-sec4-recruit.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
  padding: 40px 0;
  text-align: center;
  /* sp */
}

#index .recruit-bnr p {
  color: #fff;
  font-weight: 700;
  text-align: center;
}

#index .recruit-bnr-ttl {
  font-size: 1.875rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#index .recruit-bnr-ttl:before, #index .recruit-bnr-ttl:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #fff;
  display: inline-block;
  margin: 0 10px;
}

#index .recruit-bnr-txt {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.5;
  text-shadow: 3px 3px 0px #333;
  display: inline-block;
  margin: 40px 0;
}

#index .recruit-bnr-txt span {
  font-size: 3.125rem;
  z-index: 1;
  padding: 0 10px;
}

#index .recruit-bnr-txt:after {
  content: "";
  width: 100%;
  height: 20px;
  background: #3dab4a;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

#index .recruit-bnr .btn a {
  color: #3dab4a;
  background: #fff;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #index .recruit-bnr {
    background-position: center bottom;
    height: 250px;
    padding: 20px 0;
  }
  #index .recruit-bnr-ttl {
    font-size: 1.25rem;
  }
  #index .recruit-bnr-ttl:before, #index .recruit-bnr-ttl:after {
    width: 30px;
    height: 2px;
  }
  #index .recruit-bnr-txt {
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 20px 0;
  }
  #index .recruit-bnr-txt span {
    font-size: 1.875rem;
  }
  #index .recruit-bnr-txt:after {
    bottom: -10px;
  }
}

#index #sec5 {
  /* sp */
}

#index #sec5 .outline {
  width: 100%;
  margin-bottom: 30px;
}

#index #sec5 .outline tr {
  border-bottom: 1px dashed #3dab4a;
}

#index #sec5 .outline tr th, #index #sec5 .outline tr td {
  font-size: 1.125rem;
  padding: 15px 0;
}

#index #sec5 .outline tr th {
  color: #3dab4a;
  width: 10%;
  text-align: right;
}

#index #sec5 .outline tr td {
  width: 90%;
  padding-left: 40px;
}

#index #sec5 .about ul {
  display: flex;
  flex-wrap: wrap;
}

#index #sec5 .about ul li {
  width: 23.5%;
  margin: 2% 2% 0 0;
  background: #80c269;
  border-radius: 5px;
  box-shadow: 3px 3px 0px 0px #3dab4a;
  transition: .3s;
}

#index #sec5 .about ul li:nth-child(-n+4) {
  margin: 0 2% 0 0;
}

#index #sec5 .about ul li:nth-child(4n) {
  margin-right: 0;
}

#index #sec5 .about ul li a {
  color: #fff;
  height: 80px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 770px) {
  #index #sec5 .about ul li:hover {
    background: #3dab4a;
    box-shadow: 3px 3px 0px 0px rgba(51, 51, 51, 0.7);
  }
  #index #sec5 .about ul li:hover a {
    text-decoration: none;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #index #sec5 .outline tr th, #index #sec5 .outline tr td {
    font-size: 0.875rem;
    padding: 10px 0;
  }
  #index #sec5 .outline tr th {
    color: #3dab4a;
    width: 20%;
  }
  #index #sec5 .outline tr td {
    width: 80%;
    padding-left: 20px;
  }
  #index #sec5 .about ul {
    display: flex;
    flex-wrap: wrap;
  }
  #index #sec5 .about ul li {
    width: 48.5%;
    display: flex;
    justify-content: center;
  }
  #index #sec5 .about ul li:nth-child(-n+4) {
    margin: 2% 2% 0 0;
  }
  #index #sec5 .about ul li:nth-child(-n+2) {
    margin: 0 2% 0 0;
  }
  #index #sec5 .about ul li:nth-child(2n) {
    margin-right: 0;
  }
  #index #sec5 .about ul li a {
    font-size: 1rem;
    line-height: 1.2;
    height: auto;
    min-height: 80px;
    padding: 20px 0;
  }
}

#second {
  /******************************************
  [mv] メインタイトル
  ******************************************/
  /******************************************
  [recruit.html] リクルート
  ******************************************/
  /******************************************
  [infertility.html] 不妊でお悩みの方へ
  ******************************************/
  /******************************************
  [treatment.html] 不妊治療について
  ******************************************/
  /******************************************
  [menu.html] 当院での施術
  ******************************************/
}

#second .mv {
  width: 100%;
  margin: 30px auto 0;
  height: 400px;
  overflow: hidden;
  /* sp */
}

#second .mv:after {
  content: "";
  width: 100%;
  height: 50px;
  background: url("../img/mv-bottom.png") repeat-x;
  background-size: contain;
  display: inline-block;
  position: absolute;
  bottom: 0;
  -moz-filter: brightness(1000);
  -o-filter: brightness(1000);
  -ms-filter: brightness(1000);
  filter: brightness(1000);
  opacity: 0.3;
}

#second .mv-box {
  background: url("../img/index-sec4-recruit.jpg") no-repeat center;
  background-size: cover;
  width: 1000px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#second .mv-box p {
  font-size: 3.125rem;
  color: #fff;
  display: inline-block;
  text-shadow: 3px 3px 0px #333;
  z-index: 1;
}

#second .mv-box p:after {
  content: "";
  width: 100%;
  height: 20px;
  background: #3dab4a;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .mv {
    margin: 0 auto 0;
    height: 200px;
  }
  #second .mv:after {
    background-size: cover;
    height: 50px;
  }
  #second .mv-box {
    width: 100%;
    background-size: cover;
  }
  #second .mv-box p {
    font-size: 1.875rem;
  }
  #second .mv-box p:after {
    content: "";
    bottom: 5px;
  }
}

#second .message {
  overflow: hidden;
  /* sp */
}

#second .message-img {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  width: 250px;
  margin: 0 0 0 50px;
  float: right;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .message-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    float: none;
    display: block;
  }
}

#second .recruit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* sp */
}

#second .recruit li {
  text-align: center;
  width: 47.5%;
  margin: 5% 5% 0 0;
}

#second .recruit li a {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  width: 100%;
  display: block;
  padding: 30px 0;
  background: #3dab4a;
  border-radius: 10px;
}

@media screen and (min-width: 770px) {
  #second .recruit li a:hover {
    text-decoration: none;
    background: #80c269;
  }
}

#second .recruit li:nth-child(-n+2) {
  margin-top: 0;
}

#second .recruit li:nth-child(2n) {
  margin-right: 0;
}

#second .recruit li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .recruit {
    display: block;
  }
  #second .recruit li {
    text-align: center;
    width: 100%;
    margin: 5% auto 0 !important;
  }
  #second .recruit li a {
    font-size: 1.125rem;
  }
  #second .recruit li:first-child {
    margin-top: 0;
  }
}

#second .infertility {
  /* sp */
}

#second .infertility #sec1 p {
  font-size: 1.25rem;
  text-align: center;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .infertility #sec1 p {
    font-size: 1rem;
    text-align: justify;
  }
}

#second .voice {
  /* sp */
}

#second .voice dl dt {
  width: 25%;
  padding-right: 10px;
}

#second .voice dl dd {
  width: 75%;
  padding-left: 10px;
}

#second .voice dl dd P {
  font-size: 0.875rem;
  line-height: 1.8;
}

#second .voice dl dd span {
  font-size: 1.25rem;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .voice dl {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dotted #3dab4a;
  }
  #second .voice dl dt, #second .voice dl dd {
    width: 100%;
  }
  #second .voice dl dt {
    text-align: center;
    padding: 0 0 20px;
  }
  #second .voice dl dt img {
    width: 80%;
    max-width: 500px;
    height: auto;
  }
  #second .voice dl dd {
    padding: 0;
  }
  #second .voice dl dd p {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  #second .voice dl dd span {
    font-size: 1.125rem;
  }
}

#second .menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* sp */
}

#second .menu-list-box {
  width: 30.6%;
  margin: 0 4% 4% 0;
}

#second .menu-list-box:nth-child(3), #second .menu-list-box:last-child {
  margin: 0 0 4% 0;
}

#second .menu-list-box:nth-last-child(-n+3) {
  margin-bottom: 0%;
}

#second .menu-list-box .menu-txt {
  font-size: 0.875rem;
  line-height: 1.5;
}

#second .menu-list-box .menu-txt span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #80c269;
  display: block;
  text-align: center;
  margin-bottom: 5px;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .menu-list {
    display: block;
  }
  #second .menu-list-box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 10%;
  }
  #second .menu-list-box:nth-last-child(-n+3) {
    margin: 0 auto 10%;
  }
  #second .menu-list-box .menu-txt span {
    font-size: 1.125rem;
  }
}

#second .price {
  width: 700px;
  display: block;
  margin: auto;
  /* sp */
}

#second .price table {
  width: 100%;
  border: 4px solid #3dab4a;
  border-radius: 10px;
}

#second .price table tr th, #second .price table tr td {
  padding: 10px;
}

#second .price table tr th {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 400;
  width: 200px;
  background: #3dab4a;
  border-bottom: 2px solid #fff;
}

#second .price table tr td {
  font-size: 2.5rem;
  color: #80c269;
  font-weight: 700;
  width: 600px;
  text-align: center;
  border-bottom: 2px solid #3dab4a;
}

#second .price table tr td .free {
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  display: inline-block;
  width: 200px;
  border-radius: 5px;
  padding: 15px;
  background: #80c269;
  margin: 0 0 0 30px;
  position: absolute;
  top: -14px;
}

#second .price table tr td .free span {
  font-size: 1.875rem;
  color: #fff000;
  display: block;
}

#second .price table tr td .free:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 20px 5px 0;
  border-color: transparent #80c269 transparent transparent;
  line-height: 0px;
  _border-color: #333 #80c269 #333 #333;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='$black');
  position: absolute;
  left: -20px;
  top: 55px;
}

#second .price table tr:last-child th, #second .price table tr:last-child td {
  border-bottom-width: 0;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .price {
    width: 100%;
  }
  #second .price table tr th, #second .price table tr td {
    padding: 10p 0x;
  }
  #second .price table tr th {
    font-size: 1rem;
    width: 100px;
  }
  #second .price table tr td {
    font-size: 1.875rem;
    width: initial;
  }
  #second .price table tr td .free {
    font-size: 0.75rem;
    width: 200px;
    padding: 10px;
    margin: 10px auto 0;
    position: initial;
    display: block;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) and (max-width: 320px) and (orientation: portrait) {
  #second .price table tr td .free {
    font-size: 0.625rem;
    width: 100%;
    padding: 5px;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .price table tr td .free span {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) and (max-width: 320px) and (orientation: portrait) {
  #second .price table tr td .free span {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .price table tr td .free:before {
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #80c269 transparent;
    _border-color: #000000 #000000 #80c269 #000000;
    left: 0;
    right: 0;
    margin: auto;
  }
  #second .price table tr:last-child th, #second .price table tr:last-child td {
    border-bottom-width: 0;
  }
}

#second .soushindoBnr {
  /* sp */
}

#second .soushindoBnr a {
  font-size: 1.875rem;
  text-align: center;
  color: #fff;
  font-weight: 900;
  border-radius: 10px;
  width: 600px;
  display: block;
  margin: 20px auto 0;
  background: #3dab4a;
  padding: 10px;
}

#second .soushindoBnr a span {
  font-size: 3.125rem;
  display: inline-block;
}

#second .soushindoBnr a:hover {
  text-decoration: none;
  background: #ff7043;
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .soushindoBnr a {
    font-size: 1.875rem;
    width: 100%;
    max-width: 400px;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) and (max-width: 320px) and (orientation: portrait) {
  #second .soushindoBnr a {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) {
  #second .soushindoBnr a span {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 769px) and (orientation: portrait) and (max-width: 320px) and (orientation: portrait) {
  #second .soushindoBnr a span {
    font-size: 2.1875rem;
  }
}
