@charset "UTF-8";
/*
base
1. default
2. header
3. footer
4. animation

———————————————————- */
/*----- 1. default -----*/
.titleLogo {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: url(../img/titlelogo.png) 0 0 no-repeat;
  background-size: contain;
  display: block;
}

.linkBtn {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  background-color: #ffaa00;
  padding: 10px;
  text-align: center;
  display: block;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 0 #cc8800;
  width: 100%;
  margin: 0 auto 20px;
}
.linkBtn:before {
  content: "";
  display: inline-block;
  background: url(../img/arrow01.png) left center no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
}
.linkBtn:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.bannerWrap {
  display: flex;
  justify-content: space-between;
  z-index: 5;
}
.bannerWrap .btn {
  width: 50%;
  padding: 5px 0;
}
.bannerWrap .btn img {
  margin: 0 auto;
}
.bannerWrap .btn.contact {
  background-color: #ffaa00;
}
.bannerWrap .btn.contact:hover {
  opacity: 0.7;
}
.bannerWrap .btn.tel {
  background-color: #18b26b;
}

.bannerContents {
  width: 52px;
  height: 365px;
  position: absolute;
  top: 20%;
  right: 0;
  margin: auto;
}
.bannerContents a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  color: #fff;
  padding: 40px 5px 10px;
  border-radius: 10px 0 0 10px;
  margin-bottom: 10px;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.bannerContents a:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  background: top center no-repeat;
  background-size: contain;
  width: 58px;
  height: 20px;
}
.bannerContents a.contact {
  background-color: #ffaa00;
}
.bannerContents a.contact:before {
  background-image: url(../img/ico_contact.png);
}
.bannerContents a.contact:hover {
  background-color: #ffbb33;
}
.bannerContents a.tel {
  background-color: #18b26b;
}
.bannerContents a.tel:before {
  background-image: url(../img/ico_tel.png);
}

.headContents {
  background: url(../img/common_header_sp.jpg) center center no-repeat;
  background-size: cover;
  padding: 20px;
}
.headContents .title {
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 2rem;
}

