@charset "UTF-8";
@import url(/css/root.css);
/* ----------------------------------------------

基本設定

------------------------------------------------*/
* {
  box-sizing: border-box;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--mainblack);
}

p {
  text-align: justify;
  font-weight: normal;
}

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

a {
  text-decoration: none;
  color: black;
}

picture {
  display: block;
}

.en,
.en * {
  font-family: "Josefin Sans", sans-serif;
}

.zenkaku,
.zenkaku * {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

/*見切れ画像の処理*/
.cut_off {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cut_off.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  height: 100%;
}
.cut_off.contain img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: unset;
  height: 100%;
}

/*1行テキストの処理*/
span.br {
  display: block;
  font-weight: normal;
}
span.br.mb {
  margin-bottom: 1.25em;
}

/*hoverするとボーダーが出る*/
.hov_border {
  /*hoverするとボーダーが消える*/
}
.hov_border a:not(:has(.txt)) {
  position: relative;
}
.hov_border a:not(:has(.txt))::after {
  content: "";
  background: var(--maincol);
  width: 100%;
  height: 1px;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform-origin: right top;
  transform: scale(0, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hov_border a .txt {
  position: relative;
}
.hov_border a .txt::after {
  content: "";
  background: var(--maincol);
  width: 100%;
  height: 1px;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform-origin: right top;
  transform: scale(0, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hov_border a:hover:not(:has(.txt))::after {
  transform: scale(1, 1);
}
.hov_border a:hover .txt::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.hov_border.no_border a:not(:has(.txt))::after {
  transform: scale(1, 1);
  transform-origin: left top !important;
}
.hov_border.no_border a .txt::after {
  transform: scale(1, 1);
  transform-origin: left top !important;
}
.hov_border.no_border a:hover:not(:has(.txt))::after {
  transform: scale(0, 1);
  transform-origin: right top !important;
}
.hov_border.no_border a:hover .txt::after {
  transform: scale(0, 1);
  transform-origin: right top !important;
}
.hov_border.white a .txt::after {
  background: #fff;
}
.hov_border.blue a .txt::after {
  background: var(--mainblue);
}

.mgn-l-btm {
  margin-bottom: var(--m130);
}

.mgn-m-btm {
  margin-bottom: var(--m100);
}

.mgn-s-btm {
  margin-bottom: var(--m60);
}

.mgn-m-top {
  margin-top: var(--m130);
}

.mgn-m-top {
  margin-top: var(--m100);
}

.mgn-s-top {
  margin-top: var(--m60);
}

.pdn-l-btm {
  padding-bottom: var(--m130);
}

.pdn-m-btm {
  padding-bottom: var(--m100);
}

.pdn-s-btm {
  padding-bottom: var(--m60);
}

.pdn-l-top {
  padding-top: var(--m130);
}

.pdn-m-top {
  padding-top: var(--m100);
}

.pdn-s-top {
  padding-top: var(--m60);
}

.l-container {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.l-contents {
  position: relative;
  z-index: 1;
}

h1.none {
  display: none !important;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1440px;
}

/*ボタン設定*/
.c-button__link {
  display: flex;
  padding: 8px;
  padding-right: var(--m40);
  border-radius: 100vw;
  transition: all 0.5s;
  background: var(--maincol);
  position: relative;
  align-items: center;
  z-index: 1;
  grid-gap: 0 var(--m16);
}
.c-button__link.red {
  background-color: var(--pink01);
}
.c-button__link::after {
  content: "";
  display: inline-block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 100vw;
  border: 2px solid var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.c-button__image {
  width: var(--fs28_50);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: url(/images/common/icon_mail_b.svg) center/60% no-repeat, linear-gradient(to bottom, #fff, #fff);
}
.c-button__image.pink {
  background: url(/images/common/icon_mail.svg) center/60% no-repeat, linear-gradient(to bottom, #fff, #fff);
}
.c-button__image.big {
  width: var(--fs50_70);
}
.c-button__textArea {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  grid-gap: 0 8px;
}
.c-button__en {
  color: #fff;
  font-size: var(--fs22_32);
  font-style: italic;
  line-height: 1;
}
.c-button__jp {
  color: #fff;
  font-weight: bold;
  font-size: var(--fs16_30);
  width: calc(100% - var(--fs36_50) - var(--m16));
  text-align: center;
}
.c-button__smallJp {
  color: #fff;
  font-size: 14px;
}

/*電話番号*/
.c-telArea:has(.round) .c-telArea__text {
  font-size: var(--fs16_24);
  text-align: center;
  color: #fff;
  display: block;
  margin-top: 0.25em;
  font-weight: 300;
}
.c-telArea__link {
  display: flex;
  border-radius: 100vw;
  transition: all 0.5s;
  background: var(--pink02);
  position: relative;
  z-index: 1;
}
.c-telArea__link:has(.c-telArea__box) {
  flex-direction: column;
  align-items: center;
  padding: 20px var(--m50);
}
.c-telArea__link:has(.round) {
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  padding-right: var(--m40);
  grid-gap: 0 var(--m16);
}
.c-telArea__link:has(.round) .c-telArea__num {
  width: calc(100% - var(--fs50_70) - var(--m16));
  font-size: var(--fs28_50);
  transform: translateY(0.05em);
  text-align: center;
}
.c-telArea__link .round {
  width: var(--fs50_70);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: url(/images/common/icon_tel_w.svg) center/60% no-repeat, linear-gradient(to bottom, var(--maincol), var(--maincol));
}
.c-telArea__link::after {
  content: "";
  display: inline-block;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 100vw;
  border: 2px solid var(--maincol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.c-telArea__box {
  display: flex;
  align-items: baseline;
  grid-gap: 6px;
  justify-content: center;
}
.c-telArea__box .c-telArea__image {
  width: var(--fs22_36);
  aspect-ratio: 1/1;
  background: url(/images/common/icon_tel.svg) center/100% no-repeat;
}
.c-telArea__num {
  font-size: var(--fs32_50);
  font-weight: 500;
  font-style: italic;
  color: var(--maincol);
  white-space: nowrap;
  line-height: 1;
}
.c-telArea__text {
  font-size: var(--fs14_20);
  font-weight: 500;
}

.c-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  grid-gap: 0 var(--m60);
  width: -moz-fit-content;
  width: fit-content;
  padding-right: var(--m30);
  margin-bottom: var(--m40);
}
.c-title__en {
  font-size: var(--fs36_60);
  color: var(--maincol);
  line-height: 1;
  font-weight: 500;
  font-style: italic;
}
.c-title__jp {
  color: var(--mainblack);
  font-size: var(--fs16_24);
  line-height: 1.25;
  font-weight: 500;
}
.c-title__jp .emp {
  color: var(--maincol);
  font-size: var(--fs16_24);
  line-height: 1.25;
  font-weight: 500;
}
.c-title:not(.center) .c-title__border {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-title:not(.center) .c-title__border::before, .c-title:not(.center) .c-title__border::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
}
.c-title:not(.center) .c-title__border::before {
  width: 100%;
  height: 1px;
  background-color: var(--maincol);
  z-index: 1;
  top: 0;
}
.c-title:not(.center) .c-title__border::after {
  width: 60%;
  height: 2px;
  border-radius: 10px;
  background-color: var(--pink01);
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
.c-title.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.c-title.center .c-title__en {
  order: 1;
}
.c-title.center .c-title__jp {
  order: 3;
}
.c-title.center .c-title__border {
  order: 2;
  width: 60%;
  max-width: 120px;
  height: 1px;
  position: relative;
  margin-bottom: 10px;
}
.c-title.center .c-title__border::before, .c-title.center .c-title__border::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-title.center .c-title__border::before {
  width: 100%;
  height: 1px;
  background-color: var(--maincol);
  z-index: 1;
}
.c-title.center .c-title__border::after {
  width: 60%;
  height: 2px;
  border-radius: 10px;
  background-color: var(--pink01);
  z-index: 2;
}

.c-titleObi {
  background-color: var(--red01);
  margin-bottom: var(--m30);
  padding: 0.5rem var(--m16);
  display: flex;
  align-items: center;
  grid-gap: 1rem;
}
.c-titleObi__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.c-titleObi__image.news {
  background-image: url(/images/common/icon_menu_w.svg);
  aspect-ratio: 21/18;
  width: clamp(16px, 1.3125vw, 21px);
}
.c-titleObi__image.member {
  background-image: url(/images/common/icon_member_w.svg);
  width: clamp(23px, 1.875vw, 30px);
  aspect-ratio: 30/27;
}
.c-titleObi__text {
  font-size: var(--fs18_20);
  color: #fff;
}

/*gsapの機能*/
.l-container .rect {
  position: relative;
  overflow: hidden;
}
.l-container .rect .curtain {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--maincol);
  top: 0;
  left: 0;
  z-index: 10;
}

/*ヘッダー*/
.p-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--m16) 0;
  transition: all 0.5s;
  max-width: 1720px;
  margin: 0 auto;
  width: 90%;
}
.p-header__logo {
  width: 16.27%;
  transition: all 0.5s;
}
.p-header__rightArea {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-gap: 0 min(3.125vw, 60px);
}
.p-header__menuList {
  display: flex;
  align-items: center;
  grid-gap: 0 clamp(14px, 1.375vw, 22px);
}
.p-header__list__en {
  font-size: min(1.5625vw, 30px);
  color: var(--white);
  font-style: italic;
}
.p-header__list__en .col {
  font-size: min(1.5625vw, 30px);
  color: var(--maincol);
  font-style: italic;
}
.p-header__list__txt {
  font-size: clamp(12px, 0.9375vw, 18px);
  color: var(--white);
}
.p-header__listLink {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-header .c-button__link {
  background: var(--maincol_opa);
}
.p-header .c-telArea {
  position: fixed;
  bottom: 2%;
  right: 0;
}
.p-header .c-telArea__link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: var(--m20);
  background: var(--pink02_opa);
}
.p-header .c-telArea__link::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: unset;
  width: calc(100% - 8px);
  left: unset;
  right: 0;
  transform: translateY(-50%);
}

.c-modal {
  min-width: unset;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  z-index: 1000;
}
.c-modal__bg {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(0);
  transition: background-color 0.5s;
  background-color: rgba(0, 0, 0, 0.65);
}
.c-modal__inner {
  margin-left: auto;
  padding: 3rem 0;
  width: 100%;
  max-width: 600px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(/images/top/main.jpg) center bottom/cover no-repeat;
  overflow: scroll;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.8s;
}
.c-modal__inner.close {
  transform: translateX(150%);
}
.c-modal__logo {
  margin: 0 auto var(--m40);
  width: 90%;
  max-width: 300px;
}
.c-modal__mainMenu {
  margin-bottom: var(--m40);
}
.c-modal__list {
  width: 90%;
  margin: 0 auto 5px;
  border-bottom: 1px solid var(--maincol);
}
.c-modal__list__en {
  font-size: 24px;
}
.c-modal__list__en .col {
  font-size: 24px;
  color: var(--maincol);
}
.c-modal__list__txt {
  font-size: 14px;
  font-weight: 500;
}
.c-modal__listLink {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  padding: 0.5rem;
  line-height: 1;
  position: relative;
  grid-gap: 1rem;
}
.c-modal__text {
  font-weight: 500;
  font-size: var(--fs16_20);
}
.c-modal__contactMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: var(--m32);
}
.c-modal__contactMenu .c-button,
.c-modal__contactMenu .c-telArea {
  width: 100%;
}
.c-modal__contactMenu .c-telArea {
  position: static;
}
.c-modal__contactMenu .c-telArea__link {
  border-radius: 100vw;
}
.c-modal__contactMenu .c-telArea__link::after {
  border-radius: 100vw;
  width: calc(100% - 16px);
  right: 50%;
  transform: translate(50%, -50%);
  border-right: 2px solid var(--maincol);
}
.c-modal .c-button__image {
  width: var(--fs42_60);
}
.c-modal .c-button__en {
  font-size: 32px;
}
.c-modal.open {
  opacity: 1;
}
.c-modal.open .bg {
  background-color: rgba(0, 0, 0, 0.8);
}
.c-modal.nav_none {
  transform: translateX(150%);
  opacity: 0;
}

/*ハンバーガーメニュー*/
.p-hamMenu {
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  aspect-ratio: 1/1;
  background-color: var(--maincol);
}
.p-hamMenu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  grid-gap: 4px;
  transition: all 0.5s;
}
.p-hamMenu__inner::before, .p-hamMenu__inner::after {
  content: "";
  right: 0;
  transition: all 0.5s;
  display: block;
  width: 28px;
  height: 1px;
  transform-origin: center;
  background-color: var(--white);
}
.p-hamMenu__inner.open {
  grid-gap: 0;
}
.p-hamMenu__inner.open .p-hamMenu__bar {
  display: none;
}
.p-hamMenu__inner.open.rotate::before {
  transform: translateY(50%) rotate(45deg);
}
.p-hamMenu__inner.open.rotate::after {
  transform: translateY(-50%) rotate(-45deg);
}
.p-hamMenu__bar {
  display: block;
  width: 28px;
  height: 1px;
  transform-origin: center;
  background-color: var(--white);
}
.p-hamMenu__text {
  font-size: var(--fs14_18);
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: block;
}

/*フッター*/
.p-footer {
  background-color: var(--maincol);
  padding-top: var(--m80);
}
.p-footer__logo {
  width: 80%;
  max-width: 510px;
  margin: 0 auto var(--m16);
}
.p-footer__add {
  font-size: var(--fs14_20);
  color: #fff;
  text-align: center;
  margin-bottom: var(--m50);
}
.p-footer__menuArea {
  background-color: #fff;
  padding-top: var(--m20);
  padding-bottom: var(--m20);
  margin-bottom: var(--m32);
}
.p-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__menuBox {
  flex: 1;
}
.p-footer__menuEn {
  font-size: var(--fs16_30);
  color: var(--maincol);
  font-style: italic;
}
.p-footer__contactArea {
  display: flex;
  justify-content: center;
  grid-gap: var(--m40) 9.3%;
  margin-bottom: var(--m80);
}
.p-footer .c-telArea {
  width: 45.35%;
}
.p-footer .c-button {
  width: 45.35%;
}
.p-footer__copy {
  text-align: center;
  padding: 1.5em;
  background-color: #fff;
}
.p-footer__copy small {
  font-size: var(--fs14_16);
  color: var(--pink01);
}

/*p-topReturn*/
.p-topReturn {
  width: var(--fs42_60);
  aspect-ratio: 1/1;
  margin-left: auto;
  z-index: 300;
  transition: all 0.5s;
}
.p-topReturn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--maincol);
  transition: all 0.5s;
}
.p-topReturn__image {
  width: 40%;
  aspect-ratio: 24/20;
  background: url(/images/common/arrow_return.svg) center/100% no-repeat;
}
.p-topReturn.return_hide {
  opacity: 0;
  z-index: -10;
  transform: translateY(110%);
}
.p-topReturn.return_fixed {
  position: fixed;
  bottom: clamp(123px, 123px + (100vw - 600px) * 0.022, 145px);
  right: 0;
  opacity: 1;
  transform: translateY(0%);
}

/*パンくず*/
.p-breadcrumb {
  padding: var(--m20) 0 var(--m50);
  background-color: var(--red02);
}
.p-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 0.5rem;
}
.p-breadcrumb__list {
  font-size: var(--fs12_16);
  display: flex;
  align-items: center;
}
.p-breadcrumb__list * {
  font-size: var(--fs12_16);
}
.p-breadcrumb__list a {
  color: var(--maincol);
}
.p-breadcrumb__list:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  font-size: var(--fs12_16);
  margin-left: 0.5rem;
}

