@charset "UTF-8";
.rts-header {
  border-bottom: 1px solid #ccc;
  position: fixed;
  width: 100%;
  line-height: 1;
  z-index: 100;
  transition: 0.5s background-color;
  background: #fff;
}
.rts-header.scrolled {
  background-color: rgb(255, 255, 255);
}
.rts-header-wrapper {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .rts-header-wrapper {
    width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.rts-header-logo {
  margin: 20px 0 19px 0;
}
.rts-header-logo a {
  text-decoration: none;
}
.rts-header-logo a img {
  height: 24px;
}
@media screen and (min-width: 768px) {
  .rts-header-logo {
    margin: 24px 0;
  }
  .rts-header-logo a {
    display: block;
    line-height: 0;
  }
  .rts-header-logo a img {
    height: 32px;
  }
}
.rts-header .container {
  display: flex;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .rts-header .container {
    display: block;
  }
}
.rts-header .g-menu {
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 105;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 80px 8px 0 72px;
  transition: opacity 0.3s;
}
.rts-header .g-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rts-header .g-menu ul li {
  margin-bottom: 40px;
}
.rts-header .g-menu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 700;
}
.rts-header .g-menu ul li.g-menu-lang a {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .rts-header .g-menu {
    position: relative;
    pointer-events: initial;
    top: 0;
    width: auto;
    height: auto;
    padding: 0;
  }
  .rts-header .g-menu ul {
    display: flex;
  }
  .rts-header .g-menu ul li {
    height: 80px;
    margin: 0 24px 0 0;
    padding: 22px 0 0 0;
    border-bottom: 12px solid #fff;
  }
  .rts-header .g-menu ul li a {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
  }
  .rts-header .g-menu ul li a:hover {
    color: #CF000E;
  }
  .rts-header .g-menu ul li.current {
    border-color: #999;
  }
  .rts-header .g-menu ul li.g-menu-home {
    display: none;
  }
  .rts-header .g-menu ul li.g-menu-contact {
    margin-right: 32px !important;
    margin-right: 0;
  }
  .rts-header .g-menu ul li:last-child {
    margin-right: 0;
  }
}
.rts-header .menu-toggle {
  position: relative;
  z-index: 110;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: 8px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .rts-header .menu-toggle {
    display: none;
  }
}
.rts-header .menu-toggle > div {
  position: absolute;
  top: 24px;
  left: 24px;
  transform: scale(0.75);
}
@media screen and (min-width: 768px) {
  .rts-header .menu-toggle > div {
    display: none;
  }
}
.rts-header .menu-toggle > div::before {
  content: " ";
  width: 40px;
  height: 2px;
  position: absolute;
  transform: translate(-50%, -1px) rotate(0);
  top: 4px;
  left: 0;
  background: #333;
  transition: 0.3s;
}
.rts-header .menu-toggle > div::after {
  content: " ";
  width: 40px;
  height: 2px;
  position: absolute;
  transform: translate(-50%, -1px) rotate(0);
  top: -4px;
  left: 0;
  background: #333;
  transition: 0.3s;
}
.rts-header.toggleIn .menu-toggle div::before {
  animation: 0.3s both toggleInAnimationB;
}
.rts-header.toggleIn .menu-toggle div::after {
  animation: 0.3s both toggleInAnimationA;
}
.rts-header.toggled .menu-toggle div::before {
  animation-direction: reverse;
  transform: translate(-50%, -1px) rotate(-45deg);
  top: 0;
}
.rts-header.toggled .menu-toggle div::after {
  animation-direction: reverse;
  transform: translate(-50%, -1px) rotate(45deg);
  top: 0;
}
.rts-header.toggled::before {
  animation-direction: reverse;
  left: -100svw;
  opacity: 1;
  width: 300svw;
}
.rts-header.toggled .g-menu {
  opacity: 1;
  pointer-events: all;
}
.rts-header.toggled.toggleIn .g-menu {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .rts-header {
    min-width: 1240px;
  }
  .rts-header .g-menu {
    /* PCメニューは表示 */
    opacity: 1;
  }
}

.rts-content-localnavi {
  margin: 0 30px 64px 30px;
}
.rts-content-localnavi-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rts-content-localnavi-list li {
  border-top: 1px solid #000;
}
.rts-content-localnavi-list li a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: #000;
  position: relative;
}
.rts-content-localnavi-list li a::after {
  content: "↓";
  position: absolute;
  right: 8px;
}
@media screen and (min-width: 768px) {
  .rts-content-localnavi {
    width: 1200px;
    margin: 0 auto;
  }
  .rts-content-localnavi-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .rts-content-localnavi-list li {
    width: 30%;
    margin-bottom: 16px;
  }
  .rts-content-localnavi-list li a:hover {
    text-decoration: underline;
  }
  .rts-content-localnavi-list.division4 li {
    width: 22%;
  }
}

