@charset "UTF-8";
/* CSS Document */
/*******************
       ALL
*******************/
html {
  font-size: 62.5%;
  /*基準を1rem=10pxに設定*/
  width: 100%;
  overflow: auto;
}

body {
  width: 100%;
  overflow: hidden;
  min-width: 768px;
  font-family: "Shippori Mincho", serif;
}

* {
  font-feature-settings: "palt";
}

.red {
  color: #d71718;
}

.sp,
.slide-img img.sp {
  display: none !important;
}

.toggle_btn {
  display: none !important;
}

p.info {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Gothic A1", sans-serif;
  padding: 20px;
  border: 1px solid #8a8a8a;
  margin: 30px auto;
  line-height: 1.6;
}

a {
  color: #00a0e9;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  transition: 0.3s ease-in-out;
}

.contentsWrap ul {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
}

.min-960 {
  display: block;
}
@media screen and (max-width: 960px) {
  .min-960 {
    display: none;
  }
}

.max-960 {
  display: none;
}
@media screen and (max-width: 960px) {
  .max-960 {
    display: block;
  }
}

#error .inner:first-child {
  width: 100%;
  min-height: 240px;
  padding-top: 240px;
}
@media screen and (max-width: 768px) {
  #error .inner:first-child {
    padding-top: 40px;
  }
}
#error .inner p.textArea {
  text-align: center;
  margin: 50px auto;
}
#error .inner h3 {
  font-size: 3.4rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #error .inner h3 {
    font-size: 4.5vw;
  }
}
#error .inner h3 small {
  display: block;
  font-size: 70%;
}
#error .inner h4 {
  height: 172px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  #error .inner h4 {
    height: 10vh;
  }
}
#error .inner h4 span {
  display: block;
  height: 100%;
}
#error .inner h4 img {
  height: 100%;
}
#error .inner .btnArea {
  text-align: center;
  margin-top: 30px;
}

section {
  position: relative;
  width: 100%;
}
section .inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
section .inner .sectionInner {
  width: 960px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  section .inner .sectionInner {
    width: 90%;
  }
}
section .inner .sectionInner h2 {
  text-align: left;
  color: #fff;
  height: 73px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section .inner .sectionInner h2 {
    height: 137px;
  }
}
section .inner .sectionInner h2 span {
  display: block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  section .inner .sectionInner h2 span {
    display: inline-block;
  }
}
section .inner .sectionInner h2 img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  section .inner .sectionInner h2 {
    text-align: center;
  }
}
section .inner .sectionInner p.textArea {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  section .inner .sectionInner p.textArea {
    font-size: 1.8rem;
  }
}

/*******************
    scroll-up
*******************/
.scroll-fade {
  opacity: 0;
  transition: all 2s;
}

.scroll-up {
  opacity: 0;
  transform: translateY(70px);
  transition: all 2s;
}
.scroll-up.done {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade,
.load-up {
  opacity: 0;
  transition: all 2s;
}

.load-up50 {
  transform: translateY(50px);
}

.load-up100 {
  transform: translateY(100px);
}

.load-up.done,
.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

/*******************
    gototop
*******************/
#gototop {
  background-color: #fff;
  border-radius: 100%;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  border: #de551a solid 2px;
}
#gototop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  font-family: "Libre Caslon Text", serif;
}
#gototop::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #de551a;
}
#gototop::before {
  content: "TOP";
  color: #de551a;
  font-size: 1.6rem;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-family: "Century Gothic", "Hiragino Sans" !important;
  letter-spacing: 0.12rem;
  font-weight: bold;
}
#gototop.fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

/*******************
    footerまでスクロールでtopへ消える
*******************/
#gototop.is-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  transition: all 0.2s;
}

