@charset "UTF-8";
/* =================================================== *

  --- ABOUT CSS ---

framework [musubii] https: //musubii.qranoko.jp/getting-started/introduction
mobile~575px
fablet 576px~767px
tablet 768px~991px
desktop 992px~1199px
wide 1200px~

 * =================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.4em;
  overflow-x: hidden;
  color: #000;
}

@media screen and (max-width: 320px) {
  body {
    font-size: 1.2em;
  }
}

/* 明朝体 */
.min {
  font-family: "Noto Serif JP", serif;
}

/* 数字フォント */
.num {
  font-family: "Roboto", sans-serif;
}

/* 最初ふわっと */
body {
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

/* inner */
.section > .inner {
  max-width: 840px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .section > .inner {
    width: 94%;
  }
}

/* inner730 */
.inner730 {
  max-width: 730px;
  margin: 0 auto;
}

/* inner560 */
.inner560 {
  max-width: 560px;
  margin: 0 auto;
}

/* inner500 */
.inner500 {
  max-width: 500px;
  margin: 0 auto;
}

/* inner400 */
.inner400 {
  max-width: 400px;
  margin: 0 auto;
}

/* link */
a img {
  transition: 0.3s;
}

a:hover img {
  opacity: 0.8;
}

/* nolink */
a.disable:hover img {
  opacity: 1;
}

.disable {
  cursor: default;
}

/* img */
.pic img {
  width: 100%;
  height: auto;
}

/* pc sp　表示 */
.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}

/* pc sp　改行 */
.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-inline {
    display: none;
  }
  .sp-inline {
    display: inline;
  }
}

/*  Header
=================================================== */
header {
  padding: 0px 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  header {
    position: relative;
    z-index: 9999;
    height: 70px;
    padding: 18px 0;
    border-bottom: solid 2px #ccc;
  }
  header .section > .inner {
    width: 100%;
  }
}

/* inner */
.header__inner {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* logo */
.header__logo h1 {
  max-width: 180px;
}

@media screen and (max-width: 767px) {
  .header__logo {
    margin-left: 20px;
  }
  .header__logo h1 {
    max-width: 130px;
  }
}

/* right */
.header__right {
  flex-basis: 63%;
}

@media screen and (max-width: 992px) {
  .header__right {
    flex-basis: auto;
  }
}

/* right up */
.header__up {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

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

/* tel */
.header__tel {
  font-size: 1.7rem;
}

.header__tel small {
  font-size: 1rem;
  margin-right: 5px;
}

/* link */
.header__link ul {
  display: flex;
}

.header__link ul li a {
  font-size: 1.2rem;
  display: block;
  margin-left: 10px;
}

.header__link ul li a:hover {
  opacity: 0.8;
}

.header__link ul li:first-child a {
  color: #8c6239;
}

.header__link ul li:nth-child(2) a {
  color: #22b573;
}

.header__link ul li:nth-child(3) a {
  color: #fbb03b;
}

/* menu */
.header__menu ul {
  display: flex;
  justify-content: space-between;
}

.header__menu ul li a {
  transition: 0.3s;
}

.header__menu ul li a:hover {
  color: #e3733b;
}

.header__menu ul li a.disable {
  opacity: 0.3;
  color: #000;
}

.header__menu ul li a.active {
  color: #e3733b;
}

@media screen and (max-width: 767px) {
  .header__menu {
    position: absolute;
    top: 70px;
    display: none;
    width: 100%;
    background: #f4aa76;
  }
  .header__menu ul {
    display: block;
  }
  .header__menu ul li a {
    display: block;
    padding: 10px 20px;
    text-align: center;
  }
  .header__menu ul li a:hover {
    color: #fff;
  }
  .header__menu ul li a.disable {
    opacity: 0.3;
    color: #000;
  }
  .header__menu ul li a.active {
    color: #fff;
  }
  .header__menu ul li + li a {
    border-top: solid 1px #fff;
  }
}

/* sp開くボタン */
@media screen and (min-width: 768px) {
  .openbtn {
    display: none;
  }
}

.openbtn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: #e3733b;
}

.openbtn span {
  position: absolute;
  left: 14px;
  display: inline-block;
  width: 45%;
  height: 3px;
  transition: all 0.4s;
  border-radius: 2px;
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  width: 30%;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  width: 30%;
  transform: translateY(-6px) rotate(45deg);
}

/*  Footer 固定
=================================================== */
#footer__fixed {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#footer__fixed ul li a {
  line-height: 1;
  display: block;
  width: 1em;
  margin-bottom: 10px;
  padding: 30px 35px 30px 20px;
  transition: 0.3s;
  color: #fff;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
}

#footer__fixed ul li:first-child a {
  background: linear-gradient(90deg, #896038 0%, #533a22 100%);
}

#footer__fixed ul li:first-child a:hover {
  background: linear-gradient(90deg, #96643c 0%, #5a3c28 100%);
}

#footer__fixed ul li:nth-child(2) a {
  background: linear-gradient(90deg, #00a79b 0%, #00645d 100%);
}

#footer__fixed ul li:nth-child(2) a:hover {
  background: linear-gradient(90deg, #00aaa0 0%, #006e6e 100%);
}

@media screen and (max-width: 767px) {
  #footer__fixed {
    top: auto;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
  }
  #footer__fixed ul {
    display: flex;
  }
  #footer__fixed ul li {
    flex-basis: 50%;
  }
  #footer__fixed ul li a {
    width: 100%;
    margin-bottom: 0;
    padding: 15px 0;
    text-align: center;
    border-top: none;
    border-bottom: none;
    border-left: none;
  }
}

/*  Footer
=================================================== */
footer {
  padding: 100px 0 30px 0;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}

/* inner */
.footer__inner {
  display: flex;
}

.footer__inner > div {
  flex-basis: 50%;
}

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

/* tel */
.footer__tel {
  border-right: solid 1px #000;
}

.footer__tel img {
  max-width: 370px;
}

@media screen and (max-width: 767px) {
  .footer__tel {
    margin-bottom: 20px;
    text-align: center;
    border-right: none;
  }
}

/* link */
.footer-link {
  padding-left: 20px;
}

.footer-link ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-link ul li {
  flex-basis: 48%;
}

.footer-link ul li a {
  display: block;
  padding: 10px 0;
  transition: 0.3s;
  text-align: center;
  color: #fff;
  background: #e3733b;
}

.footer-link ul li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .footer-link {
    padding-left: 0px;
  }
}

/*  Footer copy
=================================================== */
#footercopy {
  padding: 30px 0;
  border-top: solid 1px #000;
}

@media screen and (max-width: 767px) {
  #footercopy {
    padding: 30px 0 70px 0;
  }
}

/* inner */
.footercopy__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

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

/* img */
.footercopy__img img {
  max-width: 180px;
}

@media screen and (max-width: 767px) {
  .footercopy__img {
    margin-bottom: 20px;
    text-align: center;
  }
}

/* link */
.footercopy__link ul {
  display: flex;
}

.footercopy__link ul li {
  margin-left: 20px;
}

.footercopy__link ul li a {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .footercopy__link ul {
    justify-content: space-around;
  }
  .footercopy__link ul li {
    margin-left: 0;
  }
}

/*  Go to top
=================================================== */
#top_scroll {
  position: relative;
  z-index: 100;
  margin: 0;
  padding: 0;
}

#top_scroll #page-top {
  line-height: 35px;
  position: fixed;
  z-index: 101;
  right: 20px;
  bottom: -250px;
  display: block;
  width: 40px;
  height: 40px;
  transition: 1s;
  text-align: center;
  border-radius: 999em;
  background: #40210f;
}

#top_scroll #page-top img {
  width: 20px;
}

#top_scroll #page-top:hover {
  transform: translateY(-10px);
  opacity: 0.8;
}
