@charset "UTF-8";
/* header */
header {
  background-color: #fff;
  box-shadow: 0 -5px 12px #000;
  position: fixed;
  width: 100%;
  z-index: 999;
}
@media print {
  header {
    position: static;
  }
}
header .header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .sp_nav-btn {
    transition: 0.3s;
  }
  header .header-inner .icon-animation {
    width: 40px;
    height: 30px;
    display: block;
    cursor: pointer;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%);
  }
  header .header-inner .icon-animation span {
    width: 40px;
    height: 2px;
    display: block;
    background: #63f;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -17px;
    margin-top: -5px;
    transition: all 0.3s;
    transform: rotate(0deg);
  }
  header .header-inner .icon-animation .top {
    transform: translateY(-12px);
  }
  header .header-inner .icon-animation .bottom {
    transform: translateY(12px);
  }
  header .header-inner .icon-animation:before {
    content: "MENU";
    display: block;
    position: absolute;
    left: 4px;
    letter-spacing: 0;
    bottom: -17px;
    color: #63f;
    font-size: 12px;
    width: 40px;
  }
  header .header-inner .icon-animation button {
    background-color: #fff;
    border: none;
  }
  header .header-inner .is-open .middle {
    background: transparent;
  }
  header .header-inner .is-open .top {
    transform: rotate(-45deg) translateY(0px);
  }
  header .header-inner .is-open .bottom {
    transform: rotate(45deg) translateY(0px);
  }
  header .header-inner .is-open.icon-animation:before {
    content: "CLOSE";
    left: 0px;
    width: 46px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-inner #gNav {
    background: #999;
    display: none;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 80px;
    width: 100%;
  }
}
header .header-inner #gNav ul {
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .header-inner #gNav ul {
    flex-direction: column;
    padding: 30px;
  }
}
header .header-inner #gNav ul li + li {
  margin-left: 25px;
}
@media print {
  header .header-inner #gNav ul li + li {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-inner #gNav ul li + li {
    margin-left: 0;
    margin-top: 20px;
  }
}
header .header-inner #gNav ul li a {
  display: block;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  header .header-inner #gNav ul li a {
    padding: 0;
  }
}
@media print {
  header .header-inner #gNav ul li a span {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-inner #gNav ul li a span {
    display: block;
    width: 100%;
    position: relative;
  }
  header .header-inner #gNav ul li a span::before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    width: 10px;
  }
}

/*  footer  */
footer {
  position: relative;
}
@media screen and (max-width: 1024px) {
  footer {
    margin-bottom: 62px;
  }
}
@media screen and (max-width: 820px) {
  footer {
    margin-bottom: 20.7vw;
  }
}
@media screen and (max-width: 640px) {
  footer {
    margin-bottom: 23.3vw;
  }
}
@media screen and (max-width: 520px) {
  footer {
    margin-bottom: 22.5vw;
  }
}
@media screen and (max-width: 400px) {
  footer {
    margin-bottom: 26.5vw;
  }
}
footer::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/item02@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  right: 20px;
  bottom: 30px;
  width: 291px;
  height: 226px;
  z-index: 0;
}
@media screen and (max-width: 1300px) {
  footer::before {
    width: 231px;
    height: 176px;
  }
}
@media screen and (max-width: 1300px) {
  footer::before {
    width: 181px;
    height: 126px;
  }
}
@media screen and (max-width: 1024px) {
  footer::before {
    width: 291px;
    height: 226px;
    bottom: 50px;
  }
}
@media screen and (max-width: 820px) {
  footer::before {
    width: 30vw;
    height: 23vw;
  }
}
@media screen and (max-width: 520px) {
  footer::before {
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
    width: 201px;
    height: 156px;
    bottom: 90px;
  }
}
footer .wrapper {
  max-width: 1000px;
}
footer #footer-head {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  font-size: 16px;
}
@media screen and (max-width: 1600px) {
  footer #footer-head {
    justify-content: left;
  }
}
@media screen and (max-width: 820px) {
  footer #footer-head {
    flex-direction: column;
    padding: 60px 0;
  }
}
@media screen and (max-width: 640px) {
  footer #footer-head {
    padding: 60px 0 140px;
  }
}
@media screen and (max-width: 520px) {
  footer #footer-head {
    padding: 40px 0 200px;
  }
}
@media print {
  footer #footer-head {
    justify-content: left;
  }
}
@media screen and (max-width: 520px) {
  footer #footer-head .footer-info {
    text-align: center;
  }
}
footer #footer-head .footer-info .footer-logo {
  font-size: 0;
  display: inline-block;
}
@media screen and (max-width: 520px) {
  footer #footer-head .footer-info .footer-logo {
    width: 110px;
  }
}
footer #footer-head .footer-info p {
  margin-top: 20px;
}
@media screen and (max-width: 1600px) {
  footer #footer-head .fotoer-siteMap {
    padding-left: 15px;
  }
}
footer #footer-head .fotoer-siteMap ul li {
  font-size: 18px;
  border-bottom: 2px dashed #ccc;
  padding: 13px 0;
}
footer #footer-head .fotoer-siteMap ul li:last-child {
  border-bottom: unset;
}
footer #footer-head .fotoer-siteMap ul li a {
  padding-left: 20px;
}
footer #footer-head .fotoer-siteMap ul li a span {
  position: relative;
  padding-left: 35px;
}
footer #footer-head .fotoer-siteMap ul li a span::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/item01@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  left: 3px;
  top: 50%;
  width: 25px;
  height: 15px;
  z-index: 0;
  transform: translate(0, -50%);
}
footer #footer-foot {
  background-color: #f19ebc;
  padding: 10px 0;
}
footer #footer-foot .copyright {
  text-align: center;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 520px) {
  footer #footer-foot .copyright {
    font-size: 14px;
  }
}

