/*========================================
mixin
==========================================*/
/*========================================
header-sp
==========================================*/
.header {
  width: 100%;
  position: relative;
}
.header-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header-logo {
  position: absolute;
  top: 0;
  left: 0;
}
.header-logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header-logo a img {
  height: 90px;
}
.header-logo a:hover {
  opacity: 0.8;
}
.header .main-visual {
  width: 100%;
  height: 420px;
  background: center/cover no-repeat url(../images/common/main-visual.png);
  position: relative;
  z-index: 1;
}
.header .main-visual-textbox {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1380px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .main-visual-textbox img {
  height: 270px;
}
.header .sub-visual {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 1;
}
.header .sub-visual-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header .sub-visual-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .sub-visual-textbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 8px;
}
.header .sub-visual-textbox img {
  height: 51px;
}
.header .global-nav {
  position: absolute;
  bottom: 34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1240px;
  width: 100%;
  height: 110px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 55px;
  z-index: 5;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
}
.header .global-nav-list {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.header .global-nav-list-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 70px;
  position: relative;
  border-left: 1px solid #fcc270;
}
.header .global-nav-list-item:last-child {
  border-right: 1px solid #fcc270;
}
.header .global-nav-list-item:nth-child(2) a::before {
  width: 20px;
  height: 30px;
  background: center/cover no-repeat url(../images/common/nav-icon02.png);
}
.header .global-nav-list-item:nth-child(3) a::before {
  top: 3px;
  width: 38px;
  height: 36px;
  background: center/cover no-repeat url(../images/common/nav-icon03.png);
}
.header .global-nav-list-item:nth-child(4) a::before {
  top: 4px;
  width: 28px;
  height: 35px;
  background: center/cover no-repeat url(../images/common/nav-icon04.png);
}
.header .global-nav-list-item:nth-child(5) a::before {
  top: 6px;
  width: 32px;
  height: 28px;
  background: center/cover no-repeat url(../images/common/nav-icon05.png);
}
.header .global-nav-list-item:nth-child(6) a::before {
  top: 11px;
  width: 29px;
  height: 20px;
  background: center/cover no-repeat url(../images/common/nav-icon06.png);
}
.header .global-nav-list-item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  padding-bottom: 6px;
  position: relative;
}
.header .global-nav-list-item a::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 29px;
  height: 29px;
  background: center/cover no-repeat url(../images/common/nav-icon01.png);
}
.header .global-nav-list-item a::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #fcc270;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header .global-nav-list-item a:hover::after {
  width: 100%;
}
.header .global-nav-list-item a.current::after {
  width: 100%;
}
.header .page-top {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 10;
}
.header .page-top:hover {
  bottom: 60px;
  opacity: 0.8;
}
.header .fix-banner {
  position: fixed;
  right: 0;
  bottom: 192px;
  z-index: 10;
}
.header .fix-banner:hover {
  opacity: 0.8;
}

/*========================================
mixin
==========================================*/
/*========================================
main-sp
==========================================*/
.top-about {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-about::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: center/cover no-repeat url(../images/top/top-about-bg-bottom.png);
  z-index: -1;
}
.top-about-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
.top-about-img {
  margin-bottom: 180px;
  z-index: 1;
  position: relative;
}
.top-about-img::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -175px;
  width: 247px;
  height: 277px;
  background: center/contain no-repeat url(../images/top/top-about-sub-img.png);
  z-index: 5;
}
.top-about-textbox {
  max-width: 640px;
  width: 100%;
  padding: 25px 15px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  position: relative;
  z-index: 2;
}
.top-about-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.top-about-title .accent {
  color: #f39f59;
}
.top-about-title .s-font {
  font-size: 2rem;
}
.top-about-text {
  font-size: 1.6rem;
  line-height: 2.111;
  margin-bottom: 20px;
}

