@charset "UTF-8";
/* CSS Document */
/* -------------------------------------------------

Reset.css

------------------------------------------------- */
@media print {
  html,
  body {
    zoom: 0.8;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  color: #222;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
body * {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

a {
  outline: none;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
a:hover {
  transform: translateY(-5px);
}
a img {
  border-style: none;
  transition: 0.3s;
}

@media screen {
  .fade__0 {
    opacity: 0;
    transition: 1s;
  }
  .fade__B {
    opacity: 0;
    transition: 1s;
    transform: translate(0, 30px);
  }
  .fade__L {
    opacity: 0;
    transition: 1s;
    transform: translate(-20px, 0);
  }
  .fade__R {
    opacity: 0;
    transition: 1s;
    transform: rotate(10deg);
  }
  .fadeReset {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}
@media all and (min-width: 669px) {
  .sp {
    display: none;
  }
}
@media all and (min-width: 801px) {
  .md {
    display: none;
  }
}
@media all and (min-width: 961px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .ns {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .np {
    display: none;
  }
}
#wrapper img {
  width: 100%;
  vertical-align: middle;
}

header {
  width: 100%;
  height: 130px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 0 max(2.5vw, 15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.small {
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 800px) {
  header {
    height: 80px;
  }
}
header h1 {
  width: 320px;
}
@media screen and (max-width: 1200px) {
  header h1 {
    width: 230px;
  }
}
@media screen and (max-width: 800px) {
  header h1 {
    width: 170px;
  }
}
header nav {
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  header nav {
    letter-spacing: 0;
  }
}
header nav ul {
  display: flex;
}
@media screen and (max-width: 800px) {
  header nav ul {
    display: none;
  }
}
header nav ul li {
  margin-right: 35px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  header nav ul li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 960px) {
  header nav ul li {
    margin-right: 10px;
  }
}
header nav .contactBtn a {
  background-color: #2A4576;
  border-radius: 30px;
  padding: 18px 30px 13px;
  line-height: 100%;
}
@media screen and (max-width: 1200px) {
  header nav .contactBtn a {
    padding: 10px 20px 5px;
  }
}
@media screen and (max-width: 800px) {
  header nav .contactBtn a {
    padding: 10px 15px 5px;
  }
}
header nav .contactBtn a span {
  display: block;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}
header nav .spMenu {
  display: none;
}
@media screen and (max-width: 800px) {
  header nav .spMenu {
    display: block;
    width: 30px;
    margin-left: 15px;
  }
}

.menuCommon .closeBtn {
  width: 30px;
  position: absolute;
  right: max(2.5vw, 20px);
  top: 30px;
}
.menuCommon .rightContentsMenu {
  display: flex;
  flex-direction: column;
  color: #fff;
  min-height: 100%;
}
.menuCommon .rightContentsMenu nav {
  padding: 60px 30px 40px;
  text-align: center;
}
.menuCommon .rightContentsMenu nav h5 {
  width: 230px;
  margin: 0 auto 40px;
}
.menuCommon .rightContentsMenu nav ul {
  display: flex;
  flex-wrap: wrap;
  width: 250px;
  margin: 0 auto 20px;
}
.menuCommon .rightContentsMenu nav ul li {
  width: 50%;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-size: 1.2em;
  font-weight: 500;
}
.menuCommon .rightContentsMenu nav .contactBtn {
  margin-bottom: 30px;
}
.menuCommon .rightContentsMenu nav .contactBtn a {
  background-color: #2A4576;
  border-radius: 30px;
  padding: 15px 30px;
  line-height: 100%;
  letter-spacing: 2px;
  font-size: 1.05em;
  font-weight: 500;
}
.menuCommon .rightContentsMenu nav address {
  font-style: normal;
  margin-bottom: 10px;
}
.menuCommon .rightContentsMenu nav .tel small {
  display: inline-block;
}
.menuCommon .rightContentsMenu nav .tel a {
  font-size: 3.5rem;
}
.menuCommon .rightContentsMenu .photo {
  flex-grow: 2;
  min-height: 200px;
  background: url(../../top/images/mainimg.jpg) no-repeat center/cover;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuCommon .rightContentsMenu .photo {
    min-height: 100px;
  }
}

#contents .titleArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 600px;
  padding: 130px max(2.5vw, 20px) 0;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 1200px) {
  #contents .titleArea {
    height: 400px;
  }
}
@media screen and (max-width: 800px) {
  #contents .titleArea {
    height: 300px;
    padding-top: 80px;
  }
}
#contents .titleArea p.en {
  font-family: "Afacad", sans-serif;
  line-height: 100%;
  font-size: 8rem;
}
@media screen and (max-width: 1200px) {
  #contents .titleArea p.en {
    font-size: 6rem;
  }
}
@media screen and (max-width: 800px) {
  #contents .titleArea p.en {
    font-size: 4rem;
  }
}
#contents .titleArea p.en::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background-color: #fff;
  margin: 20px auto;
}
@media screen and (max-width: 800px) {
  #contents .titleArea p.en::after {
    margin: 10px auto;
  }
}
#contents .titleArea h2 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 3px;
}
@media screen and (max-width: 1200px) {
  #contents .titleArea h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 800px) {
  #contents .titleArea h2 {
    font-size: 1.6rem;
  }
}
#contents .moreBtn a {
  font-size: 2.2rem;
}
@media screen and (max-width: 1200px) {
  #contents .moreBtn a {
    font-size: clamp(14px, 1.8333333333vw, 100px);
  }
}
#contents .moreBtn a {
  font-family: "Afacad", sans-serif;
  line-height: 100%;
}
#contents .moreBtn a:hover {
  transform: translateY(0);
}
#contents .moreBtn a:hover::after {
  transform: translateX(5px);
}
#contents .moreBtn a::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: middle;
  margin-left: 10px;
  transition: 0.3s;
}
@media screen and (max-width: 668px) {
  #contents .moreBtn a::after {
    margin-left: 5px;
  }
}
#contents .moreBtn.b a::after {
  background-image: url(../images/icon_arrow_b.svg);
}
#contents .moreBtn.w a {
  color: #fff;
}
#contents .moreBtn.w a::after {
  background-image: url(../images/icon_arrow_w.svg);
}
#contents .textBtn a {
  border-radius: 30px;
  line-height: 100%;
  padding: 20px 30px;
  font-weight: 600;
}
#contents .textBtn.b a {
  background-color: #2A4576;
  color: #fff;
}
#contents .textBtn.w a {
  background-color: #fff;
  color: #2A4576;
}
#contents .pagination {
  margin-top: 50px;
}
@media screen and (max-width: 668px) {
  #contents .pagination {
    margin-top: 25px;
  }
}
#contents .pagination .page-numbers {
  display: flex;
  justify-content: center;
}
#contents .pagination .page-numbers li a, #contents .pagination .page-numbers li span {
  margin: 0 5px;
  border: 1px solid #ddd;
  display: block;
  width: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 668px) {
  #contents .pagination .page-numbers li a, #contents .pagination .page-numbers li span {
    width: 30px;
    line-height: 30px;
    margin: 0 2px;
  }
}
#contents .pagination .page-numbers li a.current, #contents .pagination .page-numbers li span.current {
  background-color: #2A4576;
  color: #fff;
  border: 1px solid #2A4576;
}
#contents .pagination .page-numbers li a.prev, #contents .pagination .page-numbers li a.next {
  font-size: 0.7em;
  color: #888;
}
#contents .pagination .page-numbers li a.prev::before, #contents .pagination .page-numbers li a.next::before {
  font-family: "Helvetica", "Arial", sans-serif;
}
#contents .pagination .page-numbers li a.prev:before {
  content: "◀";
}
#contents .pagination .page-numbers li a.next:before {
  content: "▶";
}
#contents .pagination .page-numbers li a:hover {
  background-color: #ddd;
}
#contents .notfoundTit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  padding: 130px max(2.5vw, 20px) 0;
  color: #fff;
  text-align: center;
  background-color: #999;
}
@media screen and (max-width: 800px) {
  #contents .notfoundTit {
    height: 250px;
    padding-top: 80px;
  }
}
#contents .notfoundTit p.en {
  font-family: "Afacad", sans-serif;
  line-height: 100%;
  font-size: 8rem;
}
@media screen and (max-width: 1200px) {
  #contents .notfoundTit p.en {
    font-size: 6rem;
  }
}
@media screen and (max-width: 800px) {
  #contents .notfoundTit p.en {
    font-size: 4rem;
  }
}
#contents .notfoundTit p.en::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background-color: #fff;
  margin: 20px auto;
}
@media screen and (max-width: 800px) {
  #contents .notfoundTit p.en::after {
    margin: 10px auto;
  }
}
#contents .notfoundArea {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1260px) {
  #contents .notfoundArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  #contents .notfoundArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
#contents .notfoundArea {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  #contents .notfoundArea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#contents .notfoundArea > h3 {
  font-size: 5rem;
}
@media screen and (max-width: 1200px) {
  #contents .notfoundArea > h3 {
    font-size: clamp(35px, 4.1666666667vw, 100px);
  }
}
#contents .notfoundArea > h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
#contents .notfoundArea > p.text {
  margin-bottom: 30px;
}

footer {
  background-color: #2A4576;
  color: #fff;
  text-align: center;
  padding: 50px max(5vw, 20px);
}
footer h6 {
  width: 330px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 960px) {
  footer h6 {
    width: 200px;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
footer ul .spacer {
  display: none;
}
@media screen and (max-width: 668px) {
  footer ul .spacer {
    display: block;
    width: 100%;
    height: 1px;
  }
}
footer ul li {
  font-weight: 500;
}
footer ul li:not(:first-child) {
  margin-left: 40px;
}
@media screen and (max-width: 800px) {
  footer ul li:not(:first-child) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 668px) {
  footer ul li:not(:first-child) {
    margin-left: 0;
  }
}
@media screen and (max-width: 668px) {
  footer ul li:nth-last-child(-n+2) {
    margin-top: 20px;
    width: calc(50% - 10px);
  }
  footer ul li:nth-child(2) {
    margin: 0 20px;
  }
  footer ul li:nth-last-child(2) {
    margin-right: 10px;
    text-align: right;
  }
  footer ul li:nth-last-child(1) {
    margin-left: 10px;
    text-align: left;
  }
}
footer address {
  font-style: normal;
  margin-bottom: 20px;
}
footer .tel small {
  display: inline-block;
}
footer .tel a {
  font-size: 5rem;
  font-family: "Afacad", sans-serif;
  line-height: 100%;
}
@media screen and (max-width: 960px) {
  footer .tel a {
    font-size: 3.5rem;
  }
}

input[type=text],
input[type=email],
input[type=date],
input[type=tel],
textarea,
select {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1em;
  appearance: none;
  outline: none;
  border: 0;
  background-color: #f5f5f5;
  color: #333;
  padding: 10px 20px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  outline: none;
}

input[type=submit],
input[type=button] {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 2px;
  appearance: none;
  outline: none;
  background-color: #2A4576;
  border: 0;
  border-radius: 50px;
  color: #fff;
  padding: 15px 20px;
  transition: 0.5s;
  cursor: pointer;
  display: block;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline: none;
}
input[type=submit]:hover,
input[type=button]:hover {
  transform: translateY(-5px);
}

::placeholder {
  color: #ccc;
}

.sizeXS {
  width: 30%;
  max-width: 150px;
}

.sizeS {
  width: 38%;
  max-width: 300px;
}

.sizeM {
  width: 65%;
}
@media screen and (max-width: 960px) {
  .sizeM {
    width: 100%;
  }
}

.sizeL {
  width: 100%;
}