@charset "UTF-8";
/*
 * 色の設定
 */
/*
 * BEM関連
 */
/*
 * clearfix
 */
body {
  font-size: 1.4rem;
  padding-top: 0;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-opened_modal {
  overflow: hidden;
}

.font_yu_gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.font_century_gothic {
  font-family: "Century Gothic", CenturyGothic, sans-serif;
}

.is-inner_content {
  width: 100%;
  max-width: 114.6rem;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

main {
  padding-top: 6rem;
}
@media (min-width: 768px) {
  main {
    padding-top: 9.7rem;
  }
}

.js-fade_up {
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}
.js-fade_up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 200;
  background-color: transparent;
}
@media (min-width: 768px) {
  .header {
    transform: translateY(2.5rem);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, opacity;
  }
}
.header.is-fixed {
  opacity: 1;
  background-color: #fff;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .header.is-fixed {
    transform: translateY(0);
  }
}
.header__content {
  position: relative;
  height: 6rem;
}
@media (min-width: 768px) {
  .header__content {
    height: 7.2rem;
  }
}
.header__content__nav {
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
  -webkit-align-items: center;
  align-items: center;
  text-align: right;
}
@media (min-width: 768px) {
  .header__content__nav {
    display: flex;
    right: 10.4rem;
  }
}
.header__content__nav > .is-link:after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 0;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  width: 100%;
  height: 0.1rem;
  background-color: #000;
  transition: transform 0.28s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header__content__nav > .is-link:hover:after {
  transform: scale(1);
  transform-origin: 0 50%;
}
.header__content__nav .is-link {
  margin-left: 6rem;
  display: block;
  margin-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  font-size: 1.3rem;
}
.header__content__nav .is-dropdown {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 0;
  min-width: 22.4rem;
  background: #fff;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transform: translateY(-0.8rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.header__content__nav .is-dropdown a {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  line-height: 1;
  font-size: 1.3rem;
}
.header__content__nav .is-dropdown a:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  width: 100%;
  height: 0.1rem;
  background-color: #000;
  transition: transform 0.28s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header__content__nav .is-dropdown a:hover:after {
  transform: scale(1);
  transform-origin: 0 50%;
}
.header__content__nav .is-dropdown_wrap {
  position: relative;
}
.header__content__nav .is-dropdown_wrap.is-open .is-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__content__logo {
  position: absolute;
  left: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .header__content__logo {
    left: 5rem;
    width: 19.2rem;
  }
}
.header__content__ham {
  width: 2.2rem;
  height: 1.6rem;
  position: absolute;
  right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 300;
}
@media (min-width: 768px) {
  .header__content__ham {
    display: none;
  }
}
.header__content__ham .is-box {
  position: relative;
  height: 1.6rem;
}
.header__content__ham span {
  width: 2.2rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
}
.header__content__ham span:nth-child(1) {
  top: 0;
}
.header__content__ham span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header__content__ham span:nth-child(3) {
  bottom: 0;
}
.header__list {
  display: block;
  position: fixed;
  height: -webkit-fill-available;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  width: 100%;
  height: 100svh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.header__list.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.header__list__bg {
  z-index: 10000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: -webkit-fill-available;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header__list__logo {
  position: fixed;
  top: 2.5rem;
  left: 3rem;
  width: 14rem;
  line-height: 1;
}
.header__list__ham {
  position: fixed;
  top: 2.3rem;
  right: 3rem;
  z-index: 20000;
  width: 2.2rem;
  height: 1.6rem;
  cursor: pointer;
}
.header__list__ham .is-box {
  position: relative;
  height: 1.6rem;
}
.header__list__ham span {
  width: 2.2rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition-duration: 1s;
}
.header__list__ham span:nth-child(1) {
  top: 0;
}
.header__list__ham span:nth-child(3) {
  bottom: 0;
}
.header__list__content {
  position: relative;
  z-index: 15000;
  width: 100vw;
  height: 100vh;
  background: rgb(255, 255, 255);
}
.header__list__content .is-wrap {
  padding: 7rem 3rem 0;
}
.header__list__content .is-wrap > ul:last-child {
  display: flex;
  justify-content: center;
  border-top: 0.1rem solid #000;
  padding-top: 3rem;
}
.header__list__content .is-wrap > ul:last-child li:nth-child(2) {
  margin-left: 1.9rem;
  margin-right: 1.9rem;
}
.header__list__content .is-wrap > ul:last-child img {
  max-height: 1.9rem;
}
.header__list__content .is-wrap > ul:first-child > li {
  border-top: 0.1rem solid #000;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 1.6rem;
}
.header__list__content .is-wrap > ul:first-child > li ul {
  padding-left: 1.4rem;
  padding-top: 2rem;
}
.header__list__content .is-wrap > ul:first-child > li ul li {
  padding-bottom: 2rem;
  font-size: 1.5rem;
}

.active_line01 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition-duration: 1s;
  top: 1rem !important;
  border-radius: 0.3rem;
}

.active_line03 {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 1rem !important;
  right: -0.1rem;
  border-radius: 0.3rem;
}

.footer {
  background: #262626;
  padding: 5rem 3rem;
  color: #fff;
  line-height: 1;
  position: relative;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 9.5rem;
    padding-bottom: 5rem;
    font-size: 1.2rem;
  }
}
.footer a:hover {
  opacity: 0.7;
}
.footer__copy {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__copy {
    display: none;
  }
}
.footer__sns {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}
@media (min-width: 768px) {
  .footer__sns {
    display: none;
  }
}
.footer__sns ul {
  display: flex;
  justify-content: center;
}
.footer__sns ul li:nth-child(2) {
  margin-left: 1.8rem;
  margin-right: 1.8rem;
}
.footer__sns ul li img {
  max-height: 2rem;
}
.footer__content {
  max-width: 103.2rem;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .footer__content {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .footer__content__list {
    margin-left: auto;
  }
}
.footer__content__list .is-link {
  font-size: 1.35rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .footer__content__list .is-link {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .footer__content__list > ul {
    display: flex;
    width: 60rem;
    position: relative;
  }
}
.footer__content__list > ul > li {
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid #666;
}
@media (min-width: 768px) {
  .footer__content__list > ul > li {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    width: 40%;
  }
}
.footer__content__list > ul > li:nth-child(1) ul, .footer__content__list > ul > li:nth-child(2) ul {
  padding-top: 2.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 768px) {
  .footer__content__list > ul > li:nth-child(1) ul, .footer__content__list > ul > li:nth-child(2) ul {
    padding-left: 0;
    padding-top: 2rem;
  }
}
.footer__content__list > ul > li:nth-child(1) ul li, .footer__content__list > ul > li:nth-child(2) ul li {
  margin-bottom: 2rem;
}
.footer__content__list > ul > li:nth-child(3) {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .footer__content__list > ul > li:nth-child(3) {
    width: 20%;
  }
}
.footer__content__list > ul > li:nth-child(3) ul li {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.1rem solid #666;
}
@media (min-width: 768px) {
  .footer__content__list > ul > li:nth-child(3) ul li {
    padding-top: 0;
    border-bottom: none;
  }
}
.footer__content__list > ul > li:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .footer__content__list > ul > li:last-child {
    position: absolute;
    bottom: -12.5rem;
    right: 0;
    text-align: right;
    font-size: 1.1rem;
  }
}
.footer__content__logo {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__content__logo {
    margin-bottom: 0;
    margin-top: 2rem;
  }
}
.footer__content__logo > a img {
  max-width: 13rem;
}
@media (min-width: 768px) {
  .footer__content__logo > a img {
    max-width: 16rem;
  }
}
.footer__content__logo .is-copy {
  display: none;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 16rem;
}
@media (min-width: 768px) {
  .footer__content__logo .is-copy {
    display: block;
  }
}
.footer__content__logo ul {
  display: none;
}
@media (min-width: 768px) {
  .footer__content__logo ul {
    margin-top: 4rem;
    margin-right: auto;
    max-width: 16rem;
    display: flex;
    justify-content: center;
  }
}
.footer__content__logo ul li:nth-child(2) {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}
.footer__content__logo ul li img {
  max-height: 1.4rem;
}

@keyframes ring-slide-in {
  0% {
    --gap: 12%;
    opacity: 0.35;
  }
  40% {
    --gap: 8%;
    opacity: 0.35;
  }
  75% {
    --gap: 3%;
    opacity: 0.35;
  }
  100% {
    --gap: 3%;
    opacity: 0.35;
  }
}
.o-circle_btn {
  display: inline-flex;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-decoration: none;
  box-shadow: none;
  border: none;
  padding: 0;
  gap: 16px;
  text-decoration: none;
  font-size: 1.3rem;
}
.o-circle_btn:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .o-circle_btn {
    font-size: 1.6rem;
  }
  .o-circle_btn:hover .o-circle_btn__circle:before {
    animation: ring-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .o-circle_btn:hover .o-circle_btn__circle__svg circle {
    stroke-dashoffset: 0;
  }
}
.o-circle_btn.is-wh {
  color: #fff;
}
.o-circle_btn.is-wh .o-circle_btn__circle::before {
  --ring-color: rgba(255,255,255,.65);
  --w: 1.5px;
}
.o-circle_btn.is-wh .o-circle_btn__circle__svg circle {
  stroke: #fff;
}
.o-circle_btn__text {
  padding: 0 1.6rem;
}
@media (min-width: 768px) {
  .o-circle_btn__text {
    padding: 0 2.4rem;
  }
}
.o-circle_btn__circle {
  position: relative;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  place-items: center;
  --outer-r: calc(50% - 1px);
}
@media (min-width: 768px) {
  .o-circle_btn__circle {
    width: 9.6rem;
    height: 9.6rem;
  }
}
.o-circle_btn__circle:not(:hover)::before {
  opacity: 0.35;
  --gap: 12%;
}
.o-circle_btn__circle:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  --ring-color: rgba(0,0,0,.25);
  --gap: 12%;
  --w: 1px;
  opacity: clamp(0.35, 0.6vw, 0.5);
  background: radial-gradient(circle closest-side, transparent calc(100% - var(--gap) - var(--w)), var(--ring-color) calc(100% - var(--gap) - var(--w)), var(--ring-color) calc(100% - var(--gap)), transparent calc(100% - var(--gap)));
}
.o-circle_btn__circle__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 2;
}
.o-circle_btn__circle__svg circle {
  fill: none;
  stroke: #000;
  stroke-width: 1;
  stroke-dasharray: 300 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-circle_btn__circle__arw {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  line-height: 1;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.o-circle_btn__circle__arw img {
  max-height: 1.4rem;
}

.o-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.o-modal.is-active .o-modal__overlay {
  opacity: 1;
}
.o-modal.is-active .o-modal__content {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .o-modal.is-active .o-modal__content {
    transform: translate(0, 0);
  }
}
.o-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3rem);
  -webkit-backdrop-filter: blur(3rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.o-modal__content {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1.6rem 1.6rem 0 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
@media (min-width: 768px) {
  .o-modal__content {
    left: auto;
    right: 4rem;
    bottom: 4rem;
    width: 68rem;
    max-height: calc(100vh - 80px);
    border-radius: 2rem;
    transform: translate(4rem, 4rem);
    opacity: 0;
  }
}
.o-modal__content__body {
  padding: 3.2rem 1.6rem;
  font-size: 1.6rem;
}
.o-modal__content__body .p-top__map__search {
  margin-top: 2.4rem;
}
.o-modal__content__body .is-list {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}
.o-modal__content__body .is-list h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: #5EAA69;
}
.o-modal__content__body .is-list dl:last-child dt {
  border-bottom: 0.1rem solid #ccc;
}
.o-modal__content__body .is-list dl.is-active dt {
  color: rgb(46, 153, 64);
  background: rgb(241, 247, 242);
  border-bottom: 0.1rem solid #ccc;
}
.o-modal__content__body .is-list dl.is-active dt:after {
  background-image: url("../images/common/icon_arw_grn.svg");
}
.o-modal__content__body .is-list dl dt {
  cursor: pointer;
  padding: 1.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  position: relative;
  border: 0.1rem solid #ccc;
  border-bottom: none;
}
.o-modal__content__body .is-list dl dt:after {
  content: "";
  width: 3.4rem;
  height: 3.4rem;
  display: block;
  background: url("../images/common/icon_arw_grey.svg") center center/100% no-repeat;
  transform: rotate(90deg);
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
}
.o-modal__content__body .is-list dl dd h3 {
  margin-top: 0.8rem;
}
.o-modal__content__body .is-list ul {
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.o-modal__content__body .is-list ul li {
  width: 50%;
  border: 0.1rem solid #ccc;
  border-top: none;
  text-align: center;
}
.o-modal__content__body .is-list ul li:first-child, .o-modal__content__body .is-list ul li:nth-child(2) {
  border-top: 0.1rem solid #ccc;
}
.o-modal__content__body .is-list ul li:nth-child(2n) {
  border-left: none;
}
.o-modal__content__body .is-list ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 4.8rem;
  position: relative;
}
.o-modal__content__body .is-list ul li a:after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.2rem;
  background: url(../images/common/icon_arw_grn.svg) center no-repeat;
  background-size: 100%;
}
.o-modal__content__body .is-list p {
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 0.8rem;
}
.o-modal__content__body .is-list .o-btn {
  margin-left: auto;
  margin-right: 0;
  width: 5.6rem;
  font-size: 1.2rem;
  height: 2.2rem;
  border-radius: 0.4rem;
}
.o-modal__content__body .is-list .o-btn:after {
  display: none;
}
.o-modal__content__close {
  position: absolute;
  text-align: right;
  top: 15px;
  right: 12px;
  width: 15px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .o-modal__content__close {
    top: 30px;
    right: 30px;
    width: 30px;
  }
}

.o-contact_link {
  text-align: center;
  padding: 4.5rem 3rem 5rem;
}
@media (min-width: 768px) {
  .o-contact_link {
    padding: 14rem 0 12rem;
  }
}
.o-contact_link .o-circle_btn {
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  border-top: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .o-contact_link .o-circle_btn {
    border-top: none;
    border-bottom: none;
    padding: 7rem 9rem 6rem;
    transition: box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .o-contact_link .o-circle_btn:hover {
    border-radius: 1rem;
    box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.08), 0 0.8rem 2.4rem rgba(0, 0, 0, 0.04);
  }
  .o-contact_link .o-circle_btn:hover:before {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
  .o-contact_link .o-circle_btn:hover:after {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
}
@media (min-width: 768px) {
  .o-contact_link .o-circle_btn:after, .o-contact_link .o-circle_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 0.1rem;
    width: 100%;
    background: #666;
    max-width: 102.4rem;
    margin: 0 auto;
    display: block;
  }
}
.o-contact_link .o-circle_btn:before {
  top: 0;
}
.o-contact_link .o-circle_btn:after {
  bottom: 0;
}
.o-contact_link dl {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.o-contact_link dl dd {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 768px) {
  .o-contact_link dl dd {
    padding-right: 4rem;
  }
}
.o-contact_link dl dt {
  margin-right: auto;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.o-contact_link dl dt p {
  display: none;
  font-size: 1.6rem;
  padding-left: 3rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .o-contact_link dl dt p {
    display: block;
  }
}
.o-contact_link dl dt span {
  font-weight: 900;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .o-contact_link dl dt span {
    font-size: 4rem;
  }
}

.o-pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  overflow: hidden;
  z-index: 100;
  height: 9rem;
  width: 1.6rem;
}
@media (min-width: 768px) {
  .o-pagetop {
    width: 2rem;
    right: 9rem;
    height: 13rem;
  }
}
.o-pagetop span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.2rem;
  position: relative;
  padding-top: 4rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .o-pagetop span {
    font-size: 1.6rem;
    padding-top: 6rem;
  }
}
.o-pagetop span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0.1rem;
  height: 100%;
  background-color: #000;
  animation: pagetopLine 1.8s ease-in-out infinite;
  margin-bottom: 4.5rem;
}
@media (min-width: 768px) {
  .o-pagetop span:before {
    margin-bottom: 7rem;
  }
}

@keyframes pagetopLine {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
}
.o-page_title {
  background: url(../addimg/company/company_bg.png) center no-repeat;
  background-size: cover;
  height: 25rem;
  display: flex;
  align-items: center;
  color: #fff;
  line-height: 1;
}
@media (min-width: 768px) {
  .o-page_title {
    height: 50rem;
    background-image: url(../addimg/company/company_bg_pc.png);
  }
}
.o-page_title.is-info {
  background: #fff;
  color: #000;
}
.o-page_title.is-business {
  background-image: url(../addimg/business/business_bg.png);
}
.o-page_title__content p {
  line-height: 2.1;
}
.o-page_title__content h3 {
  font-size: 1.6rem;
  font-weight: bold !important;
}
@media (min-width: 768px) {
  .o-page_title__content h3 {
    font-size: 2.2rem;
  }
}
.o-page_title__content h2 {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  font-size: 2.35rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .o-page_title__content h2 {
    font-size: 4.7rem;
    margin-top: 1.8rem;
    margin-bottom: 2.4rem;
  }
}

.o-member {
  max-width: 86rem;
  margin: 0 auto;
}
.o-member h4 {
  margin-bottom: 3rem;
  border-bottom: 0.1rem solid #000;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .o-member h4 {
    padding-bottom: 2.4rem;
    font-size: 2.8rem;
    margin-bottom: 6rem;
  }
}
.o-member__list {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .o-member__list {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.o-member__list li {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .o-member__list li {
    margin-bottom: 6rem;
    width: 27%;
    margin-right: 9.5%;
  }
  .o-member__list li:nth-child(3n) {
    margin-right: 0;
  }
}
.o-member__list li .o-circle_btn {
  display: flex;
}
.o-member__list li dl {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}
.o-member__list li dl dt {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  margin-bottom: 1.2rem;
  display: flex;
}
@media (min-width: 768px) {
  .o-member__list li dl dt {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .o-member__list li dl dt .o-circle_btn:hover .o-circle_btn__circle::before {
    opacity: 0.85;
  }
}
.o-member__list li dl dt .o-circle_btn__circle {
  margin-left: auto;
  width: 1.8rem;
  height: 1.8rem;
}
.o-member__list li dl dt .o-circle_btn__circle::before {
  --ring-color: rgba(0,0,0,.45);
}
.o-member__list li dl dt .o-circle_btn__circle__arw img {
  max-height: 0.28rem;
}
.o-member__list li dl dt p span {
  margin-top: 0.8rem;
  font-weight: normal;
  font-size: 1.2rem;
  display: block;
}
.o-member__list li dl dd {
  font-weight: bold;
  font-size: 1.1rem;
}
.o-member__list li .is-img {
  max-width: 24rem;
  margin: 0 auto 1.5rem;
}

.p-index {
  padding-top: 12rem;
}
@media (min-width: 768px) {
  .p-index {
    padding-top: 22rem;
  }
}
.p-index p + p {
  margin-top: 0;
}
.p-index__company {
  text-align: center;
}
.p-index__company .o-circle_btn {
  display: flex;
  justify-content: center;
  padding-top: 7.5rem;
  padding-bottom: 6rem;
  overflow: hidden;
  max-width: 109.2rem;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .p-index__company .o-circle_btn {
    padding-top: 16rem;
    padding-bottom: 14rem;
  }
}
.p-index__company .o-circle_btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../addimg/common/company_bg.png) center/cover no-repeat;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  z-index: -1;
  transform: scale(1);
}
.p-index__company .o-circle_btn:hover:before {
  transform: scale(1.08);
}
.p-index__news {
  padding-top: 6rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-index__news {
    padding-top: 15rem;
    padding-bottom: 16rem;
  }
}
.p-index__news .o-circle_btn__circle {
  width: 4.6rem;
  height: 4.6rem;
}
@media (min-width: 768px) {
  .p-index__news .o-circle_btn__circle {
    width: 6.6rem;
    height: 6.6rem;
  }
}
.p-index__news .o-circle_btn__circle__arw img {
  max-height: 0.6rem;
}
@media (min-width: 768px) {
  .p-index__news .o-circle_btn__circle__arw img {
    max-height: 0.9rem;
  }
}
.p-index__news__content > div {
  text-align: right;
  margin-top: 3rem;
}
.p-index__news__content > div .o-circle_btn__text {
  padding-right: 0;
}
.p-index__news__content ul li:first-child {
  border-top: 0.1rem solid #000;
}
.p-index__news__content ul li .o-circle_btn {
  display: flex;
  padding: 2.2rem 0;
  border-bottom: 0.1rem solid #000;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-index__news__content ul li .o-circle_btn {
    padding: 0;
    height: 9.5rem;
    font-size: 1.6rem;
  }
}
.p-index__news__content ul li .o-circle_btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .p-index__news__content ul li .o-circle_btn:hover:after {
    transform: scaleX(1);
    transform-origin: left center;
  }
  .p-index__news__content ul li .o-circle_btn:hover dl {
    transform: translateX(1rem);
  }
}
@media (min-width: 768px) {
  .p-index__news__content ul li .o-circle_btn dl {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (min-width: 768px) {
  .p-index__news__content ul li .o-circle_btn:hover .o-circle_btn__circle::before {
    opacity: 0.85;
  }
}
.p-index__news__content ul li .o-circle_btn__circle {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 2.4rem;
  right: 0;
}
@media (min-width: 768px) {
  .p-index__news__content ul li .o-circle_btn__circle {
    right: 1.4rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3.2rem;
    height: 3.2rem;
  }
}
.p-index__news__content ul li .o-circle_btn__circle::before {
  --ring-color: rgba(0,0,0,.45);
}
.p-index__news__content ul li .o-circle_btn__circle__arw img {
  max-height: 0.3rem;
}
@media (min-width: 768px) {
  .p-index__news__content ul li .o-circle_btn__circle__arw img {
    max-height: 0.6rem;
  }
}
.p-index__news__content ul li dl {
  width: 100%;
}
@media (min-width: 768px) {
  .p-index__news__content ul li dl {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 2rem;
  }
}
.p-index__news__content ul li dl dt {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .p-index__news__content ul li dl dt {
    font-size: 1.4rem;
    width: 22rem;
    margin-bottom: 0;
    margin-right: 2.5rem;
  }
}
.p-index__news__content ul li dl dt .is-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #666;
  color: #fff;
  border-radius: 2rem;
  height: 2rem;
  padding: 0 1.3rem;
  margin-left: 1.3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-index__news__content ul li dl dt .is-category {
    padding: 0;
    width: 10rem;
    margin-left: 3rem;
  }
}
.p-index__news__content ul li dl dd {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (min-width: 768px) {
  .p-index__news__content ul li dl dd {
    font-size: 1.4rem;
    width: calc(100% - 24.5rem);
    padding-right: 13rem;
  }
}
.p-index__news__title {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-index__news__title {
    margin-bottom: 8rem;
    display: flex;
    align-items: center;
  }
}
.p-index__news__title > div {
  margin-left: auto;
}
.p-index__news__title h2 {
  line-height: 1;
  font-size: 2.9rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .p-index__news__title h2 {
    font-size: 5.3rem;
  }
}
.p-index__kv {
  background: #fff;
}
@media (min-width: 768px) {
  .p-index__kv {
    height: 66.8rem;
  }
}
.p-index__kv__grid {
  height: 100%;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 12rem;
}
@media (min-width: 768px) {
  .p-index__kv__grid {
    gap: 1.2rem;
    grid-auto-rows: 16rem;
    grid-template-columns: 1fr 1fr 2.2fr 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
.p-index__kv__grid .is-kv_item {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1), transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-index__kv__grid .is-kv_item.is-show {
  opacity: 1;
  transform: translateY(0);
}
.p-index__kv__grid .is-kv_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index__kv__grid .kv01 {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .p-index__kv__grid .kv01 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-index__kv__grid .kv02 {
  grid-column: 1/2;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  .p-index__kv__grid .kv02 {
    grid-column: 1/2;
    grid-row: 2/4;
  }
}
.p-index__kv__grid .kv03 {
  grid-column: 2/4;
  grid-row: 3/5;
}
@media (min-width: 768px) {
  .p-index__kv__grid .kv03 {
    grid-column: 2/4;
    grid-row: 1/4;
  }
}
.p-index__kv__grid .kv04 {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .p-index__kv__grid .kv04 {
    grid-column: 4/5;
    grid-row: 1/2;
  }
}
.p-index__kv__grid .kv05 {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .p-index__kv__grid .kv05 {
    grid-column: 4/5;
    grid-row: 2/3;
  }
}
.p-index__kv__grid .kv06 {
  grid-column: 3/4;
  grid-row: 1/3;
}
@media (min-width: 768px) {
  .p-index__kv__grid .kv06 {
    grid-column: 5/6;
    grid-row: 1/3;
  }
}
.p-index__kv__grid .kv07 {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .p-index__kv__grid .kv07 {
    grid-column: 4/6;
    grid-row: 3/4;
  }
}
.p-index__title p {
  font-weight: 500;
  margin-top: 2rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .p-index__title p {
    margin-top: 4rem;
  }
}
.p-index__title span {
  line-height: 1;
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  font-weight: bold;
  display: block;
}
@media (min-width: 768px) {
  .p-index__title span {
    margin-bottom: 4rem;
    font-size: 2.2rem;
  }
}
.p-index__title h2 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-index__title h2 {
    font-size: 4.7rem;
  }
}
.p-index__business {
  background: #F2F2F2;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-index__business {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}
.p-index__business__list {
  padding-top: 3.5rem;
}
@media (min-width: 768px) {
  .p-index__business__list {
    padding-top: 7rem;
  }
}
.p-index__business__list .is-btn {
  text-align: right;
}
@media (min-width: 768px) {
  .p-index__business__list ul {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-index__business__list ul li {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-index__business__list ul li {
    margin-bottom: 7rem;
    width: 28.6%;
  }
  .p-index__business__list ul li:nth-child(2) {
    margin-left: 7%;
    margin-right: 7%;
  }
}
.p-index__business__list ul li .is-img {
  overflow: hidden;
}
.p-index__business__list ul li .is-img img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-index__business__list ul li dl {
  margin-top: 2rem;
}
.p-index__business__list ul li dl dd {
  letter-spacing: normal;
}
.p-index__business__list ul li dl dt {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 1.65rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-index__business__list ul li dl dt {
    font-size: 2.3rem;
  }
}
@media (min-width: 768px) {
  .p-index__business__list ul li dl dt .o-circle_btn:hover .o-circle_btn__circle::before {
    opacity: 0.85;
  }
}
.p-index__business__list ul li dl dt .o-circle_btn__circle {
  margin-left: auto;
  width: 2.2rem;
  height: 2.2rem;
}
@media (min-width: 768px) {
  .p-index__business__list ul li dl dt .o-circle_btn__circle {
    width: 3.3rem;
    height: 3.3rem;
  }
}
.p-index__business__list ul li dl dt .o-circle_btn__circle::before {
  --ring-color: rgba(0,0,0,.45);
}
.p-index__business__list ul li dl dt .o-circle_btn__circle__arw img {
  max-height: 0.6rem;
}
.p-index__business__list ul li .o-circle_btn {
  overflow: hidden;
  gap: 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-index__business__list ul li .o-circle_btn {
    font-size: 1.6rem;
  }
}
.p-index__business__list ul li .o-circle_btn:hover img {
  transform: scale(1.05);
}
.p-index__business__list ul li .o-circle_btn:hover dl dt p {
  opacity: 0.7;
}
.p-index__business__list ul li .o-circle_btn:hover dl dd {
  opacity: 0.7;
}
.p-index__business__slide_wrap {
  position: absolute;
  right: 0;
  overflow: hidden;
  width: 100%;
  top: -3.8rem;
}
@media (min-width: 768px) {
  .p-index__business__slide_wrap {
    top: -7.4rem;
  }
}
.p-index__business .is-slide {
  display: flex;
  width: max-content;
  animation-name: slide-left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}
.p-index__business .is-slide img {
  display: block;
  width: auto;
  height: 4rem;
  margin: 0 2.5rem;
}
@media (min-width: 768px) {
  .p-index__business .is-slide img {
    height: 7.8rem;
  }
}
@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-index__about {
  padding-top: 6rem;
  padding-bottom: 7rem;
}
@media (min-width: 768px) {
  .p-index__about {
    padding-top: 13rem;
    padding-bottom: 15rem;
  }
}
.p-index__about__content {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .p-index__about__content {
    padding-left: 31.2rem;
    line-height: 2;
    padding-top: 4rem;
  }
}
.p-index__about__content .o-circle_btn {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .p-index__about__content .o-circle_btn {
    margin-top: 5rem;
  }
}
.p-index__read {
  padding: 0 0 4.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-index__read {
    padding-bottom: 7rem;
  }
}
.p-index__read .is-scroll {
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.p-index__read .is-scroll span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1rem;
  position: relative;
  transform-origin: bottom center;
  padding-bottom: 4.5rem;
  transform: scale(0.8);
}
@media (min-width: 768px) {
  .p-index__read .is-scroll span {
    font-size: 1.3rem;
    padding-bottom: 9rem;
    transform: scale(1);
  }
}
.p-index__read .is-scroll span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0.1rem;
  height: 100%;
  background-color: #000;
  animation: scrollLine 1.8s ease-in-out infinite;
  margin-top: 4.5rem;
}
@media (min-width: 768px) {
  .p-index__read .is-scroll span:before {
    margin-top: 7rem;
  }
}
@keyframes scrollLine {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.p-index__read h2 {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  font-weight: bold;
  visibility: hidden;
}
@media (min-width: 768px) {
  .p-index__read h2 {
    font-size: 9.2rem;
    margin-bottom: 4rem;
  }
}
.p-index__read h2.is-visible {
  visibility: visible;
}
.p-index__read h2.is-visible .char__inner {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease-out;
}
.p-index__read h2 .char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.p-index__read h2 .char__inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.p-index__read p {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-index__read p {
    line-height: 2;
  }
}

.p-company p + p {
  margin-top: 0;
}
.p-company__content {
  padding-top: 7rem;
}
@media (min-width: 768px) {
  .p-company__content {
    padding-top: 14rem;
  }
}
.p-company__content__text {
  max-width: 90rem;
  margin: 0 auto;
  padding: 4rem 3rem 0;
}
@media (min-width: 768px) {
  .p-company__content__text {
    padding: 14rem 0 0;
  }
}
@media (min-width: 768px) {
  .p-company__content__text dl {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-company__content__text dl dt {
  font-weight: normal;
}
.p-company__content__text dl dt p {
  margin-bottom: 0;
}
.p-company__content__text dl dd {
  margin-top: 3rem;
  text-align: right;
}
@media (min-width: 768px) {
  .p-company__content__text dl dd {
    margin-top: auto;
    margin-left: auto;
  }
}
.p-company__content__text p {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .p-company__content__text p {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
}
.p-company__content__text h2 {
  line-height: 1;
  font-size: 2.35rem;
  font-weight: bold;
  padding-bottom: 8rem;
  color: #fff;
}
@media (min-width: 768px) {
  .p-company__content__text h2 {
    font-size: 4.7rem;
    padding-bottom: 17rem;
  }
}
.p-company__content__text h2 span {
  font-weight: normal;
  display: block;
  margin-top: 1.2rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-company__content__text h2 span {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
.p-company__content ul li {
  max-width: 136.6rem;
  margin: 0 auto 6rem;
  background: url(../addimg/business/business_img01.png) right top no-repeat;
  background-size: 100%;
}
@media (min-width: 768px) {
  .p-company__content ul li {
    margin-bottom: 14rem;
    background-size: auto 33.9rem;
  }
}
.p-company__content ul li:nth-child(2) {
  background-image: url(../addimg/business/business_img02.png);
}
.p-company__content ul li:nth-child(3) {
  background-image: url(../addimg/business/business_img03.png);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-company__content ul li:nth-child(3) {
    margin-bottom: 0;
  }
}
.p-company__table {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (min-width: 768px) {
  .p-company__table {
    padding-top: 15rem;
    padding-bottom: 14rem;
  }
}
.p-company__table.is-team {
  background: #F2F2F2;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-company__table.is-team {
    padding-bottom: 3rem;
  }
}
.p-company__table h3 {
  font-size: 1.8rem;
  font-weight: bold !important;
}
@media (min-width: 768px) {
  .p-company__table h3 {
    font-size: 2.2rem;
  }
}
.p-company__table h2 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: 1.2rem;
  margin-bottom: 5rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-company__table h2 {
    font-size: 4.7rem;
    margin-top: 2.4rem;
    margin-bottom: 10rem;
  }
}
.p-company__table__content > dl {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 0.1rem solid #000;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .p-company__table__content > dl {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-company__table__content > dl > dt {
  width: 12rem;
  font-weight: 500;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .p-company__table__content > dl > dt {
    width: 23rem;
    padding-left: 5rem;
  }
}
.p-company__table__content > dl > dd {
  width: calc(100% - 12rem);
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-company__table__content > dl > dd {
    width: calc(100% - 23rem);
  }
}
.p-company__table__content > dl > dd dl dt {
  font-weight: 500;
}
.p-company__table__content > dl > dd dl dd {
  font-weight: 500;
  padding-left: 0.8rem;
}
@media (min-width: 768px) {
  .p-company__table__content > dl > dd dl dd {
    padding-left: 1.6rem;
  }
}
.p-company__message {
  background: #F2F2F2;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
@media (min-width: 768px) {
  .p-company__message {
    padding-top: 16rem;
    padding-bottom: 20rem;
  }
}
@media (min-width: 768px) {
  .p-company__message__content dl {
    display: flex;
  }
}
.p-company__message__content dl dd {
  max-width: 60%;
  margin: 0 auto 4rem;
}
@media (min-width: 768px) {
  .p-company__message__content dl dd {
    max-width: 100%;
    margin-bottom: 0;
    margin-top: auto;
    margin-left: -8rem;
    width: 47.5rem;
  }
}
.p-company__message__content dl dt {
  font-weight: normal;
  line-height: 2.05;
}
@media (min-width: 768px) {
  .p-company__message__content dl dt {
    width: calc(100% - 47.5rem);
    padding-left: 8rem;
    padding-bottom: 6rem;
  }
}
.p-company__message__content dl dt .is-wrap {
  text-align: right;
}
.p-company__message__content dl dt h4 {
  font-weight: bold;
  font-size: 1.6rem;
  display: inline-block;
  text-align: left;
}
@media (min-width: 768px) {
  .p-company__message__content dl dt h4 {
    font-size: 1.8rem;
  }
}
.p-company__message__content dl dt h4 span {
  display: block;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-company__message__content dl dt h4 span {
    font-size: 1.6rem;
  }
}
.p-company__message__content dl dt p {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-company__message__content dl dt p {
    margin-bottom: 4rem;
  }
}
.p-company__message__title h3 {
  font-size: 1.8rem;
  font-weight: bold !important;
}
@media (min-width: 768px) {
  .p-company__message__title h3 {
    font-size: 2.2rem;
  }
}
.p-company__message__title h2 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: 1.2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-company__message__title h2 {
    font-size: 4.7rem;
    margin-top: 2.5rem;
    margin-bottom: 10rem;
    line-height: 1;
  }
}
.p-company__section {
  margin: 0 auto 8rem;
  position: relative;
  max-width: 136rem;
}
@media (min-width: 768px) {
  .p-company__section {
    margin-bottom: 38rem;
  }
}
.p-company__section > img {
  display: block;
  padding-left: 3rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-company__section > img {
    margin-top: 0;
    position: absolute;
    bottom: -17.5rem;
    right: 0;
    width: 61rem;
  }
}
.p-company__section h2 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-company__section h2 {
    font-size: 4.7rem;
    margin-top: 4.4rem;
    margin-bottom: 4.4rem;
  }
}
.p-company__section h3 {
  display: flex;
  align-items: center;
  font-weight: bold !important;
  line-height: 1;
}
.p-company__section h3 span {
  padding-right: 1rem;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .p-company__section h3 span {
    padding-right: 1.8rem;
    font-size: 2.2rem;
  }
}
.p-company__read {
  padding-top: 4.5rem;
  padding-bottom: 7.5rem;
}
@media (min-width: 768px) {
  .p-company__read {
    padding-top: 9rem;
    padding-bottom: 15rem;
  }
}
.p-company__read ul {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-company__read ul li {
  width: 47%;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-company__read ul li {
    min-width: 170px;
    width: 17rem;
    margin-bottom: 0;
    margin-right: 3.4rem;
  }
}
.p-company__read ul li:nth-child(2n) {
  margin-left: 6%;
}
@media (min-width: 768px) {
  .p-company__read ul li:nth-child(2n) {
    margin-left: 0;
  }
}
.p-company__read ul li .o-circle_btn {
  border-bottom: 0.1rem solid #000;
  display: flex;
  flex-wrap: inherit;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-company__read ul li .o-circle_btn {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }
  .p-company__read ul li .o-circle_btn:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #707070;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-company__read ul li .o-circle_btn:hover:after {
    transform: scaleX(1);
    background-color: #000;
  }
}
@media (min-width: 768px) {
  .p-company__read ul li .o-circle_btn .o-circle_btn:hover .o-circle_btn__circle::before {
    opacity: 0.85;
  }
}
.p-company__read ul li .o-circle_btn .o-circle_btn__circle {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: auto;
}
@media (min-width: 768px) {
  .p-company__read ul li .o-circle_btn .o-circle_btn__circle {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.p-company__read ul li .o-circle_btn .o-circle_btn__circle::before {
  --ring-color: rgba(0,0,0,.45);
}
.p-company__read ul li .o-circle_btn .o-circle_btn__circle__arw img {
  max-height: 0.28rem;
}
@media (min-width: 768px) {
  .p-company__read ul li .o-circle_btn .o-circle_btn__circle__arw img {
    max-height: 0.4rem;
  }
}

.p-info__btn {
  text-align: center;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-info__btn {
    padding-bottom: 4rem;
  }
}
.p-info__sns {
  margin-top: 7rem;
  margin-bottom: 8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-info__sns {
    margin-top: 14rem;
    margin-bottom: 16rem;
  }
}
.p-info__sns h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-info__sns h3 {
    margin-bottom: 2rem;
  }
}
.p-info__sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-info__sns ul li {
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}
.p-info__sns ul li img {
  max-height: 2.8rem;
}
.p-info__body {
  max-width: 80rem;
  margin: 0 auto;
}
.p-info__body .is-thumbnail {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-info__body .is-thumbnail {
    margin-bottom: 8rem;
  }
}
.p-info__body p + p {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-info__body p + p {
    margin-top: 3rem;
  }
}
.p-info__body a {
  color: #336633;
  text-decoration: underline;
}
.p-info__body h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-info__body h1 {
    font-size: 3.6rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.p-info__body h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-info__body h2 {
    font-size: 2.6rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.p-info__body h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-info__body h3 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.p-info__title {
  padding-top: 6rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-info__title {
    padding-top: 12rem;
    padding-bottom: 10rem;
  }
}
.p-info__title .is-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.p-info__title .is-category {
  display: flex;
}
.p-info__title .is-category li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  color: #fff;
  background: #000;
  border-radius: 2rem;
  min-width: 8rem;
}
@media (min-width: 768px) {
  .p-info__title .is-category li {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
    min-width: 10rem;
  }
}
.p-info__title h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-info__title h1 {
    font-size: 3.6rem;
  }
}
.p-info__content {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-info__content {
    padding-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .p-info__list {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .p-info__list__main {
    width: calc(100% - 24rem);
  }
}
.p-info__list__main .pagination ul {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-info__list__main .pagination ul {
    margin-top: 8rem;
  }
}
.p-info__list__main .pagination ul li {
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .p-info__list__main .pagination ul li {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
.p-info__list__main .pagination ul li .current {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  background: #000;
  color: #fff;
}
@media (min-width: 768px) {
  .p-info__list__main .pagination ul li .current {
    width: 5rem;
    height: 5rem;
    font-size: 1.6rem;
  }
}
.p-info__list__main .pagination ul li a {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-info__list__main .pagination ul li a {
    font-size: 1.6rem;
  }
}
.p-info__list__main > ul > li {
  border-bottom: 0.1rem solid #000;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .p-info__list__main > ul > li {
    padding: 4rem 2rem;
  }
}
.p-info__list__main > ul > li dl {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-info__list__main > ul > li dl dd {
  width: 12rem;
}
@media (min-width: 768px) {
  .p-info__list__main > ul > li dl dd {
    width: 22rem;
  }
}
.p-info__list__main > ul > li dl dt {
  width: calc(100% - 12rem);
  padding-left: 3rem;
}
@media (min-width: 768px) {
  .p-info__list__main > ul > li dl dt {
    width: calc(100% - 22rem);
  }
}
.p-info__list__main > ul > li dl dt h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 1.8;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-info__list__main > ul > li dl dt h3 {
    font-size: 2rem;
  }
}
.p-info__list__main > ul > li dl dt .is-category {
  display: flex;
}
.p-info__list__main > ul > li dl dt .is-category li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  color: #fff;
  background: #000;
  border-radius: 2rem;
  min-width: 8rem;
}
@media (min-width: 768px) {
  .p-info__list__main > ul > li dl dt .is-category li {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
    min-width: 10rem;
  }
}
.p-info__list__main > ul > li dl dt .is-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.p-info__list__side {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .p-info__list__side {
    width: 24rem;
  }
}
.p-info__list__side .is-select_wrap {
  position: relative;
  width: 16rem;
}
.p-info__list__side .is-select_wrap select {
  width: 100%;
  padding: 0.5rem 1rem;
}
.p-info__list__side .is-select_wrap svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-info__list__side li {
  margin-bottom: 1rem;
}
.p-info__list__side li a.is-current {
  font-weight: bold;
}
.p-info__list__side h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-info__list__side h3 {
    font-size: 1.8rem;
  }
}
.p-info__list__side h3:first-child {
  margin-top: 0;
}
/*# sourceMappingURL=add.css.map */