.top-point {
  background-color: #fff8ee;
}
.top-point-title {
  text-align: center;
  margin-bottom: 25px;
}
.top-point-title img {
  height: 100px;
}
.top-point-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-point-list-item {
  max-width: 300px;
  width: 100%;
  height: 300px;
  text-align: center;
  padding-top: 30px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  border-radius: 50%;
  border: 1px solid #f39f59;
}
.top-point-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.top-point-list-title {
  font-size: 2.1rem;
  line-height: 1.69;
}
.top-point-icon {
  max-width: 108px;
  width: 100%;
  height: 108px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-area::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 43px;
  background: center/cover no-repeat url(../images/top/top-area-bg-bottom.png);
  z-index: -1;
}
.top-area-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.top-area-img {
  margin-bottom: 0;
}
.top-area-textbox {
  max-width: 520px;
  width: 100%;
}
.top-area-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 50px;
}
.top-area-title .accent {
  color: #f39f59;
}
.top-area-title .s-font {
  font-size: 2rem;
}
.top-area-sub-textbox {
  padding: 20px 12px;
  border: 1px solid #f39f59;
  border-radius: 20px;
}
.top-area-sub-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #f39f59;
  margin-bottom: 11px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.top-area-sub-title::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 12px;
  background-color: #fcc270;
  border-radius: 50%;
}
.top-area-sub-title .border {
  position: relative;
  z-index: 1;
}
.top-area-sub-title .border::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 10px;
  background-color: rgba(252, 194, 112, 0.3);
  z-index: -1;
}
.top-area-text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 20px;
}

.top-service {
  overflow: hidden;
  background-color: #fff8ee;
}
.top-service-title {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.top-service-title::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -39px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 374px;
  height: 73px;
  background: center/contain no-repeat url(../images/top/top-service-title-deco.png);
}
.top-service-title .accent {
  color: #f39f59;
}
.top-service-title .s-font {
  font-size: 2rem;
}
.top-service-list-item {
  max-width: 400px;
  width: 100%;
}
.top-service-list-item:not(:last-child) {
  margin-bottom: 50px;
}
.top-service-list-item:nth-child(2) .top-service-arrow {
  background: center/cover no-repeat url(../images/top/top-service-arrow-bg02.png);
}
.top-service-list-item:nth-child(3) .top-service-arrow {
  background: center/cover no-repeat url(../images/top/top-service-arrow-bg03.png);
}
.top-service-list-item:nth-child(3) .top-service-list-title img {
  max-width: 85px;
}
.top-service-list-item:nth-child(4) .top-service-arrow {
  font-size: 1.4rem;
  letter-spacing: 0;
  background: center/cover no-repeat url(../images/top/top-service-arrow-bg04.png);
}
.top-service-list-item:nth-child(4) .top-service-list-title img {
  max-width: 85px;
}
.top-service-list-item a {
  width: 100%;
  height: 100%;
  position: relative;
}
.top-service-list-item a:hover {
  opacity: 0.8;
}
.top-service-list-item a:hover .top-service-img img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.top-service-list-title {
  position: absolute;
  top: -22px;
  right: 26px;
}
.top-service-list-title img {
  max-width: 130px;
}
.top-service-img {
  width: 100%;
  height: 235px;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  border-radius: 30px;
  overflow: hidden;
}
.top-service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.top-service-arrow {
  position: absolute;
  left: 10px;
  bottom: -30px;
  max-width: 100px;
  width: 100%;
  height: 100px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  padding-top: 32px;
  background: center/cover no-repeat url(../images/top/top-service-arrow-bg01.png);
  border-radius: 50%;
}
.top-service-arrow::after {
  content: "";
  width: 9px;
  height: 13px;
  margin-top: 15px;
  background: center/cover no-repeat url(../images/top/top-service-arrow.png);
}

