@charset "UTF-8";

/**
 * オリジナルcss
 */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--go);
  color: var(--c1);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

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

a,
a:hover,
a:link,
a:visited {
  color: var(--c1);
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

.inner {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

strong {
  color: var(--c3);
}

.view_sp {
  display: none;
}

.br_sp {
  display: none;
}

.br_pc {
  display: inline;
}

/* content header */

.content_header {
  margin-bottom: 48px;
  h2 {
    margin: 0;
    font-size: 4rem;
    text-align: center;
  }
}

/* more link */

.more_link {
  width: 340px;
  height: 72px;
  border: 1px solid var(--c1);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  a {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    z-index: 10;
    span {
      position: absolute;
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  a::before {
    content: "";
    display: block;
    transition: 0.3s;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    right: 53px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    z-index: 2;
  }
  a::after {
    content: "";
    display: block;
    transition: 0.3s;
    background: var(--c1);
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 16px;
    z-index: 1;
  }
}

.more_link::before {
  content: "";
  width: 340px;
  height: 72px;
  background: var(--c1);
  position: absolute;
  top: 0;
  right: 100%;
  transition: 0.3s;
  z-index: 1;
}

.more_link::after {
  content: "";
  width: 340px;
  height: 72px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 1;
}

.more_link:hover {
  a {
    color: #fff;
  }
  a:before {
    right: 48px;
  }
}

.more_link:hover::before {
  right: 0;
}

.more_link:hover::after {
  left: 100%;
}

/* detail_link */

.detail_link {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 16px;
  margin-left: auto;
  margin-right: 0;
  a {
    padding: 6px 48px 6px 0;
    font-size: 1.4rem;
    text-decoration: none;
  }
  a::before {
    content: "";
    display: block;
    transition: 0.3s;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    z-index: 2;
  }
  a::after {
    content: "";
    display: block;
    transition: 0.3s;
    background: var(--c1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 16px;
    z-index: 1;
  }
}

@media screen and (max-width: 1110px) {
}
@media screen and (max-width: 740px) {
  .view_pc {
    display: none;
  }
  .view_sp {
    display: block;
  }
  .content_header {
    h2 {
      font-size: 2.4rem;
    }
  }
  .br_pc {
    display: none;
  }
  .br_sp {
    display: inline;
  }
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 500px) {
}