h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  color: #5c5c5c;
}
h2:after {
  display: block;
  content: "";
  background: linear-gradient(90deg, #ffaa00 10%, #ffd580 10%);
  width: 100%;
  height: 4px;
  margin-top: 5px;
}

.center {
  text-align: center;
}

.subText {
  margin-bottom: 20px;
}

/*----- 2. header -----*/
header {
  width: 100%;
}
header .titleLogo {
  width: 100%;
  height: 100%;
}
header nav {
  width: 100%;
}
header ul li:hover {
  border-bottom: 2px solid #ffaa00;
}
header ul a {
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
header .banner a {
  display: block;
  width: 50%;
}
header .banner a img {
  margin: 0 auto;
}
header .banner a.contact {
  background-color: #ffaa00;
}
header .banner a.contact:hover {
  opacity: 0.7;
}
header .banner a.tel {
  background-color: #18b26b;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 251;
}

/*----- 3. footer -----*/
footer section {
  align-items: center;
}
footer .copy {
  font-size: 1.4rem;
  text-align: center;
}

/*----- 4. animation -----*/
.fadeIn {
  opacity: 0;
}
.fadeIn.showing {
  animation: fadeIn 1s forwards;
}

@keyframes zoomSlide {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideLine {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*---------- sp ----------*/
@media screen and (max-width: 812px) {
  .overWrap {
    margin-top: 50px;
    overflow: hidden;
  }
  section {
    width: 100%;
    padding: 0 15px;
    margin-top: 0;
  }
  header .top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    z-index: 200;
    padding: 7px 10px;
  }
  header #mNav {
    width: 100%;
    height: 70vh;
    position: fixed;
    bottom: -70vh;
    left: 0;
    background-color: #fff;
    z-index: 1500;
    overflow-y: auto;
  }
  header #mNav li {
    width: 100%;
    border-bottom: 1px solid #ffaa00;
  }
  header #mNav li a {
    padding: 10px;
    display: block;
  }
  header #mNav li:nth-child(8) {
    border-bottom: none;
    margin-top: 30px;
  }
  header #mNav li:nth-child(8) a {
    width: 60.78125%;
    margin: 0 auto;
    padding: 0;
  }
  header .banner {
    width: 100%;
    display: none;
  }
  .bannerWrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
  }
  footer {
    padding: 40px 0 20px;
    background-color: #ddd;
    margin-bottom: 60px;
  }
  footer .titleLogo {
    width: 100%;
    height: 40px;
    background-position: center center;
    margin-bottom: 20px;
  }
}
/*---------- モバイル縦長 ----------*/
/*---------- モバイル横長 ----------*/
/*---------- pc ----------*/
@media screen and (min-width: 813px) {
  section {
    width: 1256px;
    margin: 0 auto 0;
    padding: 60px 0;
    min-width: 1000px;
    background-color: #fff;
  }
  .linkBtn {
    padding: 20px;
    font-size: 2rem;
  }
  .container {
    padding: 60px 0;
    background-color: #f4f2ed;
  }
  .inner {
    margin: 0 auto;
    width: 1000px;
  }
  h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  h2:after {
    width: 555px;
    margin: 10px auto 0;
  }
  .subText {
    text-align: center;
  }
  .headContents {
    margin-top: 52px;
    padding: 30px 0;
    background-image: url(../img/common_header.jpg);
  }
  .headContents .title {
    width: 600px;
    margin: 0 auto;
    padding: 40px 0;
    font-size: 2.4rem;
  }
  .bannerWrap .btn {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header {
    height: 52px;
  }
  header .top {
    padding: 5px 10px;
    width: 222px;
  }
  header nav {
    width: calc(100% - 240px);
    align-items: center;
  }
  header ul {
    width: calc(100% - 430px);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header ul li {
    flex-grow: 1;
    text-align: center;
  }
  header ul li:not(:nth-child(6), :nth-child(8)) {
    border-right: 1px solid #000;
  }
  header ul li:nth-child(1) a {
    background-image: url(../img/menu1.png);
  }
  header ul li:nth-child(2) a {
    background-image: url(../img/menu2.png);
  }
  header ul li:nth-child(3) a {
    background-image: url(../img/menu3.png);
  }
  header ul li:nth-child(4) a {
    background-image: url(../img/menu4.png);
  }
  header ul li:nth-child(5) a {
    background-image: url(../img/menu5.png);
  }
  header ul li:nth-child(6) a {
    background-image: url(../img/menu6.png);
  }
  header ul li:nth-child(8) a {
    height: 38px;
    min-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header ul li:nth-child(8) a img {
    height: 38px;
    min-height: 14px;
  }
  header ul a {
    display: block;
    height: 14px;
    font-size: 15px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: center center no-repeat;
    background-size: contain;
  }
  header .banner {
    width: 410px;
  }
  footer .titleLogo {
    width: 322px;
    height: 64px;
  }
  footer nav li {
    margin-right: 30px;
    margin-bottom: 10px;
  }
  footer nav li:before {
    display: inline-block;
    content: "";
    background: url(../img/arrow01.png) left center no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
  }
  footer nav a {
    color: #000;
    padding-bottom: 3px;
    border-bottom: 1px solid #5c5c5c;
  }
  footer nav a:hover {
    color: #18b26b;
  }
}
@media screen and (min-width: 980px) {
  header ul a {
    height: 12px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  header ul a {
    height: 14px;
    font-size: 15px;
  }
}
/*---------- タブレット ----------*/
@media screen and (min-width: 812px) and (max-width: 1540px) {
  section {
    max-width: 1255px;
    width: 90%;
  }
  .bannerContents {
    position: fixed;
    z-index: 200;
  }
  header {
    height: 52px;
  }
  header ul {
    width: 90%;
  }
  header ul#mNav {
    width: 100%;
  }
  header .banner {
    display: none !important;
  }
}
@media screen and (min-width: 1541px) {
  .bannerContents {
    display: none;
  }
}/*# sourceMappingURL=base.css.map */