.link-banner {
  background-color: #fff8ee;
}
.link-banner-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.link-banner-list-item {
  max-width: 380px;
  width: 100%;
  height: 110px;
}
.link-banner-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.link-banner-list-item:nth-child(2) a::before {
  width: 38px;
  height: 36px;
  background: center/cover no-repeat url(../images/top/link-banner-icon02.png);
}
.link-banner-list-item:nth-child(3) a::before {
  width: 28px;
  height: 35px;
  background: center/cover no-repeat url(../images/top/link-banner-icon03.png);
}
.link-banner-list-item a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #f39f59 !important;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  border: 1px solid #f39f59;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.link-banner-list-item a::before {
  content: "";
  width: 20px;
  height: 30px;
  margin-right: 15px;
  background: center/cover no-repeat url(../images/top/link-banner-icon01.png);
}
.link-banner-list-item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 13px;
  background: center/cover no-repeat url(../images/top/link-banner-arrow.png);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.link-banner-list-item a:hover {
  opacity: 0.8;
}
.link-banner-list-item a:hover::after {
  right: 12px;
}

.reserve {
  border-top: 1px solid #f39f59;
  border-bottom: 1px solid #f39f59;
  position: relative;
  z-index: 1;
}
.reserve::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 121px;
  height: 102px;
  background: center/contain no-repeat url(../images/top/reserve-bg-l.png);
  z-index: -1;
}
.reserve::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 121px;
  height: 102px;
  background: center/contain no-repeat url(../images/top/reserve-bg-r.png);
  z-index: -1;
}
.reserve-inner {
  padding-bottom: 70px;
}
.reserve-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.3rem;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.reserve-title .s-font {
  font-size: 2rem;
}
.reserve-title .border {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, rgba(252, 194, 112, 0.3)));
  background: -webkit-linear-gradient(transparent 60%, rgba(252, 194, 112, 0.3) 30%);
  background: linear-gradient(transparent 60%, rgba(252, 194, 112, 0.3) 30%);
}
.reserve-link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 22px;
}
.reserve-textbox {
  margin-bottom: 20px;
}
.reserve-tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #f39f59 !important;
  padding-top: 14px;
  margin-bottom: 12px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.reserve-tel::before {
  content: "";
  width: 33px;
  height: 33px;
  margin-right: 10px;
  background: center/contain no-repeat url(../images/top/reserve-tel-icon.png);
}
.reserve-tel-txt {
  position: absolute;
  top: 0;
  right: 0;
}
.reserve-tel-txt img {
  display: block;
}
.reserve-tel-sub-text {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  background-color: #fff8ee;
}
.reserve-btn {
  max-width: 380px;
  width: 100%;
  height: 70px;
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #fff !important;
  background-color: #fcc270;
  position: relative;
  border-radius: 35px;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
}
.reserve-btn::before {
  content: "";
  width: 22px;
  height: 16px;
  margin-right: 13px;
  background: center/cover no-repeat url(../images/top/reserve-mail-icon.png);
}
.reserve-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 13px;
  background: center/cover no-repeat url(../images/top/cmn-btn-arrow.png);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.reserve-btn:hover::before {
  right: 10px;
}
.reserve-flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reserve-text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.reserve-text .accent {
  display: inline-block;
  width: 90px;
  padding: 6px 0;
  color: #fff;
  text-align: center;
  margin-right: 15px;
  background-color: #a9d04f;
  border-radius: 12px;
}
.reserve-text:not(:last-of-type) {
  margin-bottom: 20px;
}

