/* TABLE OF CONTENTS
------------------------------------------------------------
* part
* MV
* header
* footer

------------------------------------------------------------ */
/* =========================
// variable
// ========================= */
/*====================================
	part
====================================*/
.wrapper__inner {
  margin: 0 auto;
  padding: 4rem 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .wrapper__inner {
    padding: 3.5rem 1rem 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .wrapper__inner {
    padding: 2rem 1rem 2rem;
  }
}
.wrapper-max {
  max-width: calc(1000px + 2rem);
}
.wrapper-medium {
  max-width: calc(860px + 2rem);
}
.wrapper-small {
  max-width: calc(760px + 2rem);
}

section:last-child .wrapper__inner {
  padding-bottom: 4rem;
}

.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}

.font-XS {
  font-size: 0.6em;
}
.font-S {
  font-size: 0.9em;
}
.font-L {
  font-size: 1.2em;
}
.font-XL {
  font-size: 1.4em;
}
.font__color--main {
  color: var(--main-color);
}

@media screen and (max-width: 580px) {
  .pc-only {
    display: none;
  }
}

.tb-under {
  display: none;
}
@media screen and (max-width: 768px) {
  .tb-under {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 580px) {
  .sp-only {
    display: block;
  }
}

.sns-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sns-links li img {
  width: 30px;
  aspect-ratio: 1;
}

.pagetop {
  position: fixed;
  right: 1rem;
  background-color: var(--accent-color);
  width: 3.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: 1rem;
  cursor: pointer;
  z-index: 10;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pagetop svg {
  fill: var(--text-color);
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
}

/*====================================
	header
====================================*/
.header {
  position: relative;
}
.header__inner {
  padding: 1rem 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0.8rem 1rem;
  }
}
.header__logo a {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: bold;
}
.header__logo img {
  max-width: clamp(100px, 20vw, 190px);
}

.header__nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__nav ul a {
  color: var(--text-color);
}

@media screen and (max-width: 1024px) {
  body.overflow {
    height: 100%;
    overflow: hidden;
  }
  .header__nav-inner {
    position: absolute;
    top: 0;
    background: var(--bg-color);
    width: 100%;
    height: 100vh;
    text-align: left;
    box-sizing: border-box;
    transition: 0.2s;
    left: 0;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  .header__nav-inner.open {
    opacity: 1;
    z-index: 9;
    visibility: visible;
  }
  .header__nav-inner .header__nav {
    width: 100%;
    padding: 1rem;
  }
  .header__nav-inner .header__nav ul {
    flex-direction: column;
    justify-content: center;
    gap: 0;
    height: 100%;
  }
  .header__nav-inner .header__nav ul li {
    width: 100%;
  }
  .header__nav-inner .header__nav ul li a {
    padding: 0.8rem 1rem;
    width: 100%;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-color);
  }
  .header__nav-inner .sns-links {
    gap: 1.25rem;
    width: 100%;
    padding: 1rem 2rem;
  }
}
.hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    aspect-ratio: 1;
    background-color: var(--main-color);
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 10;
  }
  .hamburger span {
    position: absolute;
    height: 2px;
    max-width: 35px;
    width: calc(100% - 35px);
    background-color: #fff;
    transition: 0.3s;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .hamburger span:first-of-type {
    top: 36.5%;
  }
  .hamburger span:nth-child(2) {
    top: 50%;
  }
  .hamburger span:last-of-type {
    top: 63.5%;
  }
  .hamburger.active {
    background-color: var(--gray-color);
  }
  .hamburger.active span {
    background-color: var(--text-color);
  }
  .hamburger.active span:first-of-type {
    width: calc(100% - 40px);
    top: 50%;
    left: 39%;
    transform: rotate(45deg) translateY(50%);
  }
  .hamburger.active span:nth-child(2) {
    display: none;
  }
  .hamburger.active span:last-of-type {
    width: calc(100% - 40px);
    top: 53%;
    left: 39%;
    transform: rotate(-45deg) translateY(-50%);
  }
}

/*====================================
	MV
====================================*/
.mv {
  position: relative;
  height: 80vh;
  min-height: 650px;
}
.mv__slider {
  height: 100%;
}
.mv__slider li {
  height: 100%;
}
.mv__slider li img {
  width: 100%;
  height: 100%;
}
.mv__txt {
  position: absolute;
  color: white;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .mv__txt {
    left: 0;
    padding: 0 1rem;
  }
}
.mv__txt .fv-text-area {
  margin-top: 1rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .mv__txt .fv-text-area {
    margin-top: 1rem;
    font-size: clamp(16px, 2vw, 1.25rem);
  }
}
.mv__txt .fv-button a {
  background-color: var(--accent-color);
  color: var(--text-color);
  padding: 0.8em 3em;
  border-radius: 3rem;
  text-shadow: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: bold;
  paint-order: unset;
}
.mv::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  top: 0;
}