* {
  letter-spacing: 0.05rem;
}

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

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #231815;
  transition: all 0.2s;
}
a:focus {
  text-decoration: none;
  color: #231815;
  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: 22px;
  /*レスポンシブタイプセッティングの指定*/
  line-height: 1.6;
  color: #231815;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 20px;
  }
}
@media screen and (max-width: 820px) {
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 520px) {
  html {
    font-size: 16px;
  }
}
@media print {
  html {
    zoom: 0.55;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*  main  */
.wrapper {
  margin: 0 auto;
  max-width: 1600px;
  width: 90%;
}

@media print {
  .fadein {
    opacity: 1 !important;
  }
}

p {
  transform: rotateZ(0.03deg);
}

.w-100 {
  width: 100%;
}

.textcenter {
  text-align: center;
}

.button01 {
  background-color: #ffdd33;
  border: 3px solid #231815;
  border-radius: 60px;
  color: #231815;
  display: block;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  max-width: 460px;
  margin: 0 auto;
  color: #231815;
  font-size: 28px;
  box-shadow: 5px 5px #231815;
  transform: rotateZ(0.03deg);
}
@media screen and (max-width: 1024px) {
  .button01 {
    font-size: 24px;
    max-width: 450px;
  }
}
@media screen and (max-width: 820px) {
  .button01 {
    max-width: 400px;
    font-size: 20px;
  }
}
@media screen and (max-width: 520px) {
  .button01 {
    font-size: 16px;
    padding: 15px 0;
    max-width: 360px;
  }
}
.button01:hover {
  opacity: 1;
  box-shadow: none;
  transform: translate(5px, 5px) rotateZ(0.03deg);
}
.button01 span {
  position: relative;
  padding-right: 40px;
  display: inline-block;
}
@media screen and (max-width: 520px) {
  .button01 span {
    padding-right: 30px;
  }
}
.button01 span::after {
  background-image: url(../images/top/y_btn@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: unset;
  border-radius: unset;
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 0;
  width: 25px;
  height: 25px;
  border: unset;
}
@media screen and (max-width: 520px) {
  .button01 span::after {
    width: 21px;
    height: 19px;
  }
}

.pageLink {
  display: flex;
  justify-content: center;
  background-color: #fff7a9;
  padding: 30px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .pageLink {
    position: fixed;
    top: unset;
    bottom: 0;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
@media print {
  .pageLink {
    position: relative;
  }
}
.pageLink a {
  border-right: 2px solid #333;
  padding-right: 80px;
  font-size: 24px;
  padding-left: 40px;
  transform: rotateZ(0.03deg);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .pageLink a {
    width: 33%;
    margin: 0;
    padding: 20px 0;
    line-height: 1.3;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 820px) {
  .pageLink a {
    padding: 10px 0;
  }
}
@media screen and (max-width: 520px) {
  .pageLink a {
    font-size: 14px;
  }
}
.pageLink a:first-child {
  border-left: 2px solid #333;
  padding-left: 40px;
}
@media screen and (max-width: 1024px) {
  .pageLink a:first-child {
    padding-left: 0;
    border-left: unset;
  }
}
@media screen and (max-width: 1024px) {
  .pageLink a:last-child {
    border-right: unset;
  }
}
.pageLink a::before, .pageLink a::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 16px;
  border-radius: 9999px;
  background-color: #e60012;
  transform-origin: 50% calc(100% - 2px);
  right: 48px;
  top: 33%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1024px) {
  .pageLink a::before, .pageLink a::after {
    display: none;
  }
}
.pageLink a::before {
  transform: rotate(45deg);
}
.pageLink a::after {
  transform: rotate(-45deg);
}

.flex {
  display: flex;
  justify-content: space-between;
}

.fadein02 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  will-change: transform, opacity;
}

.fadein02.show {
  opacity: 1;
  transform: translateY(0);
}

.popupitem {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  will-change: transform, opacity;
}
.popupitem.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: popUp 0.7s ease forwards;
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  50% {
    opacity: 1;
    transform: translateY(-40px);
  }
  75% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/****************/
/*  ディスプレイ幅表示制御  */
/****************/
@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: 820px) {
  .ipad__hide {
    display: none !important;
  }
}
@media screen and (min-width: 821px) {
  .ipad__show {
    display: none !important;
  }
}
@media screen and (max-width: 650px) {
  .smp600__hide {
    display: none !important;
  }
}
@media screen and (min-width: 651px) {
  .smp600__show {
    display: none !important;
  }
}
@media screen and (max-width: 520px) {
  .smp__hide {
    display: none !important;
  }
}
@media screen and (min-width: 521px) {
  .smp__show {
    display: none !important;
  }
}
@media print {
  .smp__show {
    display: none !important;
  }
  .ipad__show {
    display: none !important;
  }
  .spc__show {
    display: none !important;
  }
}
/****************/
/*
改ページ記述例
#section00{
  page-break-before:always;
}
*/
/****************/