.news {
  background-color: #fff8ee;
}
.news-inner {
  position: relative;
}
.news-section-title {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 34px;
}
.news-list {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-list-item {
  max-width: 250px;
  width: 100%;
  margin-bottom: 15px;
}
.news-list-item:not(:last-child) {
  margin-bottom: 24px;
}
.news-list-item a {
  width: 100%;
}
.news-list-item a:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.news-visual {
  width: 100%;
  height: 168px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
}
.news-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news time {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: right;
  line-height: 1;
  letter-spacing: 0.12em;
}
.news-accent {
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.news-accent-tag {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 5px 11px;
  background-color: #fab240;
  border-radius: 10px;
}
.news-accent-tag:not(:last-child) {
  margin-right: 8px;
}
.news-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 9px;
}
.news .more-btn {
  position: absolute;
  top: 50px;
  right: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(83, 68, 57, 0.3);
}
.news .more-btn::after {
  content: "";
  width: 28px;
  height: 28px;
  margin-left: 8px;
  background: center/cover no-repeat url(../images/top/news-arrow.png);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.news .more-btn:hover {
  opacity: 0.8;
}
.news .more-btn:hover::after {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.news-tag-list {
  max-width: 250px;
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-overflow: ellipsis;
  margin: 0 0 30px auto;
  cursor: pointer;
  color: #f39f59;
  border: 2px solid #f39f59;
}
.news-tag-list-item {
  width: 100%;
  margin-bottom: 15px;
  margin-right: 10px;
}
.news-tag-list-item a {
  font-size: 1.6rem;
  color: #fff !important;
  padding: 5px 10px;
  background-color: #f39f59;
}
.news-tag-list-item a:hover {
  opacity: 0.6;
}
.news-detail-inner {
  text-align: center;
}
.news-detail-content {
  width: 100%;
  margin: 0 auto;
}
.news-detail-info-list {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}
.news-detail-info-list-item {
  line-height: 1;
  color: #aaa;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}
.news-detail-info-list-item:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #aaa;
}
.news-detail-info-list-item time {
  color: #000;
}
.news-detail-title {
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: left;
  padding-bottom: 10px;
}
.news-detail-textbox {
  min-height: 200px;
  text-align: left;
  padding: 20px 0;
  margin-bottom: 30px;
  border-top: 1px solid #f39f59;
  border-bottom: 1px solid #f39f59;
}
.news-detail-textbox time {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.news-detail-text {
  line-height: 1.75;
}
.news-detail-text img {
  max-width: 100%;
}
.news-detail .paginated-link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.news-detail .paginated-link .prev-link {
  width: 110px;
  text-align: center;
  margin-right: 10px;
}
.news-detail .paginated-link .back-link {
  padding: 0 7px;
  border-left: 1px solid #f39f59;
  border-right: 1px solid #f39f59;
}
.news-detail .paginated-link .next-link {
  width: 110px;
  text-align: center;
  margin-left: 10px;
}
.news-detail .paginated-link a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #f39f59 !important;
}
.news-detail .paginated-link a:hover {
  color: #f39f59 !important;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*========================================
about
==========================================*/
.about {
  position: relative;
  z-index: 1;
}
.about::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: center/cover no-repeat url(../images/top/top-about-bg-bottom.png);
  z-index: -1;
}
.about-inner .cmn-title .accent {
  display: inline-block;
  position: relative;
}
.about-inner .cmn-title .accent::before {
  position: absolute;
  content: "";
  top: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 83px;
  height: 11px;
  background: center/contain no-repeat url(../images/about/about-ruby.png);
}
.about-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
.about-img {
  margin-bottom: 20px;
}
.about-textbox {
  max-width: 640px;
  width: 100%;
  padding: 20px 13px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  position: relative;
  z-index: 1;
}
.about-text {
  font-size: 1.6rem;
  line-height: 2.111;
}
.about-text:not(:last-of-type) {
  margin-bottom: 27px;
}

.recommend {
  background-color: #fff8ee;
}
.recommend-text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
}
.recommend-list {
  margin-bottom: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recommend-list-item {
  max-width: 290px;
  width: 100%;
  height: 290px;
  border-radius: 50%;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
}
.recommend-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.recommend-sub-text {
  max-width: 928px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  background-color: #fff;
  padding: 25px 10px;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
}

.feature-inner {
  max-width: 1190px;
}
.feature-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  counter-reset: number 0;
}
.feature-list-item {
  max-width: 320px;
  width: 100%;
  height: 210px;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.46;
  text-align: center;
  padding-top: 75px;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  border-top: 2px solid #f39f59;
  position: relative;
}
.feature-list-item::before {
  position: absolute;
  content: "";
  top: 38px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  counter-increment: number 1;
  content: "0" counter(number);
}
.feature-list-item .accent {
  color: #f39f59;
}
.feature-list-item:not(:last-child) {
  margin-bottom: 25px;
}
.feature-list-item:not(:last-child):last-child {
  margin-right: 0;
}

.point {
  background-color: #fff8ee;
}
.point-content {
  position: relative;
  z-index: 1;
}
.point-content:not(:last-of-type) {
  margin-bottom: 30px;
}
.point-img {
  margin-bottom: 0px;
}
.point-textbox {
  max-width: 556px;
  width: 100%;
  padding: 25px 15px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  position: relative;
  z-index: 1;
}
.point-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #f39f59;
  padding-bottom: 20px;
  margin-bottom: 19px;
  border-bottom: 1px solid #f39f59;
}
.point-text {
  font-size: 1.6rem;
  line-height: 1.7777;
  letter-spacing: 0.15em;
}

.flow-content:not(:last-of-type) {
  margin-bottom: 60px;
}
.flow-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 20px 5px;
  text-align: center;
  border-radius: 20px;
  background-color: #f39f59;
  margin-bottom: 25px;
}
.flow-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flow-list-item {
  max-width: 320px;
  width: 100%;
}
.flow-list-item:not(:last-child) {
  margin-bottom: 50px;
  position: relative;
}
.flow-list-item:not(:last-child)::before {
  position: absolute;
  content: "";
  bottom: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  width: 27px;
  height: 39px;
  background: center/cover no-repeat url(../images/about/flow-arrow.png);
}
.flow-list-title {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  text-align: center;
  color: #f39f59;
  margin-bottom: 18px;
}
.flow-icon {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 35px;
}
.flow-text {
  font-size: 1.5rem;
}
.flow-notice {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 27px;
}

/*========================================
menu
==========================================*/
.menu {
  position: relative;
  z-index: 1;
}
.menu::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: center/cover no-repeat url(../images/top/top-about-bg-bottom.png);
  z-index: -1;
}
.menu-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
.menu-content:not(:last-of-type) {
  margin-bottom: 35px;
}
.menu-img {
  margin-bottom: 0;
}
.menu-textbox {
  max-width: 636px;
  width: 100%;
  padding: 25px 15px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  position: relative;
  z-index: 1;
}
.menu-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #f39f59;
  padding-bottom: 20px;
  margin-bottom: 19px;
  border-bottom: 1px solid #f39f59;
}
.menu-sub-title {
  font-size: 2rem;
  font-weight: 400;
  color: #f39f59;
  line-height: 1;
  padding: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  background-color: #fff8ee;
}
.menu-sub-text {
  font-size: 1.6rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.menu-sub-text::before {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  margin-top: 8px;
  background-color: #fcc270;
  border-radius: 50%;
}
.menu-sub-text:not(:last-child) {
  margin-bottom: 13px;
}
.menu-text {
  font-size: 1.8rem;
  line-height: 1.777;
}
.menu-text:not(:last-of-type) {
  margin-bottom: 21px;
}
.menu-sub-content {
  max-width: 928px;
  width: 100%;
  margin: 0 auto;
  padding: 25px 15px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  position: relative;
  z-index: 1;
}
.menu-sub-content-title {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #f39f59;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 19px;
  border-bottom: 1px solid #f39f59;
}
.menu-sub-content-text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}

.price-notice {
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 34px;
}
.price-list-item {
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.price-list-item:not(:last-child) {
  margin-bottom: 29px;
}
.price-list-item:nth-child(2) .price-list-title {
  background-color: #a9d04f;
}
.price-list-title {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  padding: 20px 0;
  background-color: #f39f59;
}
.price-text {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  padding: 25px 34px;
}

/*========================================
question
==========================================*/
.question {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.question::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: center/cover no-repeat url(../images/top/top-about-bg-bottom.png);
  z-index: -1;
}
.question-inner {
  padding-top: 40px;
}
.question-list-item {
  padding: 20px 15px;
  border: 1px solid #f39f59;
  border-radius: 20px;
}
.question-list-item:not(:last-child) {
  margin-bottom: 45px;
}
.question-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(243, 159, 89, 0.3);
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.question-title::before {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 24px;
  height: 31px;
  margin-right: 15px;
  background: center/cover no-repeat url(../images/question/Q.png);
}
.question-textbox {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.question-textbox::before {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 26px;
  height: 26px;
  margin-right: 15px;
  background: center/cover no-repeat url(../images/question/A.png);
}
.question-body {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.question-body img {
  max-width: 100%;
}

/*========================================
contact
==========================================*/
.greeting {
  position: relative;
  z-index: 1;
}
.greeting::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: center/cover no-repeat url(../images/top/top-about-bg-bottom.png);
  z-index: -1;
}
.greeting-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.greeting-img {
  max-width: 400px;
  width: 90%;
  margin-left: -35px;
  margin-bottom: 20px;
}
.greeting-textbox {
  max-width: 636px;
  width: 100%;
  padding: 45px 15px 25px 15px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  position: relative;
  z-index: 1;
}
.greeting-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #f39f59;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f39f59;
  position: relative;
}
.greeting-title::before {
  position: absolute;
  content: "";
  top: -21px;
  left: 2px;
  width: 117px;
  height: 11px;
  background: center/contain no-repeat url(../images/info/greeting-ruby.png);
}
.greeting-sub-title {
  font-size: 2rem;
  font-weight: 400;
  color: #f39f59;
  line-height: 1;
  padding: 14px 10px;
  margin-bottom: 13px;
  letter-spacing: 0.02em;
  background-color: #fff8ee;
}
.greeting-text {
  font-size: 1.6rem;
  line-height: 2;
}
.greeting-sub-content {
  max-width: 928px;
  width: 100%;
  margin: 0 auto;
  padding: 25px 13px;
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
}
.greeting-sub-content-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
  color: #f39f59;
  margin-bottom: 18px;
}
.greeting-sub-text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}

.info {
  background-color: #fff8ee;
}
.info-table {
  width: 100%;
  margin-bottom: 30px;
}
.info-table tr {
  display: block;
}
.info-table tr:not(:last-of-type) {
  margin-bottom: 4px;
}
.info-table tr th {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 20px;
  text-align: center;
  background-color: #f39f59;
  border-radius: 10px;
  vertical-align: middle;
}
.info-table tr td {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 20px;
  vertical-align: middle;
}
.info-tel-txt img {
  display: block;
}
.info-map {
  width: 100%;
  height: 60vw;
}
.info-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*========================================
contact
==========================================*/
.contact-content {
  padding-bottom: 35px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #a9d04f;
}
.contact-content:not(:last-of-type) {
  margin-bottom: 35px;
}
.contact-content:nth-of-type(2) {
  border: 1px solid #f39f59;
}
.contact-content:nth-of-type(2) .contact-sub-title {
  background-color: #f39f59;
}
.contact-line {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
  border-radius: 45px;
}
.contact-line:hover {
  opacity: 0.8;
}
.contact-textbox {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.contact-sub-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 20px 0;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  background-color: #a4cd44;
}
.contact-text {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  padding: 0 15px;
  margin-bottom: 23px;
  text-align: center;
}
.contact .contact_wrap {
  max-width: 980px;
  width: 95%;
  margin: 0 auto;
}
.contact-form-table tr {
  border: none;
}
.contact-form-table tr:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}
.contact-form-table tr th {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  background: none;
}
.contact-form-table tr td {
  padding: 13px 9px;
}
.contact-form-table tr td a {
  text-decoration: underline;
}
.contact-submits-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-submits-wrap input {
  color: #fff;
  background-color: #f39f59;
}
.contact-submits-wrap button {
  color: #fff;
  margin-bottom: 15px;
  background-color: #f39f59;
}

/*========================================
privacy
==========================================*/
.privacy-content {
  padding: 20px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #f39f59;
  border-radius: 5px;
}
.privacy-content:not(:last-child) {
  margin-bottom: 30px;
}
.privacy-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 15px;
  padding: 0 0 0 20px;
  border-left: 2px solid #f39f59;
}
.privacy-text {
  font-size: 1.4rem;
  font-weight: 500;
}
.privacy-list {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 15px;
  list-style-type: square;
  list-style-position: inside;
}

/*========================================
site
==========================================*/
.site-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.site-list-item {
  width: 100%;
  border-bottom: 1px solid #f39f59;
}
.site-list-item a {
  width: 100%;
  padding: 15px 0 15px 10px;
  color: #f39f59;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-list-item a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 20px;
  border-top: 1px solid #f39f59;
  border-right: 1px solid #f39f59;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.site-list-item a:hover {
  color: #f39f59 !important;
}
.site-list-item a:hover::before {
  -webkit-transform: rotate(45deg) translate(8px, -8px);
          transform: rotate(45deg) translate(8px, -8px);
}

/*========================================
mixin
==========================================*/
/*========================================
footer-sp
==========================================*/
.footer {
  position: relative;
  z-index: 1;
}
.footer-inner {
  padding: 35px 0;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
.footer-logo {
  margin-bottom: 35px;
}
.footer-logo img {
  max-width: 175px;
  width: 100%;
}
.footer-logo:hover {
  opacity: 0.8;
}
.footer-address {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer-textbox {
  margin-bottom: 20px;
}
.footer-tel {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #f39f59 !important;
  padding-top: 14px;
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-tel::before {
  content: "";
  width: 29px;
  height: 30px;
  margin-right: 10px;
  background: center/cover no-repeat url(../images/top/footer-tel-icon.png);
}
.footer-tel-txt {
  position: absolute;
  top: 0;
  right: 0;
}
.footer-tel-txt img {
  display: block;
}
.footer-tel-sub-text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  padding: 10px 7px;
  background-color: #fff8ee;
}
.footer-content {
  max-width: 640px;
  width: 100%;
  margin-bottom: 20px;
}
.footer-link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 95px;
  margin-bottom: 20px;
  position: relative;
}
.footer-flex {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer-btn {
  max-width: 260px;
  width: 100%;
  border-radius: 35px;
  -webkit-box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
          box-shadow: 2px 4px 10px 0 rgba(42, 47, 36, 0.15);
}
.footer-btn:hover {
  opacity: 0.8;
}
.footer-text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.footer-text .accent {
  display: inline-block;
  width: 85px;
  padding: 6px 0;
  color: #fff;
  text-align: center;
  margin-right: 12px;
  background-color: #a9d04f;
  border-radius: 12px;
}
.footer-text:not(:last-of-type) {
  margin-bottom: 8px;
}
.footer-right {
  max-width: 390px;
  width: 100%;
}
.footer-nav {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.footer-nav-list {
  width: 100%;
  height: 260px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.footer-nav-list-item {
  line-height: 1;
}
.footer-nav-list-item:not(:nth-child(5n)) {
  margin-bottom: 45px;
}
.footer-nav-list-item:last-child {
  margin-bottom: 0;
}
.footer-nav-list-item a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  line-height: 1;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-nav-list-item a::before {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background-color: #f39f59;
  border-radius: 50%;
}
.footer-nav-list-item a:hover {
  color: #000 !important;
}
.footer-bottom #copyright {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.12em;
  line-height: 1;
}