@charset "UTF-8";
/* header */
header {
  background-color: #000;
  position: fixed;
  width: 100%;
  z-index: 999;
}
@media print {
  header {
    position: static;
  }
}
header .header-inner {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .sp_nav-btn {
    transition: 0.3s;
  }
  header .header-inner .icon-animation {
    width: 50px;
    height: 50px;
    display: block;
    cursor: pointer;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #ff6699;
  }
  header .header-inner .icon-animation span {
    width: 28px;
    height: 2px;
    display: block;
    background: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -12px;
    margin-top: -7px;
    transition: all 0.3s;
    transform: rotate(0deg);
  }
  header .header-inner .icon-animation .top {
    transform: translateY(-8px);
  }
  header .header-inner .icon-animation .bottom {
    transform: translateY(8px);
  }
  header .header-inner .icon-animation:before {
    content: "MENU";
    display: block;
    position: absolute;
    left: 6px;
    letter-spacing: 0;
    bottom: 2px;
    color: #000;
    font-size: 11px;
    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: 4px;
    width: 46px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-inner .logo {
    padding: 12px 0;
  }
}
header .header-inner .logo a span {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  header .header-inner #gNav {
    background: #ffff00;
    display: none;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 50px;
    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;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  header .header-inner #gNav ul li a {
    padding: 0;
    color: #000;
  }
}
header .header-inner #gNav ul li a span {
  font-weight: bold;
  font-size: 20px;
}
@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 #000;
    border-right: 1px solid #000;
    content: "";
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    width: 10px;
  }
}

/*  footer  */
footer {
  background-color: #fff;
}
footer #footer-head {
  padding: 60px 0;
}
footer #footer-head .notice-box {
  background-color: #f5f5f5;
  border: 2px solid #000;
  padding: 55px;
  width: 100%;
  margin: 40px auto 150px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  footer #footer-head .notice-box {
    padding: 35px;
    margin: 40px auto 90px;
  }
}
@media screen and (max-width: 480px) {
  footer #footer-head .notice-box {
    padding: 25px;
    margin: 0px auto 40px;
  }
}
footer #footer-head .notice-box::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, black, black 2px, transparent 2px, transparent 6px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
footer #footer-head .notice-box h2 {
  background: linear-gradient(to bottom, transparent 55%, #ffff38 55%);
  color: #000;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  footer #footer-head .notice-box h2 {
    font-size: 24px;
  }
}
footer #footer-head .notice-box p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 8px;
  text-align: left;
  text-indent: -1.4em;
  padding-left: 1.4em;
}
@media screen and (max-width: 480px) {
  footer #footer-head .notice-box p {
    font-size: 14px;
    text-indent: -1.3em;
    padding-left: 1.3em;
  }
}
footer #footer-head .footer-info {
  text-align: center;
}
footer #footer-head .footer-info p {
  margin-bottom: 10px;
}
footer #footer-head .footer-info .footer-logo {
  font-size: 0;
  display: inline-block;
}
footer #footer-head .footer-info .footer-name {
  margin-bottom: 30px;
}
footer #footer-foot {
  background-color: #ff6699;
  padding: 15px 0;
}
footer #footer-foot .copyright {
  text-align: center;
  color: #fff;
}
footer .scrollArea {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media screen and (max-width: 480px) {
  footer .scrollArea {
    width: 50%;
  }
}
@media print {
  footer .scrollArea {
    display: none !important;
  }
}
footer .scrollArea.show {
  opacity: 1;
  visibility: visible;
}
footer .link-area .close {
  position: absolute;
  right: -10px;
  top: -20px;
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  footer .link-area .close {
    top: -11px;
  }
}
footer .hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
footer .link-area > div {
  width: 200px;
  position: relative;
  right: 0;
  transition: all 0.3s;
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  footer .link-area > div {
    width: 100%;
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

* {
  letter-spacing: 0.05rem;
}

picture source,
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: 16px;
  /*レスポンシブタイプセッティングの指定*/
  line-height: 1.6;
  color: #333;
}

body {
  margin: 0;
  padding: 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: normal;
}

.en {
  font-family: "Outfit", sans-serif;
}

.outfit {
  font-family: "Outfit", sans-serif;
  font-weight: normal;
}

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

.width1000 {
  margin: 0 auto;
  max-width: 1000px;
}

.button01 {
  background-color: #63f;
  border: 2px solid #63f;
  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;
  z-index: -1;
}
.button01:hover {
  background-color: #fff;
  color: #63f;
  opacity: 1;
}
.button01:hover:after {
  border-top: 2px solid #63f;
  border-right: 2px solid #63f;
}

.sectionTitle {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sectionTitle {
    width: 75%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .sectionTitle {
    width: 85%;
  }
}

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

.exText {
  color: #5b5b5b;
  font-size: 14px;
}
.exText p {
  text-indent: -1em;
  padding-left: 1em;
}

/*  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: #63f;
}

#page_header {
  text-align: center;
  margin-top: 50px;
}
#page_header h1 {
  color: #63f;
  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;
}

/****************/
/*  ディスプレイ幅表示制御  */
/****************/
@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;
  }
}
/****************/
/*
改ページ記述例
#section00{
  page-break-before:always;
}
*/
/****************/