@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:wght@400;500;700&display=swap");
/*変数設定用*/
@keyframes move {
  0% {
    transform: translate(-50%, -50%);
  }
  25% {
    transform: translate(-50%, -35%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  75% {
    transform: translate(-50%, -65%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .vpc {
    display: none;
  }
}

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

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
}
a:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-size: 1.6rem;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

.dib {
  display: inline-block;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-right: 28px;
    padding-left: 28px;
  }
}

.ttl {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: var(--clr);
  width: 6rem;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .ttl::after {
    width: 3rem;
  }
}
.ttl_en {
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.ttl_en.white {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ttl_en {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.ttl_ja {
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  font-size: 3.2rem;
  padding-bottom: 10px;
}
.ttl_ja.white {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ttl_ja {
    font-size: 2.4rem;
  }
}
.ttl_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.sub {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 7rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sub {
    text-align: start;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
}
.sub.mt50 {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .sub.mt50 {
    margin-top: 3rem;
  }
}
.sub.white {
  color: #fff;
}
.sub span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .sub span {
    font-size: 1.2rem;
  }
}

.btn {
  display: grid;
  position: relative;
  place-items: center;
  width: 320px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  background-size: 200% auto;
  transition: 0.5s;
  background-image: linear-gradient(to right, #84baf7 0%, #0e5ab0 51%, #84baf7 100%);
}
@media screen and (max-width: 768px) {
  .btn {
    width: 260px;
    height: 50px;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}
.btn:hover {
  background-position: right center;
  opacity: 1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  right: 10px;
  width: 15px;
  height: 2px;
  background: #fff;
}
.btn::before {
  content: "";
  position: absolute;
  right: 17px;
  top: 45%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .btn::before {
    top: 44%;
  }
}
.btn.icon_mail span {
  position: relative;
  padding-left: 3rem;
}
.btn.icon_mail span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon_mail.webp) no-repeat center center;
  background-size: 100%;
  width: 19px;
  height: 15px;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
}
.btn span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .btn span {
    font-size: 1.4rem;
  }
}

.bread-crumbs-area {
  margin: 20px 0 0 auto;
  max-width: 94vw;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .bread-crumbs-area {
    max-width: 96vw;
  }
}
@media screen and (max-width: 768px) {
  .bread-crumbs-area {
    max-width: 100%;
    margin: 10px 2.8rem 0;
  }
}
.bread-crumbs-area .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 14px;
  align-items: center;
}
.bread-crumbs-area .breadcrumbs span {
  font-size: 12px;
}
.bread-crumbs-area .breadcrumbs .fa-play {
  font-size: 8px;
  color: #2f75c3;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}
#page-top a {
  text-decoration: none;
  display: block;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  background: #2f75c3;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
#page-top a:hover {
  opacity: 1;
}
#page-top a:hover span {
  animation: move 1s infinite linear;
}
#page-top a span {
  position: absolute;
  width: 3.5px;
  height: 22px;
  background: white;
  top: 50%;
  left: 50%;
  transition: all 0.3s;
  border-radius: 3px;
  transform: translate(-50%, -50%);
}
#page-top a span::after {
  content: "";
  position: absolute;
  border-top: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(-45deg);
  width: 12px;
  height: 12px;
  right: -4px;
  top: 0px;
}

header {
  width: 100%;
}
header .header-inner {
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2f75c3;
}
@media screen and (max-width: 768px) {
  header .header-inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 0 0 15px;
    height: 54px;
    z-index: 2;
  }
}
header .header-inner .logo-wrap {
  max-width: 380px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  header .header-inner .logo-wrap {
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .logo-wrap {
    max-width: 232px;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap {
    background-color: #fff;
    position: fixed;
    top: 54px;
    left: 100%;
    width: 100%;
    height: calc(100% - 54px);
    transition: all 0.4s;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    row-gap: 3rem;
  }
}
header .header-inner .nav-wrap nav .header_top {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header_top {
    flex-direction: column;
  }
}
header .header-inner .nav-wrap nav .header_top-tel a {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
  font-weight: 500;
  padding-left: 2rem;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header_top-tel a {
    color: #000;
    font-size: 2.8rem;
  }
}
header .header-inner .nav-wrap nav .header_top-tel a::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon_tel.webp) no-repeat center center;
  background-size: 100%;
  width: 14px;
  height: 18px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header_top-tel a::before {
    background: url(../img/common/icon_tel-blue.webp) no-repeat center center;
    background-size: 100%;
  }
}
header .header-inner .nav-wrap nav .header_top-contact a {
  width: 198px;
  border-radius: 3rem;
  border: 1px solid #fff;
  display: block;
  text-align: center;
  padding-top: 7px;
  padding-bottom: 10px;
}
header .header-inner .nav-wrap nav .header_top-contact a span {
  font-weight: bold;
  position: relative;
  padding-left: 3rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
header .header-inner .nav-wrap nav .header_top-contact a span::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon_mail.webp) no-repeat center center;
  background-size: 100%;
  width: 19px;
  height: 15px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
header .header-inner .nav-wrap nav .header-list {
  display: flex;
  justify-content: flex-end;
  column-gap: 45px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  header .header-inner .nav-wrap nav .header-list {
    column-gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list {
    row-gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
header .header-inner .nav-wrap nav .header-list li a {
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  header .header-inner .nav-wrap nav .header-list li a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  header .header-inner .nav-wrap nav .header-list li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list li a {
    font-size: 1.4rem;
    color: black;
    width: 315px;
    display: block;
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #ccc;
  }
  header .header-inner .nav-wrap nav .header-list li a::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #2f75c3;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 5px;
    height: 9px;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap.open {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  header .header-inner .hamburger-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .hamburger-btn {
    display: block;
    height: 100%;
    width: 60px;
    position: relative;
  }
}
header .header-inner .hamburger-btn span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.4s;
}
header .header-inner .hamburger-btn span:nth-of-type(1) {
  opacity: 0;
}
header .header-inner .hamburger-btn span:nth-of-type(2) {
  top: 40%;
}
header .header-inner .hamburger-btn span:nth-of-type(3) {
  top: 60%;
}
header .header-inner .hamburger-btn.open span:nth-of-type(1) {
  opacity: 0;
}
header .header-inner .hamburger-btn.open span:nth-of-type(2) {
  top: 50%;
  rotate: 45deg;
}
header .header-inner .hamburger-btn.open span:nth-of-type(3) {
  top: 50%;
  rotate: -45deg;
}

footer {
  background: #2f75c3;
}
footer .bnr {
  background: url(../img/common/bg_bnr.webp) no-repeat center center;
  background-size: cover;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .bnr {
    height: 280px;
    background: url(../img/common/bg_bnr-sp.webp) no-repeat center center;
    background-size: cover;
  }
}
footer .bnr .ttl {
  transform: translateY(-20px);
}
@media screen and (max-width: 768px) {
  footer .bnr .ttl {
    transform: translateY(0px);
    margin-bottom: 50px;
  }
}
footer .bnr .ttl_img {
  max-width: 770px;
}
@media screen and (max-width: 768px) {
  footer .bnr .ttl_img {
    max-width: 300px;
  }
}
footer .bnrTel {
  background: #fff;
  width: 100%;
  border-radius: 15px;
  padding-top: 8rem;
  padding-bottom: 8rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  footer .bnrTel {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
footer .bnrTel ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  footer .bnrTel ul {
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  footer .bnrTel ul {
    flex-direction: column;
    gap: 3rem;
  }
}
footer .bnrTel ul::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  background: #ccc;
  height: 105px;
  width: 1px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  footer .bnrTel ul::before {
    left: 48%;
  }
}
@media screen and (max-width: 768px) {
  footer .bnrTel ul::before {
    height: 1px;
    width: 260px;
    left: 50%;
  }
}
footer .bnrTel_left {
  text-align: center;
}
footer .bnrTel_left p {
  font-size: 2rem;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  footer .bnrTel_left p {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
footer .bnrTel_left a {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  font-size: 44.76px;
  font-weight: 500;
  padding-left: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  footer .bnrTel_left a {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  footer .bnrTel_left a {
    font-size: 2.8rem;
    padding-left: 2.5rem;
  }
}
footer .bnrTel_left a::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon_tel-blue.webp) no-repeat center center;
  background-size: 100%;
  width: 28px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  footer .bnrTel_left a::before {
    width: 17px;
    height: 21px;
  }
}
footer .ft-content {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
  color: #fff;
  margin-top: -45px;
}
@media screen and (max-width: 768px) {
  footer .ft-content {
    display: block;
  }
}
footer .ft-content .ft-left .logo {
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-left .logo {
    max-width: 270px;
  }
}
footer .ft-content .ft-left .add-txt {
  font-size: 1.4rem;
  margin-top: 3rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-left .add-txt {
    font-size: 1.2rem;
    margin-top: 2.5rem;
  }
}
footer .ft-content .ft-left .add-txt a {
  color: white;
}
footer .ft-content .ft-right {
  display: flex;
  justify-content: flex-end;
  column-gap: 50px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right {
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: initial;
    margin: 25px 0 0;
  }
}
footer .ft-content .ft-right .ft-link-list {
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right .ft-link-list {
    width: 100%;
  }
}
footer .ft-content .ft-right .ft-link-list li {
  line-height: 1.9;
  width: 24rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right .ft-link-list li {
    width: 100%;
    font-size: 14px;
  }
}
footer .ft-content .ft-right .ft-link-list li a {
  color: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 1rem 0 1rem 3rem;
}
footer .ft-content .ft-right .ft-link-list li a::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
  height: 9px;
  width: 5px;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
footer .copy-area {
  text-align: center;
  padding: 15px 0;
  background: #1c5ea8;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  footer .copy-area {
    margin-top: 4rem;
  }
}
footer .copy-area p {
  font-size: 1.2rem;
  color: #fff;
}

body.home .mv-area {
  background: linear-gradient(180deg, #2f75c3 50%, #fff 50%);
  position: relative;
}
@media screen and (max-width: 768px) {
  body.home .mv-area {
    margin-top: 54px;
  }
}
body.home .mv-area .mv {
  width: 94vw;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  body.home .mv-area .mv {
    width: 100%;
  }
}
body.home .mv-area .mv-scroll {
  position: absolute;
  bottom: -1%;
  left: 2.5%;
}
@media screen and (max-width: 768px) {
  body.home .mv-area .mv-scroll {
    display: none;
  }
}
body.home .mv-area .mv-scroll img {
  width: 10px;
  animation: move 1.5s infinite linear;
}
body.home .section-philosophy {
  margin: 85px 0 100px 0;
}
@media screen and (max-width: 768px) {
  body.home .section-philosophy {
    margin: 60px 0;
  }
}
body.home .philosophy_list {
  display: flex;
  column-gap: 7rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_list {
    flex-direction: column;
    row-gap: 2rem;
    margin-bottom: 3rem;
  }
}
body.home .philosophy_list.rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_list.rev {
    flex-direction: column;
  }
}
body.home .philosophy .ttl_img {
  max-width: 1038px;
}
@media screen and (max-width: 768px) {
  body.home .philosophy .ttl_img {
    max-width: 285px;
  }
}
body.home .philosophy_item01 {
  max-width: 510px;
  position: relative;
}
body.home .philosophy_item01.square01::after, body.home .philosophy_item01.square02::after, body.home .philosophy_item01.square03::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  background: #ecf3fa;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_item01.square01::after, body.home .philosophy_item01.square02::after, body.home .philosophy_item01.square03::after {
    width: 60px;
    height: 60px;
  }
}
body.home .philosophy_item01.square01::after {
  top: -30px;
  left: -50px;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_item01.square01::after {
    top: -17px;
    left: -30px;
  }
}
body.home .philosophy_item01.square02::after {
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_item01.square02::after {
    top: 53px;
    right: -30px;
  }
}
body.home .philosophy_item01.square03::after {
  top: 80px;
  left: -40px;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_item01.square03::after {
    top: 70px;
    left: -30px;
  }
}
body.home .philosophy_item01-en {
  color: #2f75c3;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
body.home .philosophy_item01-ja {
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_item01-ja {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
body.home .philosophy_item01-txt {
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  body.home .philosophy_item01-txt {
    font-size: 1.2rem;
  }
}
body.home .philosophy_item02 {
  max-width: 500px;
}
body.home .section-field {
  background: url(../img/top/bg-img.webp) no-repeat top center;
  background-size: cover;
  position: relative;
  padding: 85px 0 100px 0;
}
@media screen and (max-width: 768px) {
  body.home .section-field {
    background: url(../img/top/bg-img-sp.webp) no-repeat top center;
    background-size: cover;
    padding: 60px 0;
  }
}
body.home .field .ttl_img {
  max-width: 470px;
}
@media screen and (max-width: 768px) {
  body.home .field .ttl_img {
    max-width: 242px;
  }
}
@media screen and (max-width: 768px) {
  body.home .field .sub {
    text-align: center;
  }
}
body.home .field_list {
  background: #2366af;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  body.home .field_list {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
body.home .field_list dt {
  width: 580px;
}
@media screen and (max-width: 768px) {
  body.home .field_list dt {
    width: 100%;
  }
}
body.home .field_list dd {
  max-width: 620px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  body.home .field_list dd {
    max-width: 530px;
  }
}
@media screen and (max-width: 768px) {
  body.home .field_list dd {
    padding: 25px 20px;
  }
}
body.home .field_list dd ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  body.home .field_list dd ul {
    gap: 1rem;
  }
}
body.home .field_list dd ul li {
  width: 240px;
  height: 60px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  body.home .field_list dd ul li {
    width: 275px;
    margin: 0 auto;
  }
}
body.home .field_list dd ul li img {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
body.home .field_list dd ul li .icon01 {
  width: 37px;
  height: 30px;
}
body.home .field_list dd ul li .icon02 {
  width: 30px;
  height: 29px;
}
body.home .field_list dd ul li .icon03 {
  width: 24px;
  height: 29px;
}
body.home .field_list dd ul li .icon04 {
  width: 31px;
  height: 32px;
}
body.home .field_list dd ul li .icon05 {
  width: 22px;
  height: 29px;
}
body.home .field_list dd ul li .icon06 {
  width: 31px;
  height: 29px;
}
body.home .field_list dd ul li .icon07 {
  width: 14px;
  height: 34px;
}
body.home .field_list dd ul li .icon08 {
  width: 34px;
  height: 26px;
}
body.home .field_list dd ul li .icon09 {
  width: 22px;
  height: 28px;
}
body.home .field_list dd ul li .icon10 {
  width: 35px;
  height: 24px;
}
body.home .field_list dd ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
body.home .field_list dd ul li a span {
  font-size: 14px;
  font-weight: bold;
}
body.home .field_list dd ul li a::after {
  content: "";
  position: absolute;
  right: 20px;
  background: #2f75c3;
  transition: 0.5s;
  width: 18px;
  height: 12px;
  background: url(../img/common/icon-arrow.png) no-repeat center center;
  background-size: 100%;
}
body.home .field_list dd ul li a:hover::after {
  right: 10px;
}
body.home .field_btn {
  text-align: center;
}
body.home .field_btn a {
  display: inline-block;
  width: 320px;
  height: 60px;
  line-height: 60px;
  position: relative;
  border-radius: 30px;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  body.home .field_btn a {
    width: 260px;
    height: 50px;
    line-height: 47px;
  }
}
body.home .field_btn a:hover {
  background: #fff;
  opacity: 1;
}
body.home .field_btn a:hover span {
  color: #2f75c3;
}
body.home .field_btn a:hover::after {
  background: #2f75c3;
}
body.home .field_btn a:hover::before {
  border-top: 2px solid #2f75c3;
  border-right: 2px solid #2f75c3;
}
body.home .field_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  right: 10px;
  width: 15px;
  height: 2px;
  background: #fff;
}
body.home .field_btn a::before {
  content: "";
  position: absolute;
  right: 17px;
  top: 45%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.home .field_btn a span {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  body.home .field_btn a span {
    font-size: 1.4rem;
  }
}
body.home .field_txt {
  text-align: center;
  color: white;
  margin-top: 40px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body.home .field_txt {
    font-size: 12px;
    margin-top: 30px;
  }
}
body.home .section-lawyer {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  body.home .section-lawyer {
    margin: 6rem 0;
  }
}
body.home .lawyer .ttl {
  display: inline-block;
  text-align: left;
}
body.home .lawyer .ttl::after {
  left: 0;
  transform: translateX(0);
}
body.home .lawyer .ttl_img {
  transform: translateY(-50%);
  left: -140px;
  max-width: 665px;
}
@media screen and (max-width: 768px) {
  body.home .lawyer .ttl_img {
    left: -30px;
    max-width: 345px;
  }
}
body.home .lawyer_name {
  font-size: 24px;
  font-weight: 400;
  text-align: right;
  margin: 40px 0 20px;
}
@media screen and (max-width: 768px) {
  body.home .lawyer_name {
    font-size: 20px;
  }
}
body.home .lawyer_name_01 {
  font-size: 16px;
  display: inline-block;
  transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
  body.home .lawyer_name_01 {
    font-size: 14px;
    transform: translateY(-1px);
  }
}
body.home .lawyer_name_02 {
  display: inline-block;
  font-size: 12px;
  transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
  body.home .lawyer_name_02 {
    transform: translateY(-1px);
  }
}
body.home .lawyer_wrapper {
  display: flex;
  gap: 8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  body.home .lawyer_wrapper {
    flex-direction: column;
    gap: 5rem;
  }
}
body.home .lawyer_left {
  max-width: 530px;
}
body.home .lawyer_right {
  max-width: 585px;
}
@media screen and (max-width: 768px) {
  body.home .lawyer_right {
    margin-bottom: 2rem;
  }
}
body.home .lawyer_content {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  body.home .lawyer_content {
    margin-top: 2rem;
  }
}
body.home .lawyer_ttl {
  font-size: 3rem;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  line-height: 1.73;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  body.home .lawyer_ttl {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
body.home .lawyer_txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body.home .lawyer_txt {
    font-size: 1.2rem;
  }
}
body.home .section-news {
  padding: 130px 0 100px;
  background: #f2f5f9;
  margin-left: auto;
  margin-right: 0;
  width: 94vw;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  body.home .section-news {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  body.home .section-news {
    padding: 60px 0;
    width: 100%;
    border-radius: 0;
  }
}
body.home .section-news .news_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body.home .section-news .news_wrapper {
    flex-direction: column;
  }
}
body.home .section-news .news_ttl {
  font-size: 2.4rem;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  padding-left: 8rem;
  position: relative;
  max-width: 295px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  body.home .section-news .news_ttl {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 768px) {
  body.home .section-news .news_ttl {
    padding-left: 4rem;
    font-size: 2rem;
    margin-top: 0;
  }
}
body.home .section-news .news_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #2f75c3;
  width: 60px;
  height: 1px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  body.home .section-news .news_ttl::before {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  body.home .section-news .news_ttl::before {
    width: 3rem;
  }
}
body.home .section-news .news_btn {
  text-align: end;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  body.home .section-news .news_btn {
    margin-top: 2rem;
    font-size: 14px;
  }
}
body.home .section-news .news_btn a {
  position: relative;
  width: 160px;
  display: inline-block;
  padding-right: 25px;
}
body.home .section-news .news_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  right: -6px;
  width: 15px;
  height: 2px;
  background: #2f75c3;
}
body.home .section-news .news_btn a::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 38%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid #2f75c3;
  border-right: 2px solid #2f75c3;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.home .section-news .news-list {
  width: 100%;
  max-width: 800px;
}
body.home .section-news .news-list li {
  border-bottom: 1px solid #ccc;
}
body.home .section-news .news-list li a {
  display: flex;
  align-items: center;
  padding: 20px 15px;
  column-gap: 20px;
}
@media screen and (max-width: 768px) {
  body.home .section-news .news-list li a {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  body.home .section-news .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
  }
}
body.home .section-news .news-list li a .info-wrap {
  display: flex;
  column-gap: 8px;
  align-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  body.home .section-news .news-list li a .info-wrap {
    font-size: 1.2rem;
  }
}
body.home .section-news .news-list li a .info-wrap .news-cat {
  border-radius: 6px;
  padding: 5px 12px;
  background: #e2e8f1;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  body.home .section-news .news-list li a .info-wrap .news-cat {
    padding: 5px 10px;
  }
}
body.home .section-news .news-list li a .news-ttl {
  width: 70%;
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  body.home .section-news .news-list li a .news-ttl {
    width: 100%;
  }
}
body.home .section-access {
  padding: 85px 0 100px;
}
@media screen and (max-width: 768px) {
  body.home .section-access {
    padding: 6rem 0 40px 0;
  }
}
body.home .access .ttl_img {
  max-width: 630px;
}
@media screen and (max-width: 768px) {
  body.home .access .ttl_img {
    max-width: 325px;
  }
}
body.home .access .maps {
  margin-top: 6rem;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.home .access .maps {
    border-radius: 0;
    margin-top: 3rem;
    margin-left: -2.8rem;
    margin-right: -2.8rem;
    height: 260px;
  }
}
body.home .access_txt {
  text-align: center;
  margin-top: 4rem;
}
body.home .access_txt span {
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body.home .access_txt span {
    font-size: 1.2rem;
  }
}

.under-page .archive-mv {
  background: linear-gradient(180deg, #2f75c3 50%, #fff 50%);
}
@media screen and (max-width: 768px) {
  .under-page .archive-mv {
    margin-top: 54px;
  }
}
.under-page .under-mv-area {
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 0 0 auto;
  width: 94vw;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .under-page .under-mv-area {
    width: 96vw;
  }
}
@media screen and (max-width: 768px) {
  .under-page .under-mv-area {
    height: 220px;
    width: 100%;
  }
}
.under-page .under-mv-area .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.under-page .under-mv-area .inner .ttl_img {
  max-width: 580px;
}
@media screen and (max-width: 768px) {
  .under-page .under-mv-area .inner .ttl_img {
    max-width: 300px;
  }
}
.under-page .under-mv-area .inner .under-main-ttl {
  font-size: 4.8rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .under-page .under-mv-area .inner .under-main-ttl {
    font-size: 3.4rem;
  }
}

.pContact {
  margin: 10rem 0;
}
@media screen and (max-width: 768px) {
  .pContact {
    margin: 5rem 0;
  }
}
.pContact-note {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .pContact-note {
    margin-bottom: 2rem;
  }
}
.pContact-note span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .pContact-note span {
    font-size: 1.2rem;
  }
}
.pContact-note.clrNote {
  color: #2f75c3;
  font-weight: bold;
}
.pContact.thanks {
  text-align: center;
}
.pContact.thanks .thanks_ttl {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .pContact.thanks .thanks_ttl {
    font-size: 2rem;
  }
}
.pContact.thanks .thanks_txt {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .pContact.thanks .thanks_txt {
    font-size: 12px;
  }
}
.pContact.thanks .thanks_btn {
  display: flex;
  justify-content: center;
}

.form-wrapper {
  position: relative;
  width: 100%;
  max-width: 885px;
  margin: 100px auto;
}

input,
textarea {
  font-size: medium;
}

.form {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .form {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
.form.col {
  flex-direction: column;
  gap: 10px;
}
.form.col .form_title {
  justify-content: flex-start;
  column-gap: 10px;
}
.form_title {
  min-width: 255px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.form_title.col {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.form_title.col .form_title-name,
.form_title.col .form_title-req {
  max-width: max-content;
}
.form_title.start {
  justify-content: flex-start;
  column-gap: 10px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .form_title {
    width: 100%;
    min-width: none;
    justify-content: flex-start;
    gap: 15px;
  }
}
.form_title-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .form_title-name {
    font-size: 1.4rem;
  }
}
.form_title-req {
  color: white;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: #2f75c3;
  border-radius: 2px;
  padding: 0 13px 2px;
  margin-top: 3px;
}
.form_title-req.grey {
  background: #9a9a9a;
}
.form_input input {
  height: 46px;
  border: 1px solid #cccccc;
  padding: 0 10px;
}
.form_input.flex {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .form_input.flex {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .form_input.md {
    width: 100%;
  }
}
.form_input.md input {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .form_input.md input {
    width: 100%;
  }
}
.form_input.lg {
  width: 100%;
}
.form_input.lg input {
  width: 100%;
}
.form_input.tel input {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .form_input.tel input {
    width: 100%;
  }
}
.form_input-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-bottom: 5px;
}
.form_input-post {
  margin-bottom: 16px;
}
.form_input-post.sm input {
  width: 174px;
}
.form_flex {
  display: flex;
  column-gap: 2rem;
}
.form_flex:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .form_flex {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.form_times {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .form_times {
    font-size: 1.4rem;
  }
}
.form_date-icon {
  position: relative;
}
.form_date-icon::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 26px;
  background: url(../img/contact/icon_calendar.png) no-repeat center center;
  background-size: cover;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.form_select {
  position: relative;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .form_select {
    width: 100%;
  }
}
.form_select::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7.5px 0 7.5px;
  border-color: #2f75c3 transparent transparent transparent;
}
.form_select.w500 {
  width: 500px;
}
.form_select.w500 input {
  width: 100%;
}
.form_select select {
  cursor: pointer;
  width: 100%;
  height: 46px;
  border: 1px solid #cccccc;
  padding: 14px 15px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: black;
}
.form_textarea {
  width: 100%;
}
.form_textarea textarea {
  width: 100%;
  height: 435px;
  border: 1px solid #cccccc;
  padding: 15px 10px;
  line-height: 1.5;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .form_textarea textarea {
    height: 250px;
  }
}
.form_privacy-ttl {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .form_privacy-ttl {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.form_privacy-txt {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .form_privacy-txt {
    font-size: 1.2rem;
  }
}
.form_privacy-box {
  width: 100%;
  padding: 3rem;
  overflow-y: scroll;
  height: 370px;
  background: white;
  border: 1px solid #cccccc;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .form_privacy-box {
    padding: 2rem;
    font-size: 1.2rem;
  }
}
.form_privacy-check {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .form_privacy-check {
    font-size: 1.4rem;
  }
}
.form_privacy-check.center {
  justify-content: center;
}
.form_privacy-check.square input {
  display: none;
}
.form_privacy-check.square input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #2f75c3;
}
@media screen and (max-width: 768px) {
  .form_privacy-check.square input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
    width: 16px;
    height: 16px;
  }
}
.form_privacy-check.square .mwform-checkbox-field-text {
  position: relative;
  padding-left: 30px;
}
.form_privacy-check.square .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .form_privacy-check.square .mwform-checkbox-field-text::before {
    width: 16px;
    height: 16px;
  }
}
.form_privacy-req {
  color: white;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: #2f75c3;
  border-radius: 2px;
  padding: 0 13px 2px;
}

.ui-datepicker-title .ui-datepicker-year {
  color: black;
}
.ui-datepicker-title .ui-datepicker-month {
  color: black;
}

.mw_wp_form .error {
  font-size: 14px !important;
}
@media screen and (max-width: 768px) {
  .mw_wp_form .error {
    font-size: 12px !important;
  }
}

.btnBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .btnBox {
    flex-direction: column;
  }
}
.btnBox .btn_share button {
  font-size: 16px;
  letter-spacing: 0.1em;
  width: 320px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  background-size: 200% auto;
  transition: 0.5s;
  background-image: linear-gradient(to right, #84baf7 0%, #0e5ab0 51%, #84baf7 100%);
}
.btnBox .btn_share button:hover {
  background-position: right center;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .btnBox .btn_share button {
    font-size: 1.4rem;
  }
}
.btnBox .btn_share.arrowRight button {
  position: relative;
}
.btnBox .btn_share.arrowRight button::before, .btnBox .btn_share.arrowRight button::after {
  position: absolute;
  content: "";
  top: 50%;
}
.btnBox .btn_share.arrowRight button::before {
  width: 6px;
  height: 6px;
  border: 0;
  margin-top: 0px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  right: 26px;
}
.btnBox .btn_share.arrowRight button::after {
  background: #fff;
  right: 25px;
  display: block;
  width: 18px;
  height: 2px;
}
.btnBox .btn_share.arrowLeft button {
  position: relative;
}
.btnBox .btn_share.arrowLeft button::before, .btnBox .btn_share.arrowLeft button::after {
  position: absolute;
  content: "";
  top: 50%;
}
.btnBox .btn_share.arrowLeft button::before {
  width: 6px;
  height: 6px;
  border: 0;
  margin-top: 0px;
  border-top: 2px solid black;
  border-left: 2px solid black;
  transform: rotate(-45deg) translateY(-50%);
  left: 26px;
}
.btnBox .btn_share.arrowLeft button::after {
  background: black;
  left: 26px;
  display: block;
  width: 18px;
  height: 2px;
}
.btnBox .btn_share.arrowLeft button:hover::after {
  background: white;
}
.btnBox .btn_share.arrowLeft button:hover::before {
  border-top: 2px solid white;
  border-left: 2px solid white;
}
.btnBox .btn_share.btn_back button {
  color: black;
  background: white;
  border: 1px solid black;
}
.btnBox .btn_share.btn_back button:hover {
  color: white;
  background: #2f75c3;
  border: 1px solid #2f75c3;
}

.mw_wp_form_confirm .form_title {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .form_flex {
    flex-direction: column;
  }
}
.mw_wp_form_confirm .form_privacy-box {
  display: none;
}
.mw_wp_form_confirm .form_select::before {
  display: none;
}
.mw_wp_form_confirm .form_title-req {
  display: none;
}
.mw_wp_form_confirm .form_privacy-req {
  display: none;
}
.mw_wp_form_confirm .form_input-text {
  display: none;
}
.mw_wp_form_confirm .form_input_none {
  display: none;
}
.mw_wp_form_confirm .form_privacy-check {
  padding: 0;
}
.mw_wp_form_confirm .form_privacy {
  display: none;
}
.mw_wp_form_confirm .form_date-icon {
  display: none;
}

#autozip {
  display: none !important;
}

.form_btn .btn {
  border-radius: 30px;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.news-archive .section-pNews {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .news-archive .section-pNews {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.news-archive .pNews {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-archive .pNews {
    margin: 0 2.8rem;
  }
}
.news-archive .pNews-list li {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.news-archive .pNews-list li a {
  display: block;
  height: 100%;
}
.news-archive .pNews-list li a .txt-wrap {
  display: flex;
  padding: 10px 14px 14px;
  column-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .news-archive .pNews-list li a .txt-wrap {
    flex-direction: column;
    row-gap: 5px;
  }
}
.news-archive .pNews-list li a .txt-wrap .date-cat-wrap {
  display: flex;
  align-items: center;
  column-gap: 9px;
  row-gap: 4px;
  flex-wrap: wrap;
  min-width: 180px;
}
.news-archive .pNews-list li a .txt-wrap .date-cat-wrap .news-date {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news-archive .pNews-list li a .txt-wrap .date-cat-wrap .news-date {
    font-size: 1.2rem;
  }
}
.news-archive .pNews-list li a .txt-wrap .date-cat-wrap .news-cat {
  font-size: 1.2rem;
  padding: 3px 10px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .news-archive .pNews-list li a .txt-wrap .date-cat-wrap .news-cat {
    font-size: 1rem;
    padding: 0 8px;
  }
}
.news-archive .pNews-list li a .txt-wrap .news-ttl {
  font-size: 1.5rem;
  line-height: 1.8666666667;
}
@media screen and (max-width: 768px) {
  .news-archive .pNews-list li a .txt-wrap .news-ttl {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.news-archive .pNews_cate {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
}
.news-archive .pNews_cate-list {
  padding: 0 5rem;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-archive .pNews_cate-list {
    padding: 0 3rem;
    font-size: 14px;
  }
}
.news-archive .pNews_cate-list.active::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2f75c3;
}
@media screen and (max-width: 768px) {
  .news-archive .pNews_cate-list.active::after {
    width: 30px;
  }
}
.news-archive .pNews_cate-list:not(:last-child) {
  border-right: 1px solid #ccc;
}
.news-archive .navigation {
  text-align: center;
  margin: 40px 0 0;
}
.news-archive .navigation .nav-links {
  display: flex;
  justify-content: center;
  column-gap: 7px;
}
.news-archive .navigation .nav-links .page-numbers {
  font-size: 1.6rem;
  color: #aaa;
  padding: 5px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news-archive .navigation .nav-links .page-numbers {
    font-size: 14px;
  }
}
.news-archive .navigation .nav-links .page-numbers.current {
  color: #2f75c3;
  border-bottom: 1px solid #2f75c3;
}
.news-archive .navigation .nav-links .page-numbers.prev, .news-archive .navigation .nav-links .page-numbers.next {
  color: #2f75c3;
  border: none;
}

.news-single .section-single {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .news-single .section-single {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.news-single .pSingle {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-single .pSingle {
    margin: 0 2.8rem;
  }
}
.news-single .pSingle-ttl {
  font-size: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .news-single .pSingle-ttl {
    font-size: 1.8rem;
  }
}
.news-single .pSingle_list {
  display: flex;
  align-items: center;
  column-gap: 3rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .news-single .pSingle_list {
    margin-top: 1rem;
    column-gap: 1rem;
  }
}
.news-single .pSingle_list li:first-child {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news-single .pSingle_list li:first-child {
    font-size: 1.2rem;
  }
}
.news-single .pSingle_list li:last-child {
  font-size: 12px;
  padding: 2px 4px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .news-single .pSingle_list li:last-child {
    font-size: 10px;
  }
}
.news-single .pager-area .btn {
  margin: auto;
}

.news-content-wrap {
  font-size: 1.6rem;
  padding: 30px 0 70px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news-content-wrap {
    padding: 20px 0px 30px;
  }
}
.news-content-wrap > * + * {
  margin-top: 20px;
}
.news-content-wrap p {
  font-weight: normal;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.news-content-wrap p img {
  display: block;
  width: fit-content;
}
.news-content-wrap p img.aligncenter {
  margin: 0 auto;
}
.news-content-wrap p img.alignright {
  margin: 0 0 0 auto;
}
.news-content-wrap strong {
  font-weight: bold;
}
.news-content-wrap h1 {
  font-size: 3.3rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h1 {
    line-height: 1.3;
  }
}
.news-content-wrap h2 {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h2 {
    line-height: 1.3;
  }
}
.news-content-wrap h3 {
  font-size: 2.7rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h3 {
    line-height: 1.3;
  }
}
.news-content-wrap h4 {
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h4 {
    line-height: 1.3;
  }
}
.news-content-wrap h5 {
  font-size: 2.1rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h5 {
    line-height: 1.3;
  }
}
.news-content-wrap h6 {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-content-wrap h6 {
    line-height: 1.3;
  }
}
.news-content-wrap em {
  font-style: italic;
}
.news-content-wrap ul {
  list-style-type: decimal;
  list-style-position: inside;
}
.news-content-wrap ul li {
  list-style: initial;
  list-style-position: inside;
  font-weight: normal;
}
.news-content-wrap ul li + li {
  margin-top: 5px;
}
.news-content-wrap ol {
  list-style-type: disc;
  list-style-position: inside;
}
.news-content-wrap ol li {
  list-style: auto;
  list-style-position: inside;
  font-weight: normal;
}
.news-content-wrap ol li + li {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .news-content-wrap iframe {
    max-width: 700px;
    width: 100%;
    height: 400px;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap iframe {
    width: 100%;
    height: 250px;
  }
}
.news-content-wrap a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.news-content-wrap video {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .news-content-wrap video {
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap video {
    width: 100%;
  }
}
.news-content-wrap .wp-video {
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .news-content-wrap .wp-video {
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news-content-wrap .wp-video {
    width: 100%;
  }
}
.news-content-wrap blockquote {
  position: relative;
}
.news-content-wrap blockquote::before {
  content: '"';
  display: inline-block;
  position: absolute;
  font-size: 3rem;
  top: 4px;
  left: 12px;
  color: #fff;
  font-weight: bold;
}
.news-content-wrap blockquote p {
  background-color: #aaa;
  padding: 25px 30px;
  color: #fff;
}
.news-content-wrap blockquote cite {
  display: block;
  text-align: right;
  font-style: italic;
}
.news-content-wrap .wp-block-table .wp-element-caption {
  text-align: right;
  font-style: italic;
  font-weight: normal;
}

.pLawyer {
  margin: 10rem 0;
}
@media screen and (max-width: 768px) {
  .pLawyer {
    margin: 5rem 0;
  }
}
.pLawyer_list {
  display: flex;
  column-gap: 6rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pLawyer_list {
    column-gap: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_list {
    column-gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .pLawyer_list {
    flex-direction: column;
    row-gap: 2rem;
  }
}
.pLawyer_list::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/lawyer/p-lawyer_02.webp) no-repeat center center;
  background-size: 100%;
  width: 112px;
  height: 645px;
  z-index: -1;
}
.pLawyer_left {
  max-width: 440px;
}
.pLawyer .ttl {
  text-align: left;
}
.pLawyer .ttl::after {
  left: 0;
  transform: translateX(0);
}
.pLawyer_content {
  margin-top: 4rem;
}
.pLawyer_content h2 {
  font-size: 2.8rem;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_content h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .pLawyer_content h2 {
    font-size: 2.4rem;
  }
}
.pLawyer_content-01 {
  font-size: 2rem;
  transform: translateY(-3px);
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_content-01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .pLawyer_content-01 {
    font-size: 1.8rem;
    transform: translateY(-1px);
  }
}
.pLawyer_content-02 {
  font-size: 1.4rem;
  display: inline-block;
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .pLawyer_content-02 {
    transform: translateY(-3px);
  }
}
.pLawyer_history-box {
  display: flex;
  column-gap: 2rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pLawyer_history-box {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.pLawyer_history-common {
  margin-top: 4rem;
}
.pLawyer_history-common p {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.pLawyer_history-common p .span_txt {
  font-size: 1.8rem;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.1em;
  position: relative;
  min-width: max-content;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_history-common p .span_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pLawyer_history-common p .span_txt {
    font-size: 1.6rem;
  }
}
.pLawyer_history-common p .span_line {
  width: 100%;
  height: 1px;
  background: #000;
}
.pLawyer_history-common dl {
  display: flex;
  column-gap: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_history-common dl {
    column-gap: 1rem;
  }
}
.pLawyer_history-common dl:not(:last-child) {
  margin-bottom: 2rem;
}
.pLawyer_history-common dl dt,
.pLawyer_history-common dl dd {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_history-common dl dt,
  .pLawyer_history-common dl dd {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .pLawyer_history-common dl dt,
  .pLawyer_history-common dl dd {
    font-size: 1.2rem;
  }
}
.pLawyer_history-common dl dt {
  width: 9rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_history-common dl dt {
    width: 7rem;
    flex-shrink: 0;
  }
}
.pLawyer_history-mess {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pLawyer_history-mess {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .pLawyer_history-mess {
    font-size: 12px;
  }
}

.pOffice {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .pOffice {
    margin-bottom: 5rem;
  }
}
.pOffice .ttl_img {
  max-width: 585px;
}
@media screen and (max-width: 768px) {
  .pOffice .ttl_img {
    max-width: 300px;
  }
}
.pOffice_wrapper {
  display: flex;
  margin-top: 70px;
  justify-content: space-between;
  column-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .pOffice_wrapper {
    margin-top: 30px;
    flex-direction: column;
    row-gap: 2rem;
  }
}
.pOffice_left dl {
  display: flex;
  margin-bottom: 4rem;
  column-gap: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pOffice_left dl {
    column-gap: 1rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .pOffice_left dl {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
  }
}
.pOffice_left dl dt,
.pOffice_left dl dd {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pOffice_left dl dt,
  .pOffice_left dl dd {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .pOffice_left dl dt,
  .pOffice_left dl dd {
    font-size: 12px;
  }
}
.pOffice_left dl dt {
  width: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pOffice_left dl dt {
    width: 90px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .pOffice_left dl dt {
    width: 90px;
    flex-shrink: 0;
  }
}
.pOffice_right {
  max-width: 585px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pOffice_right {
    max-width: 400px;
  }
}
.pOffice_maps {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .pOffice_maps {
    margin-top: 3rem;
  }
}
.pOffice_maps iframe {
  height: 632px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pOffice_maps iframe {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .pOffice_maps iframe {
    height: 260px;
  }
}
.pOffice_maps p {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .pOffice_maps p {
    margin-top: 1rem;
  }
}
.pOffice_maps p span {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pOffice_maps p span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .pOffice_maps p span {
    font-size: 1.2rem;
  }
}

.pField {
  margin: 10rem 0;
}
@media screen and (max-width: 768px) {
  .pField {
    margin: 5rem 0;
  }
}
.pField-note {
  text-align: center;
}
.pField-note span {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .pField-note span {
    font-size: 1.4rem;
  }
}
.pField_wrapper {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .pField_wrapper {
    margin-top: 5rem;
    display: none;
  }
}
.pField_anchor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pField_anchor {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .pField_anchor {
    grid-template-columns: 1fr;
  }
}
.pField_anchor-link {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid #666;
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .pField_anchor-link {
    font-size: 1.4rem;
  }
}
.pField_anchor-link::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #2f75c3;
  width: 12.94px;
  height: 8.63px;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.pField_box {
  margin-top: 8rem;
}
.pField_cards {
  display: grid;
  grid-template-columns: repeat(2, 580px);
  grid-template-rows: 430px 360px 395px 430px 395px;
  gap: 4rem;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pField_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .pField_cards {
    display: block;
  }
}
.pField_card {
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 3rem 4rem;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pField_card {
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .pField_card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}
.pField_card-ttl {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-left: 5rem;
  border-bottom: 1px solid #ccc;
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .pField_card-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .pField_card-ttl {
    font-size: 1.6rem;
  }
}
.pField_card-ttl.icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.pField_card-ttl.icon_01::after {
  background: url(../img/top/field_icon01.webp) no-repeat center center;
  background-size: 100%;
  width: 37px;
  height: 30px;
}
.pField_card-ttl.icon_02::after {
  background: url(../img/top/field_icon02.webp) no-repeat center center;
  background-size: 100%;
  width: 30px;
  height: 29px;
}
.pField_card-ttl.icon_03::after {
  background: url(../img/top/field_icon03.webp) no-repeat center center;
  background-size: 100%;
  width: 24px;
  height: 29px;
}
.pField_card-ttl.icon_04::after {
  background: url(../img/top/field_icon04.webp) no-repeat center center;
  background-size: 100%;
  width: 31px;
  height: 32px;
}
.pField_card-ttl.icon_05::after {
  background: url(../img/top/field_icon05.webp) no-repeat center center;
  background-size: 100%;
  width: 22px;
  height: 29px;
}
.pField_card-ttl.icon_06::after {
  background: url(../img/top/field_icon06.webp) no-repeat center center;
  background-size: 100%;
  width: 31px;
  height: 29px;
}
.pField_card-ttl.icon_07::after {
  background: url(../img/top/field_icon07.webp) no-repeat center center;
  background-size: 100%;
  width: 14px;
  height: 34px;
}
.pField_card-ttl.icon_08::after {
  background: url(../img/top/field_icon08.webp) no-repeat center center;
  background-size: 100%;
  width: 34px;
  height: 26px;
}
.pField_card-ttl.icon_09::after {
  background: url(../img/top/field_icon09.webp) no-repeat center center;
  background-size: 100%;
  width: 22px;
  height: 28px;
}
.pField_card-ttl.icon_10::after {
  background: url(../img/top/field_icon10.webp) no-repeat center center;
  background-size: 100%;
  width: 35px;
  height: 24px;
}
.pField_card-txt {
  font-size: 14px;
  position: relative;
  padding: 0.5rem 0 0.5rem 3rem;
}
@media screen and (max-width: 768px) {
  .pField_card-txt {
    font-size: 12px;
  }
}
.pField_card-txt::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0px;
  width: 23px;
  height: 23px;
  background: url(../img/field/icon_circle.webp) no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .pField_card-txt::before {
    width: 20px;
    height: 20px;
  }
}
.pField_card-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .pField_card-flex {
    row-gap: 3rem;
  }
}
.pField_card-flex .btn {
  align-self: center;
}

.pPrice {
  margin-top: 7rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .pPrice {
    margin: 5rem 0;
  }
}
.pPrice_note {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .pPrice_note {
    font-size: 12px;
    margin-bottom: 3rem;
  }
}
.pPrice_wrapper.mt60 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .pPrice_wrapper.mt60 {
    margin-top: 30px;
  }
}
.pPrice_wrapper h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .pPrice_wrapper h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.pPrice_wrapper-note {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .pPrice_wrapper-note {
    font-size: 1.2rem;
  }
}
.pPrice_wrapper-note a {
  color: #3a86be;
}
@media screen and (max-width: 768px) {
  .pPrice_scroll {
    overflow-x: scroll;
    width: 100%;
  }
  .pPrice_scroll .pPrice_table {
    width: 600px;
  }
}
.pPrice_table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  width: 100%;
}
.pPrice_table tbody tr th,
.pPrice_table tbody tr td {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding: 2rem 0;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .pPrice_table tbody tr th,
  .pPrice_table tbody tr td {
    font-size: 1.3rem;
    padding: 1rem 0;
  }
}
.pPrice_table tbody tr th {
  background: #3a86be;
  font-weight: bold;
  color: #fff;
  width: 320px;
  text-align: center;
}
.pPrice_table tbody tr td {
  width: calc(100% - 320px);
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pPrice_table tbody tr td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .pPrice_table tbody tr td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.pPrice_table tbody tr td ul {
  display: flex;
  column-gap: 1rem;
}
.pPrice_table tbody tr td ul li:first-child {
  width: 105px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .pPrice_table tbody tr td ul li:first-child {
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .pPrice_table.pattern01 tbody tr th,
  .pPrice_table.pattern01 tbody tr td {
    display: block;
  }
  .pPrice_table.pattern01 tbody tr th {
    width: 100%;
  }
  .pPrice_table.pattern01 tbody tr td {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */