@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;800&family=Oswald:wght@600&family=Zen+Old+Mincho:wght@400;700;900&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1080px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
input[type=text], input[type=password], input[type=checkbox], input[type=email], input[type=radio], input[type=submit], input[type=button],
select, textarea {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  border: none;
  outline: 0;
}

button:focus {
  outline: none;
}
button:focus-visible {
  outline: none;
}
button:hover {
  outline: none;
}

textarea {
  resize: vertical;
}

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

a {
  text-decoration: none;
}

.is-pc-only {
  display: inline-block !important;
}
.is-pc-only_block {
  display: block !important;
}

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

@media screen and (max-width: 767px) {
  .is-pc-only {
    display: none !important;
  }
  .is-pc-only_block {
    display: none !important;
  }
  .is-sp-only {
    display: inline-block !important;
  }
  .is-sp-only_block {
    display: block !important;
  }
}
/*----------------------------------------------------------------------------
	wrapper
----------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow: hidden;
  background-image: url(../images/index/hero_bg.jpg);
  background-position: center top;
  background-repeat: repeat-y;
  background-color: transparent;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .wrapper {
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .wrapper::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    background-image: url(../images/common/article_bg.jpg);
    background-size: cover;
  }
}

.inner {
  max-width: 1040px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
  }
}

/*----------------------------------------------------------------------------
	c-parts
----------------------------------------------------------------------------*/
.c-opacity {
  transition: opacity 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (min-width: 768px) {
  .c-opacity:hover {
    opacity: 0.65;
  }
}

/*----------------------------------------------------------------------------
	official
----------------------------------------------------------------------------*/
.official .inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .official .inner {
    padding-top: 8vw;
    padding-bottom: 4.533vw;
  }
}
.official_links {
  position: relative;
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .official_links {
    padding-top: 12.8vw;
    padding-bottom: 12.8vw;
  }
}
.official_links::before {
  background-image: url(../images/common/official_ornament.png);
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  top: 0;
  left: 50%;
  width: 727px;
  height: 22px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .official_links::before {
    width: 94.667vw;
    height: 2.933vw;
  }
}
.official_links::after {
  background-image: url(../images/common/official_ornament.png);
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  bottom: 0;
  left: 50%;
  width: 727px;
  height: 22px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .official_links::after {
    width: 94.667vw;
    height: 2.933vw;
  }
}
.official_links a {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .official_links a {
    display: block;
    text-align: center;
  }
}
.official_links a img:first-child {
  width: 442px;
  margin-right: 23px;
}
@media screen and (max-width: 767px) {
  .official_links a img:first-child {
    width: 84.533vw;
    margin-right: 0;
    margin-bottom: 3.2vw;
  }
}
.official_links a img:last-child {
  width: 353px;
  filter: drop-shadow(9px 12px 10px rgba(0, 0, 0, 0.28));
}
@media screen and (max-width: 767px) {
  .official_links a img:last-child {
    width: 84.8vw;
    filter: drop-shadow(4px 6px 5px rgba(0, 0, 0, 0.28));
  }
}

/*----------------------------------------------------------------------------
	secondary
----------------------------------------------------------------------------*/
.secondary_logo {
  text-align: left;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .secondary_logo {
    text-align: center;
    margin-bottom: 5.333vw;
  }
}
.secondary_logo img {
  width: 198px;
  filter: invert(96%) sepia(97%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 767px) {
  .secondary_logo img {
    width: 35.467vw;
  }
}
.secondary .field {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  align-items: center;
  padding-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .secondary .field {
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
}
.secondary .secondary_box-tel, .secondary .secondary_box-address {
  display: -moz-flex;
  display: flex;
}
.secondary .secondary_box-tel span, .secondary .secondary_box-address span {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .secondary .secondary_box-tel span, .secondary .secondary_box-address span {
    font-size: 2.667vw;
  }
}
.secondary .secondary_box-tel span:first-child::before, .secondary .secondary_box-address span:first-child::before {
  content: "【";
}
.secondary .secondary_box-tel span:first-child::after, .secondary .secondary_box-address span:first-child::after {
  content: "】";
}
.secondary_box {
  display: -moz-flex;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .secondary_box {
    -moz-flex-direction: row;
    flex-direction: row;
  }
}
.secondary_box-address {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .secondary_box-address {
    margin-right: 1.333vw;
  }
}
.secondary_list {
  display: -moz-flex;
  display: flex;
}
@media screen and (max-width: 767px) {
  .secondary_list {
    -moz-justify-content: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 5.333vw;
    padding-left: 5.333vw;
    margin-bottom: 5.333vw;
  }
}
.secondary_list-item a {
  position: relative;
  display: block;
  padding-right: 12px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .secondary_list-item a {
    padding-right: 2.667vw;
    padding-left: 2.667vw;
  }
}
.secondary_list-item a::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.secondary_list-item a span {
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.12em;
  margin-right: -0.12em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .secondary_list-item a span {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .secondary_list-item:nth-child(3) a::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .secondary_list-item:nth-child(-n+3) {
    margin-bottom: 2.667vw;
  }
}
.secondary_list-item:last-child a::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

/*----------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------*/
.footer .inner {
  max-width: 1000px;
  padding-top: 30px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer .inner {
    padding-top: 4.533vw;
    padding-bottom: 3.2vw;
  }
}
.footer_copyright {
  text-align: center;
}
.footer_copyright span {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .footer_copyright span {
    font-size: 2.667vw;
  }
}
/*# sourceMappingURL=common.css.map */