@charset "UTF-8";
* {
  letter-spacing: 0.05rem;
}

img {
  max-width: 100%;
  height: auto;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
}
a:focus {
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
}
a img {
  /* IE10以下で出る枠線対策 */
  border-style: none;
}
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
}

html {
  overflow-x: hidden;
  font-size: 14px;
  /*レスポンシブタイプセッティングの指定*/
  line-height: 1.6;
  color: #333;
}

body {
  margin: 0;
  padding: 0;
  font-family: YakuHanJP_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 400;
}

.index {
  position: fixed;
  bottom: 60px;
  right: 0;
  z-index: 99;
  width: 280px;
  animation: SlideIn 0.5s;
}

.index_none {
  animation: SlideOut 0.25s;
  animation-fill-mode: forwards;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
  0% {
    transform: translateX(280px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes SlideOut {
  0% {
    transform: translateX(0);
  }
  99% {
    transform: translateX(280px);
  }
  100% {
    transform: translateX(0);
  }
}
/*ホバー時にキランと光るエフェクト*/
.reflection {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.reflection::before {
  height: 80px;
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.reflection:hover {
  opacity: 1;
}
.reflection:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*  header  */
header {
  background-color: #fff;
  box-shadow: 0px -5px 12px #000;
  position: fixed;
  width: 100%;
  z-index: 999;
}
header .header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  header .header__inner {
    height: 60px;
  }
}
header .header__inner .logo {
  padding: 23px 25px;
  font-size: 0;
}
@media screen and (max-width: 1130px) and (min-width: 1025px) {
  header .header__inner .logo {
    width: 260px;
  }
}
@media screen and (max-width: 1024px) {
  header .header__inner .logo {
    padding: 20px 10px;
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  header .header__inner #global-nav {
    background: #999;
    display: none;
    left: 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 60px;
    width: 100%;
  }
}
header .header__inner #global-nav ul {
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .header__inner #global-nav ul {
    flex-direction: column;
    padding: 30px 0 40px;
  }
}
header .header__inner #global-nav ul li {
  margin-right: 25px;
}
@media screen and (max-width: 1130px) and (min-width: 1025px) {
  header .header__inner #global-nav ul li {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1024px) {
  header .header__inner #global-nav ul li {
    padding: 5px 30px;
    margin: 0;
  }
}
header .header__inner #global-nav ul li > a,
header .header__inner #global-nav ul li span {
  display: block;
  font-weight: bold;
  line-height: 30px;
  padding: 25px 0;
}
@media screen and (max-width: 1024px) {
  header .header__inner #global-nav ul li a {
    padding: 10px 20px;
    background-color: #fff;
    position: relative;
  }
  header .header__inner #global-nav ul li a::after {
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    content: "";
    display: block;
    height: 9px;
    position: absolute;
    right: 20px;
    top: 20px;
    transform: rotate(45deg);
    transition: all 0.2s;
    width: 9px;
  }
}
header .header__inner #global-nav ul li a:hover {
  opacity: 1;
}
header .header__inner #global-nav ul li a > span {
  position: relative;
  padding: 0;
}
header .header__inner #global-nav ul li a > span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1024px) {
  header .header__inner #global-nav ul li a > span::after {
    display: none;
  }
}
header .header__inner #global-nav ul li a > span:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1024px) {
  header .sp_nav-btn {
    transition: 0.3s;
  }
  header .icon-animation {
    width: 40px;
    height: 30px;
    display: block;
    cursor: pointer;
    float: right;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 12px;
  }
  header .icon-animation span {
    width: 40px;
    height: 2px;
    display: block;
    background: #333;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -17px;
    margin-top: -5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  header .icon-animation .top {
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  header .icon-animation .bottom {
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px);
  }
  header .icon-animation:before {
    content: "MENU";
    display: block;
    position: absolute;
    left: 4px;
    letter-spacing: 0;
    bottom: -17px;
    color: #333;
    font-size: 12px;
    width: 40px;
  }
  header .icon-animation button {
    background-color: #fff;
    border: none;
  }
  header .is-open .middle {
    background: transparent;
  }
  header .is-open .top {
    -webkit-transform: rotate(-45deg) translateY(0px);
    -ms-transform: rotate(-45deg) translateY(0px);
    transform: rotate(-45deg) translateY(0px);
  }
  header .is-open .bottom {
    -webkit-transform: rotate(45deg) translateY(0px);
    -ms-transform: rotate(45deg) translateY(0px);
    transform: rotate(45deg) translateY(0px);
  }
  header .is-open.icon-animation:before {
    content: "CLOSE";
    left: 0px;
    width: 46px;
  }
}