@keyframes gMenuInAnimation {
  from {
    left: 0;
    width: 1svw;
  }
  to {
    left: -100svw;
    width: 300svw;
  }
}
@keyframes toggleInAnimationA {
  from {
    transform: translate(-50%, -1px) rotate(0);
    top: -4px;
  }
  25% {
    transform: translate(-50%, -1px) rotate(-45deg);
    top: 0;
  }
  75% {
    transform: translate(-50%, -1px) rotate(-45deg);
    top: 0;
  }
  to {
    transform: translate(-50%, -1px) rotate(-135deg);
    top: 0;
  }
}
@keyframes toggleInAnimationB {
  from {
    transform: translate(-50%, -1px) rotate(0);
    top: 4px;
  }
  25% {
    transform: translate(-50%, -1px) rotate(-45deg);
    top: 0;
  }
  75% {
    transform: translate(-50%, -1px) rotate(-45deg);
    top: 0;
  }
  to {
    transform: translate(-50%, -1px) rotate(-45deg);
    top: 0;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 16px;
  margin-bottom: 32px;
  background: url(../img/common/h-line.png) no-repeat bottom left;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
  }
}

h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

h4, h5, h6 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.rts-footer {
  padding: 48px 20px;
  text-align: center;
  background: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .rts-footer {
    /* footer */
    min-width: 1240px;
    padding: 80px 0;
  }
}
.rts-footer-menu-logo {
  margin-bottom: 64px;
}
.rts-footer-menu-logo a {
  display: inline-block;
}
.rts-footer-menu-logo a img {
  height: 32px;
}
.rts-footer-menu-list {
  margin: 0;
  padding: 0;
}
.rts-footer-menu-list li {
  list-style: none;
}
.rts-footer-menu-list li a {
  color: #333;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .rts-footer-menu {
    /* menu */
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
    text-align: left;
  }
  .rts-footer-menu-logo {
    margin-bottom: 32px;
  }
  .rts-footer-menu-logo a img {
    height: 32px;
  }
  .rts-footer-menu-list {
    padding-bottom: 160px;
  }
  .rts-footer-menu-list li {
    display: inline-block;
  }
  .rts-footer-menu-list li a {
    margin: 0 24px 0 0;
  }
  .rts-footer-menu-list li a:hover {
    text-decoration: underline;
  }
}
.rts-footer-pp {
  text-align: center;
  margin-bottom: 48px;
}
.rts-footer-pp a {
  color: #333;
  font-size: 1rem;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .rts-footer-pp {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  .rts-footer-pp a:hover {
    text-decoration: underline;
  }
}
.rts-footer-copyright {
  font-size: 0.75rem;
  margin-bottom: 64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rts-footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
  }
}

* {
  box-sizing: border-box;
}

html[lang=ja] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
}

body {
  margin: 0;
  background: #fff;
  min-width: 375px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

html {
  scroll-padding-top: 64px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}

.site-main {
  padding-top: 64px; /* fixed navi */
}
.site-main p {
  font-size: 1rem;
  margin: 0 0 32px 0;
  line-height: 1.75;
}
.site-main p.rts-note {
  font-size: 0.875rem;
}
.site-main picture {
  line-height: 1;
}
.site-main img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .site-main {
    min-width: 1200px;
    padding: 80px 0;
  }
  .site-main p {
    margin: 0 0 48px 0;
    line-height: 1.75;
  }
}

.rts-title {
  background: #222;
  color: #fff;
  position: relative;
  width: 100%;
}
.rts-title-box {
  position: absolute;
  top: 0;
  padding: 24px 20px;
  z-index: 10;
}
.rts-title-box .title-main {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.rts-title-box .title-sub {
  font-size: 0.875rem;
  font-weight: 400;
}
.rts-title-photo {
  display: block;
  width: 100%;
}
.rts-title-photo img {
  display: block;
}
@media screen and (min-width: 768px) {
  .rts-title {
    min-width: 1240px;
    max-height: 688px;
    overflow: hidden;
  }
  .rts-title-box {
    width: 1240px;
    padding: 48px 20px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .rts-title-box .title-main {
    font-size: 3rem;
    margin-bottom: 24px;
  }
  .rts-title-box .title-sub {
    font-size: 1.25rem;
  }
}

.rts-content {
  padding: 48px 0;
}
.rts-content-container {
  padding: 0 20px;
}
.rts-content:last-child {
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .rts-content {
    padding: 80px 0;
    min-width: 1240px;
  }
  .rts-content-container {
    width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.gray {
  background: #f8f8f8;
}

.gray2 {
  background: #f0f0f0;
}

.gray3 {
  background: #f5f5f5;
}

dl.rts-table {
  border-top: 1px solid #ccc;
}
dl.rts-table dt {
  padding: 16px 0 8px 0;
  font-weight: 700;
}
dl.rts-table dd {
  margin: 0;
  line-height: 1.75;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  dl.rts-table {
    display: flex;
    flex-wrap: wrap;
  }
  dl.rts-table dt {
    width: 30%;
    padding: 16px 0;
    font-weight: 400;
    border-bottom: 1px solid #ccc;
  }
  dl.rts-table dd {
    width: 70%;
    padding: 16px 0;
  }
}

/* News, Policy */
.rts-news-index .rts-title, .rts-news-article .rts-title, .rts-contact .rts-title, .rts-policy .rts-title {
  background: #fff;
  color: #333;
  border-bottom: 1px solid #ccc;
}
.rts-news-index .rts-title-box, .rts-news-article .rts-title-box, .rts-contact .rts-title-box, .rts-policy .rts-title-box {
  position: static;
}
.rts-news-index .rts-title-box .title-main, .rts-news-article .rts-title-box .title-main, .rts-contact .rts-title-box .title-main, .rts-policy .rts-title-box .title-main {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .rts-news-index .rts-title-box, .rts-news-article .rts-title-box, .rts-contact .rts-title-box, .rts-policy .rts-title-box {
    position: static;
    margin: 0 auto;
    left: unset;
    transform: unset;
  }
  .rts-news-index .rts-title-box .title-main, .rts-news-article .rts-title-box .title-main, .rts-contact .rts-title-box .title-main, .rts-policy .rts-title-box .title-main {
    font-size: 3rem;
  }
}

.rts-button {
  background: #222;
  border-radius: 32px;
  color: #fff;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 24px 0;
  text-align: center;
  text-decoration: none;
  width: 240px;
  position: relative;
}
.rts-button:hover {
  background: #000;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .rts-button {
    font-size: 1.125rem;
    width: 320px;
    padding: 23px 0;
  }
}

.local-navi-list {
  list-style: none;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 32px 24px;
  margin: 0;
}
.local-navi-list li {
  margin-bottom: 20px;
}
.local-navi-list li:last-child {
  margin-bottom: 0;
}
.local-navi-list li a {
  padding-left: 28px;
  background: url(../img/common/arrow-local-sp.png) no-repeat 0 50%;
  text-decoration: none;
  color: #333;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .local-navi-list {
    display: flex;
  }
  .local-navi-list li {
    margin-bottom: 0;
    width: 33%;
  }
  .local-navi-list li a:hover {
    text-decoration: underline;
  }
}

.rts-back-navi {
  text-align: center;
  margin: 64px 0;
}
.rts-back-navi-link {
  background: url(../img/common/arrow-back.svg) no-repeat;
  background-size: 28px;
  color: #333;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  height: 28px;
  padding-left: 36px;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .rts-back-navi {
    margin: 80px 0;
  }
  .rts-back-navi-link {
    background-size: 40px;
    font-size: 1.5rem;
    height: 40px;
    padding-left: 56px;
    padding-top: 2px;
  }
  .rts-back-navi-link:hover {
    text-decoration: underline;
  }
}

.to-pagetop {
  position: fixed;
  bottom: 16px;
  right: 16px;
}
.to-pagetop img {
  width: 40px;
}
.to-pagetop :hover {
  cursor: pointer;
}
.to-pagetop.is-shown {
  display: block;
}
@media screen and (min-width: 768px) {
  .to-pagetop {
    width: 48px;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: inline;
  }
}

.no-disp {
  display: none;
}

.img-bg {
  background: #222;
}

.wipein {
  transition: 0.75s clip-path;
  clip-path: inset(0 100% 0 0);
}

.wipein img {
  width: 100%;
}

/*要素が見えたときの見え方*/
.show {
  clip-path: inset(0 0 0 0); /*クリップマスクを広げる*/
}

/*# sourceMappingURL=style.css.map */