/*******************
    btn
*******************/
.contentsWrap .btnArea {
  text-align: right;
  font-size: 1.6rem;
}
.contentsWrap .btnArea a {
  color: #727171;
}
.contentsWrap .btnArea a strong {
  border-bottom: 1px solid #727171;
  font-family: "Shippori Mincho", serif;
}
.contentsWrap .btnArea a span {
  display: inline-block;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  background: #e99413;
  color: #fff;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.contentsWrap {
  width: 100%;
}
.contentsWrap header {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: 106px;
  position: relative;
  z-index: 999;
  background-color: #de551a;
}
@media screen and (max-width: 1700px) {
  .contentsWrap header {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .contentsWrap header {
    height: 53px;
  }
}
.contentsWrap header .headerInner {
  width: 100%;
  max-width: 1040px;
  display: block;
  margin: 0 auto;
  position: relative;
  height: 107px;
}
@media screen and (max-width: 1040px) {
  .contentsWrap header .headerInner {
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .contentsWrap header .headerInner {
    height: 53px;
  }
}
.contentsWrap header .headerInner h1 {
  padding: 15px 0;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .contentsWrap header .headerInner h1 {
    max-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .contentsWrap header .headerInner h1 img {
    width: 100%;
  }
}
.contentsWrap header .headerInner ul.otherMenuArea {
  display: flex;
  width: 317px;
  position: absolute;
  top: 40px;
  right: 0;
}
@media screen and (max-width: 1040px) {
  .contentsWrap header .headerInner ul.otherMenuArea {
    right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .contentsWrap header .headerInner ul.otherMenuArea {
    display: none;
  }
}
.contentsWrap header .headerInner ul.otherMenuArea li {
  margin-left: 4%;
}
.contentsWrap header .headerInner ul.otherMenuArea li a {
  border: 1px solid #fff;
  display: block;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  border-radius: 30px;
  padding: 6px 20px;
}
.contentsWrap header .headerInner ul.otherMenuArea li a:hover {
  background-color: #fff;
  color: #de551a;
  width: auto;
  margin: 0;
  border-bottom: 1px solid #fff;
}
.contentsWrap header .headerInner nav {
  margin-top: 20px;
}
@media screen and (max-width: 1040px) {
  .contentsWrap header .headerInner nav {
    padding: 0 16px;
  }
}
.contentsWrap header .headerInner nav ul {
  display: flex;
  display: -ms-flexbox;
}
@media screen and (max-width: 1700px) {
  .contentsWrap header .headerInner nav ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .contentsWrap header .headerInner nav ul {
    display: block;
  }
}
.contentsWrap header .headerInner nav ul li {
  width: 20%;
  border-left: 1px solid #de551a;
  height: 108px;
}
.contentsWrap header .headerInner nav ul li:nth-child(5) {
  border-right: 1px solid #de551a;
}
.contentsWrap header .headerInner nav ul li span {
  display: block;
  text-align: center;
  height: 87px;
}
.contentsWrap header .headerInner nav ul li span img {
  height: 100%;
}
.contentsWrap header .headerInner nav ul li:first-child span {
  padding: 13px 0;
}
@media screen and (max-width: 1040px) {
  .contentsWrap header .headerInner nav ul li:first-child p {
    letter-spacing: -1.5px;
  }
}
.contentsWrap header .headerInner nav ul li:nth-child(2) span {
  padding: 13px 0;
}
.contentsWrap header .headerInner nav ul li:nth-child(3) span {
  padding: 17px 0;
}
.contentsWrap header .headerInner nav ul li:nth-child(4) span {
  padding: 13px 0;
}
.contentsWrap header .headerInner nav ul li:nth-child(5) span {
  padding: 11px 0;
}
@media screen and (max-width: 1040px) {
  .contentsWrap header .headerInner nav ul li:nth-child(5) p {
    letter-spacing: -1.5px;
  }
}
.contentsWrap header .headerInner nav ul li:nth-child(7) span {
  padding: 11px 0;
}
@media screen and (max-width: 1040px) {
  .contentsWrap header .headerInner nav ul li:nth-child(7) p {
    letter-spacing: -1.5px;
  }
}
.contentsWrap header .headerInner ul li a {
  color: #000;
  display: block;
  font-size: 1.7rem;
  font-family: "Gothic A1", sans-serif;
  text-align: center;
  letter-spacing: -1px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1040px) {
  .contentsWrap header .headerInner ul li a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .contentsWrap header .headerInner ul li a {
    font-size: 1.7rem;
  }
}
.contentsWrap header .headerInner ul li a p {
  padding-bottom: 5px;
}
.contentsWrap header .headerInner ul li a p span {
  letter-spacing: -3px;
  display: inline-block;
  padding: 0 !important;
  height: auto !important;
}
@media screen and (min-width: 768px) {
  .contentsWrap header .headerInner ul li a:hover {
    border-bottom: 5px solid #de551a;
    width: 80%;
    margin: 0 auto -10px;
  }
}
.contentsWrap header .headerInner ul.otherMenuArea a:hover {
  border-bottom: #fff solid 1px;
  width: auto;
  margin: 0 auto;
}
.contentsWrap header .headerInner.navfixed {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 95%;
  max-width: 100%;
  height: 70px;
  margin-top: 0 !important;
  right: 0;
}
@media screen and (max-width: 1700px) {
  .contentsWrap header .headerInner.navfixed {
    width: 100%;
    background: #fff;
  }
}
@media screen and (max-width: 560px) {
  .contentsWrap header .headerInner.navfixed {
    background: #fff;
  }
}
.contentsWrap header .headerInner.navfixed nav {
  margin-top: 70px;
}
@media screen and (max-width: 1700px) {
  .contentsWrap header .headerInner.navfixed nav {
    margin-top: 0;
  }
}
.contentsWrap header .headerInner.navfixed h1 {
  color: #18448e;
  font-weight: 400;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 1700px) {
  .contentsWrap header .headerInner.navfixed h1 {
    margin: 20px 0 0 70px;
  }
}
.contentsWrap header .headerInner.navfixedinner {
  margin-top: 40px;
  color: #052d6f;
}

/*******************
       navList
*******************/
.nav .navMenu a {
  position: relative;
  height: auto;
  transition: none;
  /*@media screen and (min-width: 1700px) {

          &::after {
              content: "";
              display: block;
              position: absolute;
              top: -10px;
              left: 50%;
              transform: translate(-50%, 0);
              -webkit-transform: translate(-50%, 0);
              -ms-transform: translate(-50%, 0);
              width: 24px;
              height: 2px;
              background: #e30303;
              z-index: -1;
          }

          @media screen and (max-width: 768px) {
              display: none;
          }
      }*/
}
.nav .navMenu li:hover a::after {
  height: 118%;
}
.nav .navMenu li:first-child:hover a::after {
  height: 110%;
}

/*******************
    is-active
*******************/
@media screen and (min-width: 1700px) {
  .header__link.is-active {
    color: #fff;
    /*&::before {
            content: "";
            display: block;
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translate(-50%, 0);
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            width: 24px;
            height: 115%;
            background: #e30303;
            transition: all 0.2s;
            z-index: -1;
        }*/
  }
  .header__list li:first-child .is-active::before {
    content: "";
    display: block;
    height: 110%;
  }
}
/*******************
       main
*******************/
main {
  display: block;
}

/*******************
       slide
*******************/
.kvSwiper .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin-right: 8px !important;
}
.kvSwiper .swiper-pagination-bullet:last-child {
  margin-right: 0 !important;
}

.kvSwiper .swiper-pagination {
  position: absolute !important;
  bottom: 0 !important;
  left: 16% !important;
  display: none;
}
@media screen and (max-width: 768px) {
  .kvSwiper .swiper-pagination {
    left: 10% !important;
  }
}

.slideArea {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 980px;
}

.slideWrap {
  z-index: 1;
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.kvSwiper .swiper-slide-active .slide-img,
.kvSwiper .swiper-slide-duplicate-active .slide-img,
.kvSwiper.swiper-slide-prev .slide-img {
  animation: zoomUp 5s linear 0s forwards;
}

.kvSwiper .slide-img {
  width: 100%;
}
.kvSwiper .slide-img img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1480px) {
  .kvSwiper .slide-img img {
    margin: 0 auto;
    height: auto;
  }
}

.slideArea .ttlArea {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 50px;
}
@media screen and (max-width: 768px) {
  .slideArea .ttlArea h2 span img {
    width: 100%;
  }
}
.slideArea .ttlArea p {
  font-size: 21px;
  color: #222222;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 64px;
  letter-spacing: 0.2rem;
  font-family: "Century Gothic", "Hiragino Sans";
}
@media screen and (max-width: 960px) {
  .slideArea .ttlArea p {
    margin-top: 24px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 960px) {
  .slideArea .ttlArea p {
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
  }
}
.slideArea .ttlArea p strong {
  color: #e30303;
  font-weight: 400;
}

/*******************
        news
*******************/
#news {
  padding-bottom: 133px;
}
@media screen and (max-width: 768px) {
  #news {
    padding-bottom: 43px;
  }
}
#news .inner {
  width: 100%;
  min-height: 240px;
  padding-top: 240px;
}
@media screen and (max-width: 768px) {
  #news .inner {
    padding: 30px 0;
  }
}
#news .inner .sectionInner {
  margin: 0 auto;
  width: 750px;
}
@media screen and (max-width: 768px) {
  #news .inner .sectionInner {
    width: 90%;
  }
}
#news .inner .sectionInner ul.newsList {
  display: block;
}
#news .inner .sectionInner ul.newsList li {
  font-size: 14px;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  border-top: 1px dashed #727171;
}
#news .inner .sectionInner ul.newsList li:last-child {
  margin-right: 0;
  border-bottom: 1px dashed #727171;
}
@media screen and (max-width: 768px) {
  #news .inner .sectionInner ul.newsList li ul.newsArticle {
    flex-wrap: wrap;
  }
}
#news .inner .sectionInner ul.newsList li ul.newsArticle li {
  position: relative;
  border-top: none;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  padding: 30px;
  box-sizing: border-box;
}
#news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(1) {
  color: #e99413;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(1) {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 350px) {
  #news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(1) {
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 768px) {
  #news .inner .sectionInner ul.newsList li ul.newsArticle li {
    padding: 30px 0;
  }
}
#news .inner .sectionInner ul.newsList li ul.newsArticle li:last-child {
  border-bottom: none;
}
#news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(2) {
  width: 70%;
  color: #727171;
}
@media screen and (max-width: 768px) {
  #news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(2) {
    font-size: 1.6rem;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 350px) {
  #news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(2) {
    font-size: 1.4rem;
  }
}
#news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(2) a {
  color: #727171;
}
#news .inner .sectionInner ul.newsList li ul.newsArticle li:nth-child(2) a:hover {
  text-decoration: underline;
}
#news .inner .sectionInner .btnArea {
  padding-top: 20px;
  border-top: 1px dashed #727171;
}