/*  footer  */
footer {
  background-color: #eebb34;
  padding: 25px 0 20px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 25px 0 20px;
  }
}
footer a {
  color: #fff;
}
footer #page_up {
  bottom: 60px;
  position: flex;
  right: 30px;
}
footer #footer-head {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer #footer-head {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  footer #footer-head {
    text-align: center;
  }
}
footer #footer-head .footer-address {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  footer #footer-head .footer-address {
    margin-top: 10px;
  }
}
footer #footer-head .footer-nav {
  display: flex;
  width: 63%;
}
@media screen and (max-width: 1024px) {
  footer #footer-head .footer-nav {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  footer #footer-head .footer-nav {
    margin-top: 10px;
    text-align: left;
    flex-direction: column;
    width: 100%;
  }
}
footer #footer-head .footer-nav dl {
  margin-top: -10px;
}
@media screen and (max-width: 480px) {
  footer #footer-head .footer-nav dl {
    margin-top: 20px;
    margin-left: 15px;
  }
}
footer #footer-head .footer-nav dl + dl {
  margin-left: 30px;
}
@media screen and (max-width: 480px) {
  footer #footer-head .footer-nav dl + dl {
    margin-left: 15px;
  }
}
footer #footer-head .footer-nav dl dt,
footer #footer-head .footer-nav dl dd {
  margin-top: 10px;
}
footer #footer-head .footer-nav dl dd {
  margin-left: 15px;
}
footer #footer-head #footer-foot {
  border-top: 2px solid #fff;
  margin-top: 30px;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer #footer-head #footer-foot {
    margin-right: 60px;
  }
}
@media screen and (max-width: 1024px) {
  footer #footer-head #footer-foot {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  footer #footer-head #footer-foot a {
    margin-left: 15px;
  }
}
@media screen and (max-width: 480px) {
  footer #footer-head #footer-foot p {
    margin-top: 20px;
    text-align: center;
  }
}

.footer_end {
  background-color: #c04547;
  padding: 10px 0;
  position: fixed;
  transition: all 0.5s;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  width: 100%;
  z-index: 9994;
}
.footer_end.show {
  opacity: 1;
}
.footer_end .end_txt {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.footer_end .end_txt .big {
  font-size: 30px;
}
@media screen and (max-width: 1024px) {
  .footer_end .end_txt .big {
    font-size: 26px;
  }
}
@media screen and (max-width: 900px) {
  .footer_end .end_txt .big {
    font-size: 22px;
  }
}
@media screen and (max-width: 900px) {
  .footer_end .end_txt .big {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .footer_end .end_txt .big {
    font-size: 16px;
  }
}
.footer_end .end_txt .small {
  font-size: 26px;
}
@media screen and (max-width: 1024px) {
  .footer_end .end_txt .small {
    font-size: 22px;
  }
}
@media screen and (max-width: 900px) {
  .footer_end .end_txt .small {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .footer_end .end_txt .small {
    font-size: 11px;
  }
}

/*
#footer-main{
  margin-bottom: 110px;
  @include ipad{
    margin-bottom: 100px;
  }
  @include smp{
    margin-bottom: 90px;
  }
}
*/
/*  main  */
.wrapper {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}

.button01 {
  background-color: #333;
  border: 2px solid #333;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
.button01:visited {
  color: #fff;
}
.button01:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: 10px;
  top: 30px;
  transform: rotate(45deg);
  transition: all 0.2s;
  width: 9px;
}
.button01:hover {
  background-color: #fff;
  color: #333;
  opacity: 1;
}
.button01:hover:after {
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.sp-bottom-navi {
  background-color: #d76980;
  padding: 15px 0 8px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s;
  margin: 0 auto;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 480px) {
  .sp-bottom-navi {
    padding: 15px 0 8px;
  }
}
.sp-bottom-navi.show {
  opacity: 1;
}
.sp-bottom-navi .btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-bottom-navi .btn_area div {
  margin-right: 20px;
}

/*  second  */
.second {
  padding: 90px 0 0;
}
@media screen and (max-width: 1024px) {
  .second {
    padding: 60px 0 0;
  }
}

#pankuzu {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  #pankuzu {
    margin-top: 10px;
  }
}
#pankuzu li {
  display: inline-block;
  font-size: 12px;
}
#pankuzu li + li {
  margin-left: 10px;
}
#pankuzu li a {
  color: #333;
}

#page_header {
  text-align: center;
  margin-top: 50px;
}
#page_header h1 {
  color: #333;
  font-size: 36px;
}
@media screen and (max-width: 480px) {
  #page_header h1 {
    font-size: 30px;
    margin-top: 30px;
  }
}
#page_header .en {
  color: #f15025;
  font-size: 20px;
}

.foot_end {
  position: fixed;
  z-index: 100;
  bottom: -10px;
  width: 100%;
  background-color: #c04547;
  padding: 30px;
  text-align: center;
}
.foot_end p {
  font-size: 40px;
  font-weight: bold;
  line-height: 0.8;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .foot_end p {
    font-size: 26px;
    line-height: 1;
  }
}
@media screen and (max-width: 480px) {
  .foot_end p {
    font-size: 20px;
  }
}
.foot_end p span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .foot_end p span {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .foot_end p span {
    font-size: 11px;
  }
}

/****************/
/*  ディスプレイ幅表示制御  */
/****************/
@media screen and (max-width: 1024px) {
  .spc__hide {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .spc__show {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .ipad__hide {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .ipad__show {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .smp__hide {
    display: none !important;
  }
}
@media screen and (min-width: 481px) {
  .smp__show {
    display: none !important;
  }
}
@media print {
  body {
    zoom: 0.6;
  }
  .ipad__show {
    display: none !important;
  }
  .smp__show {
    display: none !important;
  }
}