/*Cvエリア*/
.p-cvArea {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto var(--m50);
  border-radius: var(--m20);
  background-color: var(--maincol);
  border: 1px solid var(--mainblack);
  padding: var(--m16_50);
}
.p-cvArea__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-cvArea__title {
  width: 34%;
}
.p-cvArea__title .c-title__jp {
  font-size: var(--fs16_22);
  font-weight: 700;
  margin-bottom: 10px;
}
.p-cvArea__title .c-title__en__text {
  line-height: 1;
  display: block;
  font-size: var(--fs42_75);
  color: var(--white);
  text-shadow: 1px 1px 0 var(--mainblack), -1px -1px 0 var(--mainblack), -1px 1px 0 var(--mainblack), 1px -1px 0 var(--mainblack), 0px 1px 0 var(--mainblack), -1px 0 var(--mainblack), -1px 0 0 var(--mainblack), 1px 0 0 var(--mainblack);
}
.p-cvArea__buttonArea {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  grid-gap: var(--m45) 6%;
}
.p-cvArea__buttonArea__search {
  max-width: 220px;
}
.p-cvArea__buttonArea__contact {
  max-width: 480px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 0 var(--m20);
}
.p-cvArea__buttonArea__text {
  text-align: center;
  font-size: var(--fs16_22);
  color: #fff;
  display: block;
  margin-bottom: var(--m16);
  width: 100%;
}

.c-radioCheck {
  display: flex;
  grid-gap: 0.5rem;
  align-items: center;
  position: relative;
  width: calc(50% - 0.5rem);
  padding: var(--m8px);
  border: 1px solid var(--gray02);
  border-radius: 5px;
  transition: all 0.5s;
}
.c-radioCheck:has(.inp_rdo:checked, .inp_chk:checked) {
  background-color: var(--maincol_opa);
}
.c-radioCheck .inp_rdo,
.c-radioCheck .inp_chk {
  display: none;
}
.c-radioCheck .rdo,
.c-radioCheck .chk {
  position: relative;
}
.c-radioCheck .rdo::before,
.c-radioCheck .chk::before {
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--gray02);
  position: relative;
  background-color: var(--white);
}
.c-radioCheck .chk::after {
  content: "";
  display: inline-block;
  width: 130%;
  aspect-ratio: 181/135;
  background: url(/images/common/check_only.svg) center/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -60%);
  transition: opacity 0.5s;
  opacity: 0;
}
.c-radioCheck .rdo::before {
  border-radius: 100%;
}
.c-radioCheck .rdo::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transition: background-color 0.5s;
  transition: all 0.5s;
  opacity: 0;
  background-color: var(--maincol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-radioCheck .inp_rdo:checked + .rdo::after, .c-radioCheck .inp_rdo:checked + .chk::after,
.c-radioCheck .inp_chk:checked + .rdo::after,
.c-radioCheck .inp_chk:checked + .chk::after {
  opacity: 1;
}

.c-inputCheck .inp_rdo,
.c-inputCheck .inp_chk,
.c-inputCheck .rdo_inp_round {
  display: none;
}
.c-inputCheck .inp_rdo:checked + .rdo .check::before, .c-inputCheck .inp_rdo:checked + .chk .check::before, .c-inputCheck .inp_rdo:checked + .rdo_round .check::before, .c-inputCheck .inp_rdo:checked + .rdo .check::after, .c-inputCheck .inp_rdo:checked + .chk .check::after, .c-inputCheck .inp_rdo:checked + .rdo_round .check::after,
.c-inputCheck .inp_chk:checked + .rdo .check::before,
.c-inputCheck .inp_chk:checked + .chk .check::before,
.c-inputCheck .inp_chk:checked + .rdo_round .check::before,
.c-inputCheck .inp_chk:checked + .rdo .check::after,
.c-inputCheck .inp_chk:checked + .chk .check::after,
.c-inputCheck .inp_chk:checked + .rdo_round .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::before,
.c-inputCheck .rdo_inp_round:checked + .chk .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::after,
.c-inputCheck .rdo_inp_round:checked + .chk .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::after {
  opacity: 1;
}
.c-inputCheck .rdo,
.c-inputCheck .chk {
  display: flex;
  grid-gap: 0.5rem;
  align-items: center;
  position: relative;
}
.c-inputCheck .rdo .check,
.c-inputCheck .chk .check {
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 2px solid #c9caca;
  position: relative;
}
.c-inputCheck .chk .check::before {
  content: "";
  display: inline-block;
  width: 130%;
  aspect-ratio: 181/135;
  background: url(/images/common/check_only.svg) center/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -60%);
  transition: opacity 0.5s;
  opacity: 0;
}
.c-inputCheck .rdo .check {
  border-radius: 100%;
}
.c-inputCheck .rdo .check::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transition: background-color 0.5s;
  transition: all 0.5s;
  opacity: 0;
  background-color: var(--maincol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contents .swiper-pagination {
  position: static;
  font-size: 20px;
  display: flex;
  align-items: center;
  grid-gap: 1em;
  width: -moz-fit-content;
  width: fit-content;
}
#contents .swiper-button-next,
#contents .swiper-rtl .swiper-button-prev,
#contents .swiper-button-prev,
#contents .swiper-rtl .swiper-button-next {
  position: static;
  width: 16px;
  height: auto;
  aspect-ratio: 16/6;
  margin: 0;
}
#contents .swiper-button-next::after,
#contents .swiper-rtl .swiper-button-prev::after,
#contents .swiper-button-prev::after,
#contents .swiper-rtl .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(/images/common/arrow_swiper.svg) center/100% no-repeat;
}
#contents .swiper-button-prev,
#contents .swiper-rtl .swiper-button-next {
  transform: scaleX(-1);
}

@keyframes bounce {
  0% {
    transform: translateY(2px); /* 開始位置 */
  }
  40% { /* 60% の中点 (30%) で頂点に到達 */
    transform: translateY(-3px); /* 頂点（最も上） */
  }
  80% {
    transform: translateY(2px); /* 移動終了（元に戻る） */
  }
  100% {
    transform: translateY(2px); /* 60%から100%まで静止（ラグ）*/
  }
}
.bounceImg {
  animation-name: bounce;
  animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
  animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
  animation-iteration-count: infinite; /* 無限に繰り返す */
  animation-direction: alternate; /* 往復アニメーション */
}

/*下層ページ*/
.s-subPage .p-header {
  background-color: var(--pink02);
}
.s-subPage .p-header__list__en {
  color: var(--maincol);
}
.s-subPage .p-header__list__en .col {
  color: var(--pink01);
}
.s-subPage .p-header__list__txt {
  color: var(--mainblack);
}
.s-subPage__title {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--m50) 0;
}
.s-subPage__title::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--maincol);
  opacity: 0.65;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.s-subPage__title.company {
  background-image: url(/images/top/about.jpg);
}
.s-subPage__title.contact {
  background-image: url(/images/top/contact.jpg);
}
.s-subPage__title .c-title__en,
.s-subPage__title .c-title__jp {
  color: #fff;
}

.c-heading--h2 {
  border-bottom: 2px solid var(--gray01);
  margin-bottom: var(--m40);
  position: relative;
  border-bottom: 2px solid var(--maincol);
  border-left: 20px solid var(--maincol);
  padding: 0.25em 0 0.25em 0.5em;
}
.c-heading--h2__text {
  font-size: var(--fs22_36);
  font-weight: 700;
}

/*linghtbox用画像アイコン*/
.zoomIcon {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: var(--m10px);
  border: 1px solid var(--gray01);
}
.zoomIcon::before {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 1/1;
  max-width: 40px;
  border-top-left-radius: var(--m10px);
  background: url(/images/common/icon_zoom.svg) center/65% no-repeat, linear-gradient(to bottom, var(--maincol), var(--maincol));
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
}

/*ニュース一覧*/
.c-topics__list {
  margin-bottom: var(--m30);
}
.c-topics__list__row {
  border: 1px solid var(--mainblack);
}
.c-topics__list__row:not(:last-of-type) {
  margin-bottom: 6px;
}
.c-topics__list__link {
  display: flex;
}
.c-topics__day {
  background: var(--mainblack);
  color: #fff;
  font-size: 14px;
  writing-mode: vertical-rl;
  padding: 10px 5px;
  transition: all 0.5s;
}
.c-topics__detail {
  padding: var(--m20);
  display: flex;
  align-items: center;
  grid-gap: 8px;
  transition: all 0.5s;
  width: 100%;
}
.c-topics__detail__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5em;
  font-size: var(--fs12);
  font-weight: 400;
  color: #fff;
  width: 35px;
  aspect-ratio: 36/36.3177;
  background: url(/images/common/flag01.svg) center/cover no-repeat;
}
.c-topics__detail__text {
  max-width: calc(100% - 35px - 8px);
  font-size: var(--fs14_16);
  font-weight: 500;
}