/*====================================
	footer
====================================*/
.footer__info {
  background-color: var(--main-color);
}
.footer__info .wrapper__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .footer__info .wrapper__inner {
    flex-direction: column;
    align-items: baseline;
  }
}
.footer__info-left {
  color: white;
}
.footer__info-left address {
  font-size: max(13px, 0.8rem);
}
@media screen and (max-width: 768px) {
  .footer__info-right {
    width: 100%;
    margin-top: 1rem;
    border-top: 1px solid white;
    padding-top: 1rem;
  }
}
.footer__info-right nav {
  font-size: max(13px, 0.8rem);
}
.footer__info-right nav ul {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__info-right nav ul li a {
  color: white;
}
.footer__info-right ul.sns-links {
  justify-content: flex-end;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__info-right ul.sns-links {
    justify-content: flex-start;
  }
}
.footer__info-right ul.sns-links li img {
  width: 25px;
  aspect-ratio: 1;
}

.copyright {
  background-color: var(--main-color);
  font-size: 0.7rem;
  text-align: center;
  padding: 1em 1rem;
  color: white;
}

/*====================================
	page
====================================*/
.mv-page {
  padding: 5.5rem 1rem;
  text-align: center;
  background-color: var(--main-color);
  color: white;
}
@media screen and (max-width: 768px) {
  .mv-page {
    padding: 4.5rem 1rem;
  }
}

.pankuzu {
  padding: 0.5rem 70px;
  border-bottom: 1px solid var(--gray-color);
}
@media screen and (max-width: 1024px) {
  .pankuzu {
    padding: 0.5rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .pankuzu {
    overflow-x: scroll;
  }
}
.pankuzu nav.breadcrumb {
  font-size: 0.85rem;
}
@media screen and (max-width: 768px) {
  .pankuzu nav.breadcrumb {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.pankuzu nav.breadcrumb a {
  text-decoration: underline;
}

/*====================================
	post
====================================*/
.post-archive {
  display: flex;
  gap: 3rem 5vw;
  justify-content: space-between;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .post-archive {
    flex-direction: column;
  }
}
.post-archive ul.sidebar {
  flex: none;
  display: flex;
  flex-direction: column;
}
.post-archive ul.sidebar li > ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 0.5rem;
}
.post-archive ul.sidebar li > ul a {
  color: var(--text-color);
  text-decoration: underline;
}

.category-post-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .category-post-list {
    grid-template-columns: 1fr 1fr;
  }
}
.category-post-list .post-item {
  position: relative;
}
.category-post-list .post-item a {
  color: var(--text-color);
  width: 100%;
}
.category-post-list .post-item a:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .category-post-list .post-item a:hover {
    transform: none;
  }
}
.category-post-list .post-item a img {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}
.category-post-list .post-item a h3 {
  font-size: 1rem;
  padding-top: 0.5rem;
}
.category-post-list .post-meta {
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 1000px;
  padding: 3rem 1rem 0;
  justify-content: center;
  margin: 0 auto;
}
.pagination .page-numbers {
  width: 2.5rem;
  aspect-ratio: 1;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--gray-color);
}
.pagination .page-numbers.current {
  background-color: var(--main-color);
  color: white;
}

.post__single-meta {
  border-top: 1px solid var(--gray-color);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}
.post__single-area {
  display: flex;
  margin-top: 2rem;
  gap: 1rem 3rem;
}
.post__single .single-area__img {
  flex: 1;
  width: 100%;
}
.post__single .single-area__img img {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 16/9;
}
.post__single .single-area__content {
  flex: 1.5;
}
.post__single .wp-block-buttons {
  text-align: center;
}
.post__single .wp-block-buttons .button {
  background-color: var(--accent-color);
  padding: 0.8em 3em;
  border-radius: 3rem;
  text-shadow: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: bold;
  paint-order: unset;
}

/*------------------------------------------------------------
 * editor
------------------------------------------------------------*/
.wp-block-cover {
  padding: 0;
  min-height: auto !important;
}

.wp-block-cover__inner-container {
  max-width: calc(1000px + 2rem);
  margin: 0 auto;
  padding: 4.5rem 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .wp-block-cover__inner-container {
    padding: 3.5rem 1rem 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-cover__inner-container {
    padding: 3rem 1rem 3rem;
  }
}

.ark-block-heading {
  color: var(--main-color);
}

h3.wp-block-heading {
  color: var(--main-color);
  border-left: 0.25em solid var(--main-color);
  padding-left: 0.5em;
}

h4.wp-block-heading {
  background-color: var(--main-light-color);
  padding: 0.25em 0.5em;
}

.wp-block-uagb-marketing-button a {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-color);
}

ol.wp-block-list {
  list-style: auto;
  padding-left: 1.5em;
  margin-bottom: 2rem;
}
ol.wp-block-list li:not(:first-child) {
  padding-top: 1rem;
}

ul.wp-block-list {
  list-style: auto;
  padding-left: 1.5em;
  margin-bottom: 2rem;
}
ul.wp-block-list li:not(:first-child) {
  padding-top: 1rem;
}
/*# sourceMappingURL=editor-style.css.map */