/*******************
      pamphlet
*******************/
#pamphlet,
#store {
  padding-bottom: 233px;
}
@media screen and (max-width: 768px) {
  #pamphlet,
  #store {
    padding-bottom: 43px;
  }
}
#pamphlet .inner,
#store .inner {
  width: 100%;
}
#pamphlet .inner .sectionInner,
#store .inner .sectionInner {
  margin: 0 auto;
  width: 750px;
}
@media screen and (max-width: 768px) {
  #pamphlet .inner .sectionInner,
  #store .inner .sectionInner {
    width: 90%;
  }
}
#pamphlet .inner .sectionInner ul li,
#store .inner .sectionInner ul li {
  width: 32%;
  text-align: center;
  background: #e99413;
  box-sizing: border-box;
  border-radius: 10px;
  margin-right: 2%;
  margin-bottom: 2%;
  position: relative;
  z-index: 1;
}
#pamphlet .inner .sectionInner ul li:nth-child(3n),
#store .inner .sectionInner ul li:nth-child(3n) {
  margin-right: 0;
}
#pamphlet .inner .sectionInner ul li a,
#store .inner .sectionInner ul li a {
  font-size: 2.8rem;
  font-family: "Gothic A1", sans-serif;
  font-weight: bold;
  padding: 30px 0;
  display: block;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #pamphlet .inner .sectionInner ul li a,
  #store .inner .sectionInner ul li a {
    font-size: 1.6rem;
    padding: 16px 0;
  }
}
@media screen and (max-width: 420px) {
  #pamphlet .inner .sectionInner ul li a,
  #store .inner .sectionInner ul li a {
    font-size: 1.3rem;
  }
}
#pamphlet .inner .sectionInner ul li a:hover,
#store .inner .sectionInner ul li a:hover {
  background: #f1b050;
  text-decoration: none;
  background: #f1b050;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}
#pamphlet .inner .sectionInner ul li::before,
#store .inner .sectionInner ul li::before {
  content: "";
  position: absolute;
  z-index: 2;
  background: url(../img/icon_new.svg) no-repeat top left;
  background-size: contain;
  width: 62px;
  height: 42px;
  top: -4px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #pamphlet .inner .sectionInner ul li::before,
  #store .inner .sectionInner ul li::before {
    top: -3px;
    width: 34px;
  }
}

/*******************
    Store List
*******************/
#storeListTop .inner {
  width: 100%;
  position: relative;
  background: #de551a;
  height: 510px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #storeListTop .inner {
    height: 360px;
  }
}
#storeListTop .inner::before {
  content: "";
  display: inline-block;
  background: #fff;
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#storeListTop .inner .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  flex-wrap: nowrap;
}
#storeListTop .inner ul.scroll-infinity__list {
  display: flex;
  list-style: none;
  flex-wrap: nowrap;
  padding: 0;
}
#storeListTop .inner .scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
#storeListTop .inner li.scroll-infinity__item {
  width: 600px;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  #storeListTop .inner li.scroll-infinity__item {
    width: 300px;
  }
}
#storeListTop .inner .scroll-infinity__item > img {
  width: 100%;
}
#storeListTop .inner .sectionInner h2 {
  text-align: center;
  margin-top: 30px;
  height: 55px;
}
#storeListTop .inner .sectionInner h2 span {
  display: inline-block;
  margin-bottom: 0;
}
#storeListTop .inner .sectionInner .btnArea {
  text-align: center;
}
#storeListTop .inner .sectionInner .btnArea a {
  color: #fff;
}
#storeListTop .inner .sectionInner .btnArea a strong {
  border-bottom: 1px solid #fff;
}
#storeListTop .inner .sectionInner .btnArea a span {
  background: #fff;
  color: #de551a;
  width: 48px;
  height: 48px;
  line-height: 48px;
}

/*******************
      about
*******************/
#aboutTop .inner {
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  #aboutTop .inner {
    padding-top: 80px;
  }
}
#aboutTop .inner::before {
  content: "";
  display: block;
  background: #fff url(../img/bg_yaohiko_01.png) no-repeat center bottom;
  background-size: cover;
  width: 1500px;
  height: 610px;
  position: absolute;
  top: 580px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #aboutTop .inner::before {
    width: 750px;
    height: 446px;
    background-size: contain;
    top: 230px;
  }
}
#aboutTop .inner .sectionInner {
  margin: 0 auto;
  max-width: 1040px;
  width: 100%;
}
@media screen and (max-width: 1040px) {
  #aboutTop .inner .sectionInner {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  #aboutTop .inner .sectionInner {
    width: 90%;
  }
}
#aboutTop .inner .sectionInner p.textArea:nth-of-type(2) {
  text-align: left;
  margin: 50px 0 0 398px;
}
@media screen and (max-width: 1040px) {
  #aboutTop .inner .sectionInner p.textArea:nth-of-type(2) {
    text-align: center;
    margin: 20px auto;
  }
}
#aboutTop .inner .sectionInner p.textArea:nth-of-type(3) {
  text-align: left;
  margin: 50px 0 40px 398px;
  width: 500px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1040px) {
  #aboutTop .inner .sectionInner p.textArea:nth-of-type(3) {
    margin: 30px auto;
    font-size: 1.4rem;
    min-width: 280px;
    width: 70%;
  }
}
#aboutTop .inner .sectionInner h3 {
  margin-top: 90px;
  height: 172px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #aboutTop .inner .sectionInner h3 {
    margin-top: 60px;
    height: 112px;
  }
}
#aboutTop .inner .sectionInner h3 span {
  display: block;
  height: 100%;
}
#aboutTop .inner .sectionInner h3 img {
  height: 100%;
}
#aboutTop .inner .sectionInner figure {
  margin-top: 240px;
  margin-left: 160px;
  max-width: 405px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #aboutTop .inner .sectionInner figure {
    text-align: center;
    margin: 160px auto 0;
  }
  #aboutTop .inner .sectionInner figure span {
    display: block;
  }
  #aboutTop .inner .sectionInner figure span img {
    width: 100%;
  }
}
#aboutTop .inner .sectionInner figure:nth-of-type(2) {
  margin-top: 30px;
  margin-left: 0;
}
@media screen and (max-width: 1040px) {
  #aboutTop .inner .sectionInner figure:nth-of-type(2) {
    margin-left: -160px;
  }
}
@media screen and (max-width: 768px) {
  #aboutTop .inner .sectionInner figure:nth-of-type(2) {
    max-width: 578px;
    margin-left: -80px;
  }
}
#aboutTop .inner .sectionInner figure:nth-of-type(3) {
  margin-top: 60px;
  margin-left: 0;
  text-align: right;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #aboutTop .inner .sectionInner figure:nth-of-type(3) {
    margin-left: 80px;
  }
  #aboutTop .inner .sectionInner figure:nth-of-type(3) img {
    max-width: 409px;
  }
}
#aboutTop .inner .sectionInner h2 {
  height: 140px;
  text-align: right;
  margin: 100px 270px 0 0;
}
@media screen and (max-width: 768px) {
  #aboutTop .inner .sectionInner h2 {
    height: 88px;
    margin: 30px auto 0 -80px;
    text-align: center;
  }
}
#aboutTop .inner .sectionInner div.btnArea a::after {
  content: "スーパーヤオヒコとは";
  display: block;
  color: #de551a;
  font-size: 1.2rem;
  text-align: right;
  font-family: "Gothic A1", sans-serif;
  font-weight: bold;
  letter-spacing: -0.5px;
  margin-top: 5px;
  margin-right: 10px;
}

/*******************
       footer
*******************/
footer {
  background: none;
  padding: 30px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  footer {
    background: #de551a;
    padding: 40px 0 10px;
  }
}
footer .inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1250px) {
  footer .inner {
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  footer .inner {
    width: 100%;
    padding-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner {
    padding-right: 0;
  }
}
footer .inner::after {
  content: "";
  display: block;
  clear: both;
}
footer .inner div:first-child {
  float: right;
  margin-left: 100px;
}
@media screen and (max-width: 1040px) {
  footer .inner div:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .inner div:first-child {
    float: none;
    margin: 0 auto;
  }
}
footer .inner div:last-child {
  float: right;
  margin-top: 20px;
}
footer .inner .f_logo {
  max-width: 324px;
}
@media screen and (max-width: 768px) {
  footer .inner .f_logo {
    max-width: 280px;
  }
}
footer .inner .f_logo span {
  display: block;
  width: 100%;
}
footer .inner .f_logo span img {
  width: 100%;
}
footer .inner .f_logo p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #de551a;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  footer .inner .f_logo p {
    color: #fff;
  }
}
footer .inner .f_logo p strong {
  font-size: 1.7rem;
}
footer .footerNav {
  color: #de551a;
  justify-content: flex-end;
  letter-spacing: 0.2rem;
  font-size: 1.4rem;
  line-height: 2.2;
}
footer .footerNav ul {
  flex-wrap: wrap;
  width: 390px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  footer .footerNav ul {
    display: block;
  }
}
footer .footerNav li {
  padding: 0 20px;
  font-size: 1.6rem;
  width: 50%;
}
footer .footerNav li a {
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
}
footer .footerNav li a::before {
  content: "●";
  display: inline-block;
  font-size: 6px;
  color: #de551a;
  position: absolute;
  top: 8px;
  left: -16px;
}
@media screen and (max-width: 768px) {
  footer .footerNav li a::before {
    top: 26px;
  }
}
@media screen and (max-width: 560px) {
  footer .footerNav li a::before {
    top: 24px;
  }
}
footer .footerNav li a.current::before {
  font-size: 1.6rem;
  top: -3px;
  left: -20px;
}
@media screen and (max-width: 768px) {
  footer .footerNav li a.current::before {
    top: 26px;
  }
}
@media screen and (max-width: 560px) {
  footer .footerNav li a.current::before {
    top: 24px;
  }
}
@media screen and (max-width: 768px) {
  footer .footerNav {
    display: none;
  }
}
footer .accessList li {
  color: #fff;
  font-weight: 400;
  width: 50%;
}
footer .accessList li h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px !important;
}
footer .accessList li p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px !important;
  line-height: 1.6;
}
footer .accessList li p small {
  font-size: 14px;
  display: block;
  padding-top: 20px;
  text-align: left;
}
footer .accessList li p small span {
  font-size: 14px;
  display: block;
  padding-bottom: 30px;
  text-align: left;
  float: left;
}
footer .coryright {
  font-size: 1.2rem;
  text-align: center;
  color: #de551a;
  padding: 80px 0 0 0;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  footer .coryright {
    padding: 40px 0 0 0;
    color: #fff;
  }
}
footer .accessList li iframe {
  width: 100%;
  height: 320px;
}
footer .accessList li a {
  color: #fff !important;
}
footer .footerNav li a {
  color: #de551a !important;
  justify-content: flex-end;
  font-family: "Shippori Mincho", serif;
}
footer .footerNav li a:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  /*****tel_sp_only*****/
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .headerArea h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .headerArea .navArea {
    width: auto;
    position: absolute;
    top: 8px;
    right: 20px;
  }
  .headerArea .headerInner nav {
    margin-top: 0 !important;
  }
  .headerArea .hMenu {
    display: block;
    top: 0;
    position: relative;
    right: 0;
    z-index: 999;
    width: 37px;
    height: 37px;
    cursor: pointer;
    text-align: center;
    background: #de551a;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 1px solid #fff;
  }
  .headerArea .hMenu.active {
    background: #fff;
    top: 10px;
    position: fixed;
    right: 10px;
  }
  .headerArea .hMenu.active span {
    background: #de551a !important;
  }
  .headerArea .hMenu.hMenu_fixed {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 999;
  }
  .headerArea .hMenu span {
    display: block;
    position: absolute;
    width: 18px;
    height: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  .headerArea .hMenu span:nth-child(1) {
    top: 10px;
  }
  .headerArea .hMenu span:nth-child(2) {
    top: 18px;
  }
  .headerArea .hMenu span:nth-child(3) {
    top: 26px;
  }
  .headerArea .hMenu.active span:nth-child(1) {
    top: 18px;
    left: 23%;
    transform: rotate(-30deg);
  }
  .headerArea .hMenu.active span:nth-child(2), .headerArea .hMenu.active span:nth-child(3) {
    top: 18px;
    left: 23%;
    transform: rotate(30deg);
  }
  .headerArea nav.globalMenuSp {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    color: #fff;
    background: #de551a;
    text-align: center;
    opacity: 0;
    transition: all 0.4s;
    width: 100vw;
    height: 100vh;
    padding: 1rem 4rem;
    box-sizing: border-box;
    display: none;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
  .headerArea nav.globalMenuSp ul {
    margin: 0 auto !important;
    padding: 0;
    width: 50%;
    min-width: 360px;
  }
}
@media screen and (max-width: 768px) and (max-width: 420px) {
  .headerArea nav.globalMenuSp ul {
    min-width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .headerArea nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
  }
  .headerArea nav.globalMenuSp ul li:first-child {
    padding-top: 70px;
  }
  .headerArea nav.globalMenuSp ul li a {
    display: block;
    padding: 1em 0;
    text-decoration: none;
    font-size: 1.6rem;
    text-align: left;
    font-weight: 500;
    position: relative;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .headerArea nav.globalMenuSp ul li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 420px) {
  .headerArea nav.globalMenuSp ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .headerArea nav.globalMenuSp.active {
    opacity: 1;
    z-index: 100;
    padding-top: 60px;
    display: block;
    overflow: scroll;
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li {
    width: 100%;
    background: none;
    border-left: none;
    border-bottom: 1px solid #fff;
    height: auto;
    border-right: none;
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li:first-child {
    padding-top: 0;
    border-top: 1px solid #fff;
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li a {
    padding: 20px 0;
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li a span {
    display: inline-block;
    position: relative;
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li a span:first-child {
    background: #fff;
    width: 51px;
    height: 51px;
    border-radius: 100%;
    vertical-align: middle;
    padding: 10px;
    margin-right: 20px;
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li a span:first-child img {
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li a p {
    color: #fff;
    text-align: left;
    font-size: 2.6rem;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 420px) {
  .headerArea nav.globalMenuSp.active ul.navMenu li a p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .headerArea nav.globalMenuSp.active ul.navMenu li a p span:first-child {
    background: none;
    width: auto;
    height: auto;
    margin-right: 0;
  }
  .headerArea nav.globalMenuSp.active ul.navMenu li.sp a {
    color: #727171;
    font-size: 2.4rem;
    text-align: left;
  }
  .headerArea nav.globalMenuSp div.sp {
    margin-bottom: 40px;
  }
  .headerArea nav.globalMenuSp div.sp a {
    color: #fff;
    font-size: 2.7rem;
    display: block;
    text-align: center;
  }
  .headerArea nav.globalMenuSp div.sp a span {
    display: block;
    font-family: "Shippori Mincho", serif;
  }
  .headerArea nav.globalMenuSp div.sp a img {
    height: 44px;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 420px) {
  .headerArea nav.globalMenuSp div.sp a img {
    height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .sp,
  .slide-img img.sp {
    display: block !important;
  }
  .pc,
  .slide-img img.pc {
    display: none;
  }
  nav.globalMenuSp.active ul.navMenu li:nth-of-type(6) {
    display: none !important;
  }
  /**************
      header
  **************/
  /**************
    main
    **************/
  /**************
    slide
    **************/
  /**************
      footer
  **************/
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .contentsWrap header.navfixed h1 {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .contentsWrap::before {
    width: 78%;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
    text-align: center;
  }
  nav .inner ul li a:hover {
    background: #e4e4e4;
  }
  .kvSwiper .slide-img img {
    -o-object-fit: cover !important;
       object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
  .kvSwiper .swiper-pagination {
    bottom: 34px !important;
  }
  footer ul.accessList {
    display: block;
  }
  footer .accessList li {
    width: 100%;
  }
  footer .accessList li iframe {
    height: 270px;
  }
  footer .inner .coryright {
    text-align: center;
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  /**************
    slide
    **************/
  .kvSwiper .swiper-pagination {
    bottom: 35px !important;
  }
}
@media screen and (max-width: 768px) {
  html {
    width: 100%;
    overflow: auto;
  }
  body {
    width: 100%;
    overflow: hidden;
    min-width: 320px;
  }
}
/******************
recruit
******************/
.recruitTop .inner::before {
  content: "";
  display: block;
  background: #fff url(../img/bg_yaohiko_02.png) no-repeat top center;
  background-size: cover;
  width: 1500px;
  height: 1270px;
  position: absolute;
  top: -150px;
  z-index: -1;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .recruitTop .inner::before {
    background-size: contain;
    width: 1040px;
    position: absolute;
    top: -120px;
  }
}
.recruitTop .inner .sectionInner {
  padding: 150px 0;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner {
    padding: 70px 0;
  }
}
.recruitTop .inner .sectionInner h2 {
  height: 158px;
  text-align: center;
}
.recruitTop .inner .sectionInner p.textArea {
  color: #fff;
  text-align: left;
  margin: 70px 0 0 28px;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner p.textArea {
    color: #231815;
    text-align: center;
    margin: 40px auto;
  }
}
.recruitTop .inner .sectionInner p.textArea:nth-of-type(2) {
  text-align: left;
  margin: 20px 0 20px 28px;
  width: 370px;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner p.textArea:nth-of-type(2) {
    color: #231815;
    margin: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .recruitTop .inner .sectionInner p.textArea:nth-of-type(2) {
    width: 90%;
  }
}
.recruitTop .inner .sectionInner .btnArea {
  text-align: left;
  margin-left: 28px;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner .btnArea {
    text-align: right;
  }
}
.recruitTop .inner .sectionInner .btnArea a {
  color: #fff;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner .btnArea a {
    color: #8a8a8a;
  }
}
.recruitTop .inner .sectionInner .btnArea a strong {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner .btnArea a strong {
    border-bottom: 1px solid #8a8a8a;
  }
}
.recruitTop .inner .sectionInner .btnArea a span {
  background: #fff;
  color: #de551a;
  width: 48px;
  height: 48px;
  line-height: 48px;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner .btnArea a span {
    background: #e99413;
    color: #fff;
  }
}
.recruitTop .inner .sectionInner figure {
  position: absolute;
  bottom: 110px;
  right: 0;
}
@media screen and (max-width: 960px) {
  .recruitTop .inner .sectionInner figure.max-960 {
    position: static;
    text-align: center;
  }
  .recruitTop .inner .sectionInner figure.max-960 img {
    width: 100%;
    max-width: 349px;
  }
}

/************************
WP-news-ページネーション設定
************************/
div.pnavi {
  width: 100%;
  padding: 70px 0;
  text-align: center;
  border-top: dashed 1px #727171;
}
div.pnavi span,
div.pnavi a {
  display: inline-block;
  padding: 0 7%;
  line-height: 45px;
  margin-right: 1%;
}
div.pnavi a {
  border: 1px solid #231815;
  color: #231815;
}
div.pnavi span.current {
  color: #fff;
  background: #e99413;
}
div.pnavi a.prev,
div.pnavi a.next {
  border: none;
  background: #efeeef;
}

/************************
otherMenuAreaのcurrent設定
************************/
.top #headerArea .otherMenuArea li:nth-child(1) a {
  background-color: #fff;
  color: #de551a;
}
.top #headerArea .otherMenuArea li:nth-child(1) a:hover {
  opacity: 0.8;
}

.company #headerArea .otherMenuArea li:nth-child(2) a {
  background-color: #fff;
  color: #de551a;
}
.company #headerArea .otherMenuArea li:nth-child(2) a:hover {
  opacity: 0.8;
}

.contact #headerArea .otherMenuArea li:nth-child(3) a {
  background-color: #fff;
  color: #de551a;
}
.contact #headerArea .otherMenuArea li:nth-child(3) a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */