@charset "utf-8";

/*************************************
* CSSリセット
*************************************/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  font-style: normal;
  vertical-align:baseline;
  background:transparent;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display:block;
}
article{
  outline: none;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
em{
  font-style: normal;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
th,td{
  font-weight: normal;
}
input, select {
  vertical-align:middle;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*************************************
* 基本タグ・基本クラス
*************************************/

body {
  min-height: 100vh;
  line-height: 1.8;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color:#434343;
  word-break : break-all;
  -webkit-text-size-adjust: 100%;
  letter-spacing : 0.04em;
}
img{
  max-width: 100%;
  height: auto;
}
a{
  color: inherit;
  text-decoration: none;
  max-width: 100%;
}
a:hover{
  text-decoration: none;
}
.screen-reader-text{
  display: none;
}
.container{
  width: calc(100% - 30px);
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
  z-index: 1;
}
.container:after{
  content:'';
  display:block;
  clear:both;
}
.clearfix:after {
  content:'';
  display:block;
  clear:both;
}
.pc,
.tab_pc{
  display: none !important;
}
.fw-nm{
  font-weight: 400;
}
.fw-md{
  font-weight: 500;
}
.fw-bd{
  font-weight: 700;
}

@media screen and (min-width:768px) {
  .sp{
    display: none!important;
  }
  .tab_pc{
    display: block !important;
  }
}

@media screen and (min-width:1100px) {
  body{
    font-size: 16px;
  }
  a:hover img{
    opacity: 0.7;
  }
  .sp_tab{
    display: none !important;
  }
  .pc{
    display: block!important;
  }
}

/*************************************
* パーツ
*************************************/

/*ボタン*/
.btn{
  border: 2px #8AC323 solid;
  border-radius: 8px;
  color: #8AC323;
  font-size: 16px;
  padding: 7px 10px 7px 25px;
  display: block;
  position: relative;
  background: #fff;
  transition: all .2s;
  font-weight: 500;
  z-index: 1;
}
.btn:after{
  content: '';
  position: absolute;
  width: 9px;
  height: 13px;
  background: url(../img/common/btn_icon.png) no-repeat top/cover;
  top: 50%;
  margin-top: -5.5px;
  right: 20px;
}
.btn:hover{
  background: #8AC323;
  color: #fff;
}
.btn:hover:after{
  background-position: bottom;
}

/*セクションスタイル*/
.section{
  padding: 40px 0;
}
.section-sm{
  padding: 30px 0;
}
.section-sm-t{
  padding: 30px 0 40px;
}
.section-sm-b{
  padding: 40px 0 30px;
}
.section-bg1{
  background: #D8EDE4;
}
.section-bg2{
  background: #E2EDD5;
}
.section-curve{
  position: relative;
  background: #fff;
}
.section-curve:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/common/sectionCurve_bg1.png) no-repeat center/contain;
  width: 199px;
  height: 178px;
}
.section-curve:after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/common/sectionCurve_bg2.png) no-repeat center/contain;
  width: 181px;
  height: 162px;
}
.section-curve--noBottomSp:after{
  content: none;
}
.section-curve--reverse:before{
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.section-curve--reverse:after{
  right: auto;
  bottom: auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}

@media screen and (min-width:1100px) {
  .section-curve--noBottomSp:after{
    content: '';
  }
  .section{
    padding: 70px 0;
  }
  .section-sm{
    padding: 50px 0;
  }
  .section-sm-t{
    padding: 50px 0 70px;
  }
  .section-sm-b{
    padding: 70px 0 50px;
  }
}

@media screen and (min-width:1400px) {
  .section{
    padding: 100px 0;
  }
  .section-sm{
    padding: 85px 0;
  }
  .section-sm-t{
    padding: 85px 0 100px;
  }
  .section-sm-b{
    padding: 100px 0 85px;
  }
  .section-curve:before{
    width: 376px;
    height: 336px;
  }
  .section-curve:after{
    width: 343px;
    height: 307px;
  }
}

@media screen and (min-width:1600px) {
  .section-curve:before{
    width: 537px;
    height: 480px;
  }
  .section-curve:after{
    width: 490px;
    height: 438px;
  }
}

/*フォームパーツ*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  color: inherit;
  font-family: inherit;
  border-radius: 0;
  border: 2px #555 solid;
  outline: none;
  padding: 0 44px 0 10px;
  -webkit-appearance: none;
  appearance: none;
  height: 44px;
  line-height: 44px;
  background: #fff;
  width: 100%;
  font-size: 15px;
}
input::placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
  color: #555;
}
select{
  color: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  height: 44px;
  line-height: 44px;
  z-index: 1;
  padding: 0 35px 0 10px;
  border: 2px #555 solid;
  border-radius: 0;
  width: 100%;
  font-size: 15px;
  background: url(../img/common/select_icon.png) no-repeat right 10px center #fff;
}
select:focus{
  outline: none;
}

/*ドット付き見出し*/
.ttl-dot{
  line-height: 1.5;
  font-size: 22px;
  text-align: center;
  padding-bottom: 30px;
  font-weight: 500;
}
.ttl-dot--blue{
  background: url(../img/common/ttl_dot_blue.png) no-repeat bottom/75px;
}
.ttl-dot--orange{
  background: url(../img/common/ttl_dot_orange.png) no-repeat bottom/75px;
}

@media screen and (min-width:1100px) {
  .ttl-dot{
    font-size: 30px;
    padding-bottom: 40px;
  }
  .ttl-dot--blue,
  .ttl-dot--orange{
    background-size: 100px;
  }
}

/*住所*/
.u-address{
  line-height: 1.5;
  font-size: 13px;
}

@media screen and (min-width:1100px) {
  .u-address{
    font-size: 15px;
  }
}

/*3つのポイント*/
.u-point{
  color: #FFAA33;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 500;
}
.u-pointItem{
  width: 100%;
  max-width: 144px;
}
.u-pointItem:nth-child(1){
  background: url(../img/common/u_point_bg1.png) no-repeat center/contain;
  margin-right: 10px;
}
.u-pointItem:nth-child(2){
  background: url(../img/common/u_point_bg2.png) no-repeat center/contain;
  margin-right: 10px;
}
.u-pointItem:nth-child(3){
  background: url(../img/common/u_point_bg3.png) no-repeat center/contain;
}
.u-pointItem a{
  display: block;
  position: relative;
}
.u-pointItem a:before{
  content: '';
  display: block;
  padding-top: 100%;
}
.u-pointItem span{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

@media screen and (min-width:1100px) {
  .u-point{
    font-size: 18px;
    margin-bottom: 0;
  }
  .u-pointItem a:hover{
    color: #434343;
  }
}

/*診療時間*/
.u-time{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.u-timeTable{
  width: 100%;
  table-layout: fixed;
  text-align: center;
}
.u-timeTable th,
.u-timeTable td{
  border: 1px #A0A0A0 solid;
  padding: 10px 0;
}
.u-timeTable thead th{
  font-size: 13px;
  background: #E2EDD5;
}
.u-timeTable thead th:first-child{
  width: 30%;
}
.u-timeTable tbody th{
  width: 30%;
  font-size: 13px;
}
.u-timeTable tbody td{
  font-size: 12px;
}
.u-timeTxt{
  font-size: 13px;
  text-align: left;
}

@media screen and (min-width:1100px) {
  .u-timeTable thead th{
    font-size: 16px;
  }
  .u-timeTable thead th:first-child{
    width: 135px;
  }
  .u-timeTable tbody th{
    font-size: 16px;
  }
  .u-timeTable tbody td{
    font-size: 16px;
  }
  .u-timeTxt{
    font-size: 14px;
  }
}

/*電話リンク*/
.u-tel{
  background: #FFAA33;
  display: block;
  text-align: center;
  padding:10px 0;
}
.u-telTtl{
  color: #222;
  font-weight: 500;
}
.u-telNumber{
  color: #fff;
  font-size: 33px;
  display: inline-block;
  padding-left: 35px;
  font-family: 'Montserrat', sans-serif;
  background: url(../img/common/u_tel_sp.png) no-repeat left;
  line-height: 1.2;
}

@media screen and (min-width:1100px) {
  .u-tel{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
  }
  .u-telTtl{
    font-size: 13px;
    line-height: 1.3;
    text-align: left;
  }
  .u-telNumber{
    font-size: 38px;
    color: #FFAA33;
    background: url(../img/common/u_tel_pc.png) no-repeat left;
    padding-left: 45px;
  }
}

/*************************************
* ヘッダー
*************************************/

.header{
  position: fixed;
  background: #fff;
  height: 65px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.header__logo{
  opacity: 0;
  transition: opacity .3s;
  position: absolute;
  left: 10px;
  top: 19px;
  width: 200px;
}
.header__logo.is-open{
  opacity: 1;
}
.header__description{
  color: #724B36;
  position: absolute;
  left: 10px;
  top: 15px;
  line-height: 1.4;
  transition: opacity .3s;
}
.header__description.is-open{
  opacity: 0;
}
.header__nav{
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  height: calc(100vh - 65px);
  width: 100%;
  padding: 20px;
  overflow-y: scroll;
  background: #fff;
}
.headerMenu{
  border-top: 2px #848682 dotted;
}
.headerMenu__item{
  border-bottom: 2px #848682 dotted;
}
.headerMenu__item > a{
  position: relative;
  display: block;
  font-size: 16px;
  padding-left: 75px;
  height: 50px;
  line-height: 50px;
  font-weight: 500;
}
.headerMenu__item > a.has-child:before{
  content: '';
  position: absolute;
  width: 15px;
  height: 3px;
  background: #848682;
  top: 50%;
  right: 10px;
  margin-top: -1.5px;
}
.headerMenu__item > a.has-child:after{
  content: '';
  position: absolute;
  width: 3px;
  height: 15px;
  background: #848682;
  top: 50%;
  right: 16px;
  margin-top: -7.5px;
}
.headerMenu__item > a.has-child.is-open:after{
  content: none;
}
.headerMenu__item img{
  width: 48px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.headerSubNav{
  display: none;
}
.headerSubNav__close{
  display: none;
}
.headerMenu__item > a.has-child.is-open + .headerSubNav{
  display: block;
}
.headerSubMenu{
  border-top: 2px #848682 dotted;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
}
.headerSubMenu__item{
  width: 50%;
  text-align: center;
  border-bottom: 2px #848682 dotted;
}
.headerSubMenu__item:first-child{
  width: 100%;
}
.headerSubMenu__item:not(:first-child):nth-child(even){
  border-right: 2px #848682 dotted;
}
.headerSubMenu__item:last-child,
.headerSubMenu__item:nth-last-child(2):nth-child(even){
  border-bottom: none;
}
.headerSubMenu__item > a{
  display: block;
  padding: 13px 3px;
  font-weight: 500;
}
.header__tel--pc{
  display: none;
}
.header__tel--sp{
  position: absolute;
  width: 65px;
  height: 65px;
  right: 65px;
  top: 0;
  display: block;
  background: url(../img/common/header_tel_sp.png) no-repeat center top 12px #FFAA33;
}
.header__tel--sp p{
  position: absolute;
  left: 0;
  bottom: 7px;
  line-height: 1;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 11px;
}
.header__toggle {
  position: absolute;
  width: 65px;
  height: 65px;
  right: 0;
  top: 0;
  display: block;
  background: #E2EDD5;
}
.header__toggle p{
  position: absolute;
  left: 0;
  bottom: 7px;
  line-height: 1;
  width: 100%;
  text-align: center;
  color: #5C5C5C;
  font-size: 11px;
}
.header__toggle span {
  position: absolute;
  left: 30%;
  width: 40%;
  height: 3px;
  background: #5C5C5C;
  transition: all .4s;
}
.header__toggle span:nth-of-type(1) {
  top: 15px;
}
.header__toggle span:nth-of-type(2) {
  top: 24px;
}
.header__toggle span:nth-of-type(3) {
  top: 33px;
}
.header__toggle.is-open span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.header__toggle.is-open span:nth-of-type(2) {
  opacity: 0;
}
.header__toggle.is-open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg)
}

@media screen and (max-width:320px) {
  .header__logo {
    width: 160px;
  }
  .header__description{
    font-size: 12px;
  }
  .header__tel--sp {
    width: 55px;
    right: 55px;
  }
  .header__toggle {
    width: 55px;
  }
}

@media screen and (min-width:768px) {
  .header__description{
    top: 22px;
  }
}

@media screen and (min-width:1100px) {
  .header{
    height: 90px;
    transition: height .3s;
    display: flex;
    align-items: center;
  }
  .header.is-scroll{
    height: 0;
  }
  .header__logo{
    opacity: 1;
    width: 300px;
    position: static;
    margin-left: 35px;
  }
  .header.is-scroll .header__logo{
    opacity: 0;
  }
  .header__logo.is-open{
    opacity: 1;
  }
  .header__description{
    transition: opacity .3s;
    position: static;
    margin-left: 20px;
  }
  .header.is-scroll .header__description{
    opacity: 0;
  }
  .header__nav{
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 110px;
    overflow-y: visible;
    background: rgba(255,255,255,0.8);
    padding: 100px 10px 0 10px;
    z-index: -1;
  }
  .headerMenu{
    border: none;
  }
  .headerMenu__item{
    border: none;
  }
  .headerMenu__item > a{
    height: auto;
    line-height: 1;
    padding: 5px 0;
    color: #8AC323;
    text-align: center;
    font-size: 12px;
  }
  .headerMenu__item > a.has-child:before,
  .headerMenu__item > a.has-child:after{
    content: none;
  }
  .headerMenu__item > a:hover{
    opacity: 0.7;
    color: #222;
  }
  .headerMenu__item > a:hover img{
    opacity: 1;
  }
  .headerMenu__item img{
    position: static;
    transform: none;
    display: block;
    margin: 0 auto 10px;
  }
  .headerSubNav{
    position: fixed;
    top: 0;
    background: #fff;
    display: block;
    left: -300px;
    opacity: 0;
    transition: all .3s;
    z-index: -1;
    height: 100vh;
    width: 300px;
    padding: 150px 60px 20px 30px;
    border: none;
    font-size: 15px;
    box-shadow: 2px 0 5px #ccc;
  }
  .headerSubNav__close{
    position: absolute;
    right: 15px;
    top: 90px;
    width: 40px;
    height: 40px;
    display: block;
  }
  .headerSubNav__close:hover{
    opacity: 0.7;
  }
  .headerSubNav__close span {
    position: absolute;
    left: 25%;
    width: 50%;
    height: 3px;
    background: #5C5C5C;
    transition: all .4s;
  }
  .headerSubNav__close span:nth-of-type(1) {
    top: 20px;
    transform: rotate(-45deg);
  }
  .headerSubNav__close span:nth-of-type(2) {
    top: 20px;
    transform: rotate(45deg);
  }
  .headerSubMenu{
    display: block;
  }
  .headerMenu__item > a.has-child.is-open + .headerSubNav{
    display: block;
    left: 110px;
    opacity: 1;
  }
  .headerSubMenu__item{
    text-align: left;
    width: 100%;
    border-right: none!important;
    border-bottom: 2px #848682 dotted!important;
  }
  .headerSubMenu__item:first-child > a{
    display: block;
    padding: 10px 0 10px 20px;
    position: relative;
  }
  .headerSubMenu__item:first-child > a:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 7.8px;
    border-color: transparent transparent transparent #E0E0E0;
    margin-top: -4.5px;
  }
  .headerSubMenu__item:first-child > a:hover{
    color: #8AC323;
  }
  .headerSubMenu__item:first-child > a:hover:before {
    border-color: transparent transparent transparent #8AC323;
  }
  .headerSubMenu__item:not(:first-child) > a{
    display: block;
    padding: 10px 0 10px 35px;
    position: relative;
  }
  .headerSubMenu__item:not(:first-child) > a:before {
    content: '';
    position: absolute;
    left: 23px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #555;
    margin-top: -2px;
    border-radius: 50%;
  }
  .headerSubMenu__item:not(:first-child) > a:hover{
    color: #8AC323;
  }
  .headerSubMenu__item:not(:first-child) > a:hover:before {
    background: #8AC323;
  }
  .header__tel--pc{
    display: block;
    opacity: 1;
    transition: opacity .3s;
    position: static;
    margin: 0 35px 0 auto;
    white-space: nowrap;
  }
  .header.is-scroll .header__tel--pc{
    opacity: 0;
  }
  .header__tel--pc dt{
    font-size: 14px;
  }
  .header__tel--pc dd{
    font-family: 'Montserrat', sans-serif;
    background: url(../img/common/header_tel_pc.png) no-repeat left/30px;
    font-size: 36px;
    color: #FFAA33;
    line-height: 1;
    padding-left: 35px;
  }
  .header__tel--sp{
    display: none;
  }
  .header__toggle {
    display: none;
  }
}

@media screen and (min-width:1400px) {
  .header {
    height: 110px;
  }
  .header__logo {
    top: 28px;
    width: 440px;
    left: 55px;
  }
  .header__description {
    transition: opacity .3s;
    left: 555px;
    top: 49px;
    font-size: 17px;
  }
  .header__nav{
    width: 162px;
    padding: 140px 15px 0;
  }
  .headerMenu__item > a {
    padding: 10px 0;
    font-size: 16px;
  }
  .headerMenu__item img{
    width: 60px;
  }
  .headerSubNav{
    padding-top: 200px;
  }
  .headerSubNav__close {
    top: 130px;
  }
  .headerMenu__item > a.has-child.is-open + .headerSubNav {
    left: 162px;
  }
  .header__tel--pc {
    top: 25px;
    right: 100px;
  }
  .header__tel--pc dd{
    font-size: 38px;
    padding-left: 50px;
    background-size: auto;
  }
}

/*************************************
* フッター
*************************************/

.footer{
  background: #D8EDE4;
}
.footer__map{
  width: 100%;
  height: 330px;
  margin-bottom: -20px;
  overflow: hidden;
}
.footer__map iframe{
  width: 100%;
  height: 100%;
  margin-top: -150px;
  height: 630px;
}
.footerInner{
  background: #fff;
  text-align: center;
  padding: 30px 15px 0;
  width: calc(100% - 30px);
  margin: 0 auto 20px;
  position: relative;
  max-width: 1100px;
  border-radius: 6px;
}
.footer__address{
  margin:20px 0;
}
.footer__point{
  margin: 0 -25px 20px
}
.footer__time{
  margin-bottom: 10px;
}
.footer__timeTable{
  margin-bottom: 10px;
}
.footer__timeTxt{
  margin: 0 auto 20px;
  text-align: left;
}
.footer__nav{
  margin-bottom: 20px;
}
.footerMenu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 9em;
  text-align: left;
  padding:0 10px;
  max-width: 600px;
  margin: 0 auto;
}
.footerMenu__item{
  width: 50%;
  margin-bottom: 5px;
}
.footerMenu__item a{
  display: inline-block;
  padding-left: 15px;
  position: relative;
}
.footerMenu__item a:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7.8px;
  border-color: transparent transparent transparent #E0E0E0;
  margin-top: -4.5px;
}
.footerMenu__item a:hover{
  color: #8AC323;
}
.footerMenu__item a:hover:before{
  border-color: transparent transparent transparent #8AC323;
}
.footer__tel{
  margin: 0 -15px;
  max-width: none;
}
.footer__copyright{
  font-size: 11px;
  text-align: center;
  background: #DBDBDB;
  padding-bottom: 20px;
  overflow: hidden;
}
.footer__pagetop{
  display: block;
  width: 66px;
  background: #DBDBDB;
  height: 50px;
  margin: 0 auto -50px;
  text-align: center;
  border-radius: 33px 33px 0 0;
  padding-top: 22px;
  z-index: 1;
  position: relative;
}
.footer__copyright:before{
  content: '';
  display: block;
  height: 30px;
  border-bottom-right-radius: 50% 35px;
  border-bottom-left-radius: 50% 30px;
  margin: 0 -30px 20px;
  padding: 0 30px;
  background: #D8EDE4;
}

@media screen and (min-width:1100px) {
  .footer{
    padding-left: 110px;
  }
  .footer__map{
    height: 510px;
    margin-bottom: -80px;
  }
  .footer__map iframe{
    height: 810px;
  }
  .footerInner{
    text-align: left;
    padding: 35px 45px 20px;
    margin-bottom: 40px;
  }
  .footer__row{
    display: flex;
  }
  .footer__col--left{
    width: 52%;
  }
  .footer__col--right{
    width: 48%;
  }
  .footer__address{
    margin: 20px 0 0;
  }
  .footer__point{
    padding-left: 20px;
    margin-bottom: 0;
  }
  .footer__nav{
    margin-bottom: 0;
  }
  .footerMenu {
    padding: 30px 0 0 50px;
  }
  .footerMenu__item{
    width: 33.3%;
  }
  .footer__tel{
    max-width: 100%;
    margin: 0 0 0 50px;
  }
  .footer__copyright{
    font-size: 13px;
  }
  .footer__pagetop{
    width: 74px;
    border-radius: 36px 36px 0 0;
    height: 55px;
  }
}

@media screen and (min-width: 1500px) {
  .footer {
    padding-left: 0;
  }
}

/*************************************
* メインロゴ、メインスライダー、メインビジュアル
*************************************/

.mainLogo{
  display: block;
  max-width: 320px;
  margin: 0 auto;
  padding: 15px 20px;
}
.mainSlide{
  position: relative;
}
.mainSlide:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 6.9%;
  background: url(../img/home/mainSlide_bg_sp.png) no-repeat bottom/100% 100%;
}
.mainSlide__ttl{
  position: absolute;
  z-index: 1;
  width: 44%;
  transform: translateX(-50%);
  left: 50%;
  top: 10%;
  max-width: 200px;
}
.mainSlide__item img{
  width: 100%;
}
.mainVisual{
  position: relative;
}
.mainVisual:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 11%;
  background: url(../img/common/mainVisual_bg_sp.png) no-repeat bottom/100% 100%;
}
.mainVisual img{
  width: 100%;
}

@media screen and (min-width:768px) {
  .mainSlide:after{
    height: 12%;
    background: url(../img/home/mainSlide_bg_pc.png) no-repeat bottom/100% 100%;
  }
  .mainVisual:after{
    height: 19%;
    background: url(../img/common/mainVisual_bg_pc.png) no-repeat bottom/100% 100%;
  }
  .mainSlide__ttl{
    width: auto;
    max-width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width:1100px) {
  .mainSlide{
    margin-left: -110px;
  }
  .mainSlide__ttl{
  }
  .mainSlide__item img{
    width: 100%;
    height: calc(100vh - 90px);
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
}

@media screen and (min-width:1400px) {
  .mainSlide{
    margin-left: 0;
  }
  .mainSlide__item img{
    height: calc(100vh - 110px);
  }
}

/*************************************
* コンテンツエリア
*************************************/

.contents{
  margin-top: 65px;
}
.pageTtl{
  padding: 0 15px 20px;
  background: #E2EDD5;
  text-align: right;
}
.pageTtl img{
  height: 25px;
}
.main{
  display: block;
}
.main--hasSidebar{
  margin-bottom: 80px;
}

@media screen and (min-width:768px) {
  .pageTtl{
    padding-top: 20px;
  }
}

@media screen and (min-width:1100px) {
  .contents{
    margin-top: 90px;
    padding-left: 110px;
  }
  .pageTtl{
    padding-right: 35px;
  }
  .pageTtl{
    padding: 25px 100px 25px 0;
  }
  .pageTtl img{
    height: 40px;
  }
  .main--hasSidebar{
    float: left;
    width: 680px;
    margin-bottom: 0;
  }
}

@media screen and (min-width:1400px) {
  .contents{
    padding-left: 0;
  }
}

@media screen and (min-width:1600px) {
  .contents{
    margin-top: 110px;
  }
}

/*************************************
* サイドバー
*************************************/

#sidebar{
  position: relative;
  z-index: 1;
}
#sidebar h2{
  font-size: 18px;
  color: #fff;
  text-align: center;
  background: url(../img/common/side_ttl.png) no-repeat center/contain;
  padding: 3px 0;
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
}
#sidebar .widget_search{
  margin-bottom: 40px;
}
#sidebar .widget_search h2{
  display: none;
}
#sidebar .widget_search form{
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
#sidebar .widget_search input[type="submit"] {
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  background: url(../img/common/search_icon.png) no-repeat center;
  width: 44px;
  height: 44px;
  border: none;
  font-size: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#sidebar .widget_categories{
  margin-bottom: 40px;
}
#sidebar .widget_categories .cat-item{
  border-bottom: 1px #C9C9C9 solid;
}
#sidebar .widget_categories .cat-item a{
  display: block;
  background: url(../img/common/link_icon.png) no-repeat right 15px center;
  padding: 10px 30px 10px 0;
  font-size: 15px;
}
#sidebar .widget_archive{
  margin-bottom: 40px;
}
#sidebar .widget_archive select{
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
#sidebar .popular-posts{
  margin-bottom: 40px;
}
#sidebar .wpp__head--monthly:after {
  content: '';
  width: 52px;
  height: 53px;
  background: url(../img/common/side_wppTtl1.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: calc(50% + 95px);
}
#sidebar .wpp__head--total:after {
  content: '';
  width: 41px;
  height: 30px;
  background: url(../img/common/side_wppTtl2.png) no-repeat center/contain;
  position: absolute;
  bottom: 10px;
  left: calc(50% + 95px);
}
#sidebar .wpp__list{
  counter-reset: number;
}
#sidebar .wpp__item{
  border-bottom: 1px #C9C9C9 solid;
  padding: 0 10px 15px;
  position: relative;
}
#sidebar .wpp__item:not(:last-child){
  margin-bottom: 15px;
}
#sidebar .wpp__item:before{
  content: counter(number);
  counter-increment: number;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  width: 31px;
  height: 31px;
  background: url(../img/common/side_wppNo.png) no-repeat center/contain;
  position: absolute;
  z-index: 1;
  text-align: center;
  line-height: 31px;
  color: #fff;
}
#sidebar .wpp__item:nth-child(1):before{
  background: url(../img/common/side_wppNo1.png) no-repeat center/contain;
}
#sidebar .wpp__item:nth-child(2):before{
  background: url(../img/common/side_wppNo2.png) no-repeat center/contain;
}
#sidebar .wpp__item:nth-child(3):before{
  background: url(../img/common/side_wppNo3.png) no-repeat center/contain;
}
#sidebar .wpp__ttl{
  font-weight: 500;
  line-height: 1.7;
}
#sidebar .wpp__list--monthly .wpp__item:before{
  left: 0;
  top: -8px;
}
#sidebar .wpp__list--monthly a{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#sidebar .wpp__list--monthly .wpp__thumb{
  width: 120px;
  position: relative;
}
#sidebar .wpp__list--monthly .wpp__thumb:before{
  content: '';
  display: block;
  padding-top: 57%;
}
#sidebar .wpp__list--monthly .wpp__thumb img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
#sidebar .wpp__list--monthly .wpp__ttl{
  width: calc(100% - 130px);
}
#sidebar .wpp__list--total .wpp__item{
  padding-left: 40px;
}
#sidebar .wpp__list--total .wpp__item:before{
  left: 0;
  top: 0;
}

@media screen and (max-width:320px) {
  #sidebar .wpp__head--monthly:after,
  #sidebar .wpp__head--total:after{
    left: auto;
    right: 0;
  }
}

@media screen and (min-width:1100px) {
  #sidebar{
    float: right;
    width: 250px;
  }
  #sidebar h2{
    background-size: 100% 100%;
    margin-bottom: 25px;
  }
  #sidebar .widget_categories .cat-item a:hover{
    text-decoration: underline;
  }
  #sidebar .wpp__head--monthly:after {
    bottom: -3px;
    left: auto;
    right: -10px;
  }
  #sidebar .wpp__head--total:after {
    bottom: 8px;
    left: auto;
    right: 7px;
  }
  #sidebar .wpp__item{
    padding-right: 0;
  }
  #sidebar .wpp__ttl{
    font-size: 15px;
    line-height: 1.5;
  }
  #sidebar .wpp__list--monthly .wpp__thumb{
    width: 105px;
  }
  #sidebar .wpp__list--monthly .wpp__ttl{
    width: calc(100% - 120px);
  }
  #sidebar .wpp__list--monthly .wpp__thumb:before {
    padding-top: 68%;
  }
  #sidebar .wpp__list--monthly a:hover{
    opacity: 0.7;
  }
  #sidebar .wpp__list--monthly a:hover img{
    opacity: 1;
  }
  #sidebar .wpp__list--total a:hover{
    text-decoration: underline;
  }
}