/*ニュース詳細*/
.p-topicsDetail {
  border-top: 1px solid var(--mainblack);
  border-bottom: 1px solid var(--mainblack);
}
.p-topicsDetail__inner {
  border-right: 1px solid var(--mainblack);
  border-left: 1px solid var(--mainblack);
  padding-left: var(--m30);
  padding-right: var(--m30);
  background-color: var(--maincol_opa);
}
.p-topicsDetail__text {
  font-size: var(--fs14_18);
  font-weight: 500;
}
.p-topicsDetail__text:not(:last-child) {
  margin-bottom: var(--m32);
}
.p-topicsDetail__image {
  max-width: 700px;
}
.p-topicsDetail__image img {
  width: initial;
}
.p-topicsDetail__image:not(:last-child) {
  margin-bottom: var(--m32);
}

/*ページネーション*/
.c-pagenation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: var(--m16) 0.5rem;
}
.c-pagenation * {
  font-size: var(--fs14_18);
  font-weight: 500;
}
.c-pagenation li {
  border-radius: 5px;
  border: 1px solid var(--maincol);
}
.c-pagenation li.prev a, .c-pagenation li.next a {
  width: 4em;
  aspect-ratio: unset;
  min-height: 2em;
}
.c-pagenation li span {
  background-color: var(--maincol);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 100%;
  aspect-ratio: 1/1;
}
.c-pagenation li a {
  height: 100%;
  aspect-ratio: 1/1;
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

/*売却無料トップ*/
.p-assessment__line {
  display: block;
  text-align: center;
  font-size: var(--fs14_18);
  font-weight: 500;
}
.p-assessment__pointArea {
  border-top: 1px solid var(--mainblack);
  border-bottom: 1px solid var(--mainblack);
}
.p-assessment__pointArea__inner {
  border-left: 1px solid var(--mainblack);
  border-right: 1px solid var(--mainblack);
}
.p-assessment__list {
  display: flex;
  flex-wrap: wrap;
}
.p-assessment__pointBox {
  width: 50%;
  border-bottom: 1px solid var(--mainblack);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--m16) var(--m32);
}
.p-assessment__pointTitle {
  display: flex;
  flex-direction: column;
}
.p-assessment__pointText {
  display: flex;
  align-items: baseline;
  font-size: var(--fs18_22);
  font-weight: 500;
}
.p-assessment__pointText .num {
  font-size: var(--fs26_36);
  font-weight: 500;
  color: var(--maincol);
}
.p-assessment__titleText {
  font-size: var(--fs16_22);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--maincol);
  text-underline-offset: 5px;
}
.p-assessment__pointImage {
  width: 15%;
  aspect-ratio: 1/1;
  min-width: 70px;
  max-height: 60px;
}
.p-assessment__pointImage img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.p-assessment__button {
  max-width: 500px;
}

.p-privacy {
  border-top: 1px solid var(--mainblack);
  border-bottom: 1px solid var(--mainblack);
}
.p-privacy__inner {
  padding-right: 2.5%;
  padding-left: 2.5%;
  border-right: 1px solid var(--mainblack);
  border-left: 1px solid var(--mainblack);
}
.p-privacy .tit {
  display: flex;
  grid-gap: var(--m16);
  margin-bottom: var(--m20);
  position: relative;
  font-size: var(--fs18_26);
  font-weight: 700;
}
.p-privacy .tit::before {
  content: "";
  display: inline-block;
  width: 10px;
  background-color: var(--maincol);
}
.p-privacy p, .p-privacy ul {
  font-size: var(--fs14_16);
  margin-bottom: var(--m32);
}
.p-privacy p li, .p-privacy ul li {
  font-size: var(--sf14_16);
}

/*エラーページ*/
.p-error {
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-error__image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto var(--m50);
}
.p-error__title {
  font-size: var(--fs24_32);
  font-weight: 500;
  color: var(--red01);
  margin-bottom: var(--m30);
}
.p-error__catch {
  font-size: var(--fs18_23);
  font-weight: 500;
  margin-bottom: var(--m25);
}
.p-error__text__inner {
  margin-bottom: var(--m40);
}
.p-error__text__line {
  font-size: var(--fs14_16);
  display: block;
}
.p-error__text__line a {
  color: var(--maincol);
  font-weight: 500;
  text-decoration: underline;
}

/* ----------------------------------------------
  画面幅調整
  ------------------------------------------------*/
@media all and (min-width: 601px) {
  .sp_only {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media all and (min-width: 769px) {
  .tab_under {
    display: none !important;
  }
  .l-container a img {
    transition: all 0.3s;
  }
  .l-container a:hover img {
    opacity: 0.8;
  }
  /*ボタン設定*/
  .c-button__link:hover {
    background-color: #ffedf5;
  }
  .c-button__link:hover .c-button__en,
  .c-button__link:hover .c-button__smallJp,
  .c-button__link:hover .c-button__jp {
    color: var(--maincol);
  }
  .c-button.white .c-button__link:hover {
    background-color: var(--maincol);
    border-color: var(--white);
  }
  .c-button.white .c-button__link:hover .c-button__text {
    color: var(--white);
  }
  .c-button.white .c-button__link:hover .c-button__arrow {
    border-color: var(--white);
  }
  .c-button.white .c-button__link:hover .c-button__arrow::before {
    background-color: var(--white);
  }
  .c-button.black .c-button__link:hover {
    background-color: var(--white);
    border-color: var(--mainblack);
  }
  .c-button.black .c-button__link:hover .c-button__text {
    color: var(--mainblack);
  }
  .c-button.black .c-button__link:hover .c-button__arrow {
    border-color: var(--mainblack);
  }
  .c-button.black .c-button__link:hover .c-button__arrow::before {
    background-color: var(--mainblack);
  }
  .p-topReturn a:hover {
    background-color: var(--pink01);
  }
  .input_bt:hover {
    background-color: var();
  }
  /*ページネーション*/
  .c-pagenation li a:hover {
    background-color: var(--maincol);
    color: #fff;
  }
  /*spフロートメニュー*/
  .spCv {
    display: none !important;
  }
  .p-assessment__pointBox:nth-of-type(even) {
    border-left: 1px solid var(--mainblack);
  }
}
@media all and (min-width: 1025px) {
  .p-header.scroll_h {
    background-color: var(--pink02_opa);
  }
  .p-header.scroll_h .p-header__inner {
    padding: 8px 0;
  }
  .p-header.scroll_h .p-header__list__txt {
    display: none;
  }
  .p-header.scroll_h .p-header__list__en {
    color: var(--maincol);
    text-shadow: 5px 5px 8px rgba(255, 255, 255, 0.25);
  }
  .pc_under {
    display: none !important;
  }
}
@media all and (max-width: 768px), all and (min-width: 1025px) {
  .fullTb {
    display: none !important;
  }
}
@media all and (min-width: 601px) and (max-width: 768px) {
  .tab_only {
    display: none !important;
  }
}
@media all and (max-width: 1024px) {
  .pc_only {
    display: none !important;
  }
  /*ヘッダー*/
  .p-header__inner {
    margin-right: 0 !important;
    width: 95% !important;
    padding: 0;
  }
  .p-header__inner .c-button {
    margin-top: var(--m16);
  }
  .p-header__logo {
    width: 50%;
    max-width: 280px;
    padding: var(--m16) 0;
  }
  .p-header__rightArea {
    align-items: flex-start;
  }
  /*フッター*/
  .p-footer__contactArea {
    flex-wrap: wrap;
  }
  .p-footer .c-telArea,
  .p-footer .c-button {
    max-width: 500px;
    width: 100%;
  }
  /*共通メニュースタイル*/
  .c-menu {
    grid-gap: var(--m24);
  }
  .c-menu__list__link:has(.c-menu__list__arrow) {
    grid-gap: var(--m8px);
  }
  .c-menu__list__text {
    font-size: var(--m14_16);
  }
  .c-menu__list__arrow:not(.under, .top) {
    width: var(--m8px);
  }
  /*下層ページトップ画像*/
  .p-topImage {
    aspect-ratio: 4/1;
  }
}
@media all and (max-width: 768px) {
  .tab_over {
    display: none !important;
  }
  .p-header__topArea__inner {
    width: 100%;
  }
  /*spフロートメニュー*/
  .spCv {
    transition: opacity 0.5s;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    z-index: 900;
    position: relative;
    grid-gap: var(--m20);
  }
  .spCv__bt {
    flex: 1;
  }
  .spCv.jsfix {
    position: fixed;
    bottom: 0;
    opacity: 1;
    width: 100%;
    /* background-color: unset; */
  }
  .spCv.opa {
    opacity: 0;
  }
  .spCv.none {
    display: none !important;
  }
  /*p-topReturn*/
  .p-topReturn.return_fixed {
    bottom: 7.5%;
  }
  /*Cvエリア*/
  .p-cvArea__inner {
    grid-gap: var(--m50) 0;
  }
  .p-cvArea__title {
    width: 100%;
  }
  .p-cvArea__title .c-title__en__text {
    display: inline-block;
  }
  .p-cvArea__buttonArea {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    grid-gap: var(--m45) 6%;
  }
  .p-cvArea__buttonArea__search {
    max-width: unset;
    width: 100%;
  }
  .p-cvArea__buttonArea__contact {
    max-width: unset;
    width: 100%;
  }
  .p-cvArea__buttonArea__contact .c-button {
    width: 48%;
  }
  .c-radioCheck {
    width: 100%;
  }
  .p-assessment__pointBox {
    width: 100%;
  }
}
/* ----------------------------------------------
  SP設定
  ------------------------------------------------*/
@media all and (max-width: 620px) {
  .sp_over {
    display: none !important;
  }
  /*ヘッダー*/
  .p-header .c-button__link {
    padding: 8px;
  }
  /*フッター*/
  .p-footer__menu {
    grid-gap: var(--m20) var(--m32);
  }
  .p-footer__menuBox {
    flex: unset;
  }
  .spCv .c-telArea__image,
  .spCv .c-button__image {
    width: 32px;
  }
  .spCv .c-telArea__num {
    font-size: 24px !important;
    width: calc(100% - 32px - var(--m16)) !important;
  }
  .spCv .c-button__jp {
    font-size: 16px;
    width: calc(100% - 32px - var(--m16));
  }
  /*下層ページトップ画像*/
  .p-topImage {
    aspect-ratio: 3/1;
  }
  /*p-topReturn*/
  .p-topReturn {
    position: relative;
  }
  .p-topReturn.return_fixed {
    bottom: 8%;
  }
  .c-title__jp {
    margin-bottom: 0;
  }
  .c-title.val .c-title__jp {
    font-size: 15px;
  }
  /*Cvエリア*/
  .p-cvArea__title .c-title__en__text {
    line-height: 1;
    display: block;
  }
  .p-cvArea__buttonArea__contact .c-button {
    width: 100%;
  }
  .p-cvArea__buttonArea__contact .c-button:not(:last-of-type) {
    margin-bottom: var(--m30);
  }
}/*# sourceMappingURL=common.css.map */