@charset "UTF-8";
/* font
----------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
}

html {
  overflow-y: scroll;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #3e3a39;
  line-height: 1.8;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    -webkit-text-size-adjust: none;
  }
}

/* font
----------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p,
pre,
blockquote,
ul,
ol,
dl,
dt,
dd,
hr,
form,
input {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

img {
  border: none;
  vertical-align: top;
  max-width: 100%;
}

em {
  font-style: normal;
}

li {
  list-style-type: none;
}

.sp,
.sp_flex,
.sp_inline {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .sp_flex {
    display: flex !important;
  }
}
.mt00 {
  margin-top: 0 !important;
}

/* link
----------------------------------------------------*/
a:link {
  color: #3e3a39;
  text-decoration: underline;
}

a:visited {
  color: #3e3a39;
  text-decoration: underline;
}

a:hover {
  color: #3e3a39;
  text-decoration: none;
}

/* rollover
----------------------------------------------------*/
.hov {
  transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
}

.hov:hover {
  opacity: 0.7;
}

/* fadeup
----------------------------------------------------*/
.fadeup {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-timing-function: ease;
  transition-duration: 0.5s;
}

.fadeup.is-enter {
  opacity: 1;
  transform: translateY(0);
  top: 0;
}

.fadeleft {
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition-timing-function: ease;
  transition-duration: 0.7s;
}

.fadeleft.is-enter {
  opacity: 1;
  transform: translateX(0);
  top: 0;
}

.faderight {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition-timing-function: ease;
  transition-duration: 0.7s;
}

.faderight.is-enter {
  opacity: 1;
  transform: translateX(0);
  top: 0;
}

.fadein {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.fadein.is-enter {
  opacity: 1;
  top: 0;
}

/* clear
----------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: block;
}

.sp_menu {
  display: none;
  position: absolute;
  right: 2.5vw;
  top: 0;
  z-index: 68;
  width: 57px;
  height: 57px;
  text-align: center;
  line-height: 1;
  background: #1e2a6f;
  border-radius: 0 0 6px 6px;
}
@media (max-width: 1200px) {
  .sp_menu {
    display: block;
    position: fixed;
  }
}
@media (max-width: 767px) {
  .sp_menu {
    width: 14.249vw;
    height: 14.249vw;
    border-radius: 0 0 1.25vw 1.25vw;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 27px;
  height: 20px;
  top: 18px;
}
@media (max-width: 767px) {
  .menu-trigger {
    width: 6.75vw;
    height: 4.5vw;
    top: 4.75vw;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
  width: 21px;
}
@media (max-width: 767px) {
  .menu-trigger span:nth-of-type(2) {
    top: 1.875vw;
    width: 5.25vw;
  }
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 13px;
}
@media (max-width: 767px) {
  .menu-trigger span:nth-of-type(3) {
    width: 3.125vw;
  }
}

.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
  background-color: #fff;
}
@media (max-width: 767px) {
  .active .menu-trigger span:nth-of-type(1) {
    transform: translateY(1.875vw) rotate(-45deg);
  }
}

.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
  background-color: #fff;
  width: 27px;
}
@media (max-width: 767px) {
  .active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-1.875vw) rotate(45deg);
    width: 6.75vw;
  }
}

#header {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 60;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 20px 60px 20px 40px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s;
}
@media (max-width: 767px) {
  #header {
    padding: 2.875vw 0 2.875vw 6.875vw;
  }
}
#header.on {
  background: rgba(255, 255, 255, 0.88);
}
@media (max-width: 767px) {
  #header .contact-btn {
    width: 100%;
  }
}
#header .contact-btn a {
  line-height: 50px;
  border-radius: 25px;
  background: #b49851 url("../images/common/contact.svg") no-repeat center left 47px;
  transition: background 0.3s;
  background-size: 15px;
  padding: 0 50px 0 70px;
}
@media (max-width: 767px) {
  #header .contact-btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 5.75vw;
    line-height: 21.625vw;
    border-radius: 11vw;
    background: #b49851 url("../images/common/contact.svg") no-repeat center left 8vw;
    background-size: 6.25vw;
    padding: 0 0 0 6vw;
    text-align: center;
  }
}
#header .contact-btn a:hover {
  background: #005b76 url("../images/common/contact.svg") no-repeat center left 47px;
  background-size: 15px;
}

.logo {
  line-height: 1;
  font-size: 11px;
  font-family: "Noto Sans JP", Roboto, "Helvetica Neue", "Hiragino Sans", "Meiryo", sans-serif;
}
@media (max-width: 767px) {
  .logo {
    font-size: 2.875vw;
  }
  .logo img {
    width: 47.75vw;
  }
}
.logo a {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #3e3a39;
  gap: 10px;
}
@media (max-width: 767px) {
  .logo a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

#menu {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  #menu {
    display: none;
    overflow-y: auto;
    align-items: flex-start;
    flex-direction: column;
    background: rgba(234, 246, 253, 0.94);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  #menu {
    padding: 18.75vw 5% 5% 5%;
  }
}
#menu ul {
  display: flex;
  gap: 25px;
  margin: 0 40px 0 0;
}
@media (max-width: 1200px) {
  #menu ul {
    display: block;
    margin: 0 0 0 20px;
  }
}
@media (max-width: 767px) {
  #menu ul {
    margin: 0 0 0 6vw;
  }
}
#menu ul li {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.045em;
}
@media (max-width: 1200px) {
  #menu ul li {
    font-size: 20px;
    margin: 0 0 50px 0;
  }
}
@media (max-width: 767px) {
  #menu ul li {
    font-size: 6.25vw;
    margin: 0 0 21.25vw 0;
    display: flex;
    align-items: center;
  }
  #menu ul li::before {
    content: "";
    background: #b49851;
    width: 3.25vw;
    height: 3.25vw;
    display: block;
    border-radius: 1.625vw;
    margin-right: 2vw;
  }
}
#menu ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
}
#menu ul li a:hover {
  color: #005b76;
}
#menu .sp-privacy {
  font-size: 3.75vw;
  text-align: center;
  width: 100%;
  margin-top: 10vw;
}

.contact-btn a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  line-height: 67px;
  border-radius: 34px;
  background: #b49851 url("../images/common/contact.svg") no-repeat center left 57px;
  transition: background 0.3s;
  padding: 0 70px 0 90px;
}
@media (max-width: 767px) {
  .contact-btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 5.75vw;
    line-height: 21.625vw;
    border-radius: 11vw;
    background: #b49851 url("../images/common/contact.svg") no-repeat center left 21vw;
    background-size: 6.25vw;
    padding: 0 0 0 6vw;
    text-align: center;
  }
}
.contact-btn a:hover {
  background: #005b76 url("../images/common/contact.svg") no-repeat center left 57px;
}

.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  gap: 10px;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 61;
}
@media (max-width: 767px) {
  .cookie-consent {
    font-size: 10px;
  }
}
.cookie-consent p {
  line-height: 1.7;
  letter-spacing: 0;
}

.cookie-consent.is-show {
  visibility: visible;
}

.cookie-consent a {
  color: #fff !important;
}

.cookie-text {
  max-width: calc(100% - 200px);
}
@media (max-width: 767px) {
  .cookie-text {
    max-width: inherit;
  }
}

.cookie-agree {
  color: #fff;
  background: dodgerblue;
  padding: 0.5em 1.5em;
}

.cookie-agree:hover {
  cursor: pointer;
  opacity: 0.8;
}

.cookie-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.cookie-btn .cookie-privacy {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .cookie-btn .cookie-privacy {
    font-size: 8px;
  }
}

.cc-hide1 {
  display: none;
}

.cc-hide2 {
  -webkit-animation: hide 1s linear 0s;
          animation: hide 1s linear 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#footer {
  position: relative;
  padding: 0 2.5% 40px 2.5%;
  margin-top: 40px;
}
@media (max-width: 767px) {
  #footer {
    padding: 0 5% 35vw 5%;
    margin-top: 9.375vw;
  }
}

.footer01 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #979899;
  padding: 0 0 30px 1%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .footer01 {
    display: block;
    padding: 0;
  }
}

.footer02 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 1px solid #979899;
  padding: 0 60px 0 0;
}
@media (max-width: 767px) {
  .footer02 {
    padding: 0;
    border-right: none;
    gap: 4.375vw;
  }
}
.footer02 .logo {
  margin: 2px 0 0 0;
}
@media (max-width: 767px) {
  .footer02 .logo {
    margin: 0 auto;
  }
}
.footer02 p {
  font-size: 15px;
  letter-spacing: 0.15em;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .footer02 p {
    text-align: center;
    font-size: 3.6vw;
  }
}

.footer-menu {
  flex-grow: 1;
  margin: 0 0 0 10%;
}
@media (max-width: 767px) {
  .footer-menu {
    padding: 0 0 9.375vw 0;
    margin: 0;
  }
}
.footer-menu ul {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin: 0 0 30px 0;
}
@media (max-width: 767px) {
  .footer-menu ul {
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid #979899;
    margin: 6.25vw 0 10vw 0;
  }
}
.footer-menu ul li {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.045em;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer-menu ul li {
    width: 50%;
    box-sizing: border-box;
    border-right: 1px solid #979899;
    border-bottom: 1px solid #979899;
    font-size: 3.125vw;
  }
  .footer-menu ul li:nth-child(2n) {
    border-right: none;
  }
}
.footer-menu ul li a {
  text-decoration: none;
  transition: color 0.2s;
}
@media (max-width: 767px) {
  .footer-menu ul li a {
    display: flex;
    align-items: center;
    height: 12.5vw;
    padding: 0 0 0 4.375vw;
  }
}
.footer-menu ul li a:hover {
  color: #005b76;
}
.footer-menu .contact-btn {
  text-align: right;
}
@media (max-width: 767px) {
  .footer-menu .contact-btn {
    text-align: center;
    width: 95%;
    margin: 0 auto;
  }
}
.footer-menu .contact-btn a {
  display: inline-block;
  line-height: 50px;
  border-radius: 25px;
  background: #b49851 url("../images/common/contact.svg") no-repeat center left 47px;
  transition: background 0.3s;
  background-size: 15px;
  padding: 0 50px 0 70px;
}
@media (max-width: 767px) {
  .footer-menu .contact-btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 5.75vw;
    line-height: 15vw;
    border-radius: 11vw;
    background: #b49851 url("../images/common/contact.svg") no-repeat center left 20vw;
    background-size: 6.25vw;
    padding: 0 0 0 6vw;
    text-align: center;
  }
}
.footer-menu .contact-btn a:hover {
  background: #005b76 url("../images/common/contact.svg") no-repeat center left 47px;
  background-size: 15px;
}
@media (max-width: 767px) {
  .footer-menu .contact-btn a:hover {
    background: #005b76 url("../images/common/contact.svg") no-repeat center left 20vw;
    background-size: 6.25vw;
  }
}

.footer03 {
  padding: 0 0 0 1%;
}
.footer03 p {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin: 1.5em 0 0 0;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .footer03 p {
    font-size: 3.125vw;
  }
}
.footer03 p.footer-read-more {
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 0 0 0 20px;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 767px) {
  .footer03 p.footer-read-more {
    font-size: 4vw;
  }
}
.footer03 p.footer-read-more::before, .footer03 p.footer-read-more::after {
  content: "";
  background-color: #000;
  position: absolute;
  width: 10px;
  height: 1px;
  top: 48%;
  left: 0;
}
.footer03 p.footer-read-more::before {
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
}
.footer03 p.footer-read-more.active::before {
  transform: rotate(180deg);
  transition: 0.2s;
}
.footer03 p.footer-read-more.active::after {
  opacity: 0;
  transition: 0.1s;
}

.footer-more-txt {
  display: none;
}

.footer-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 2% 0 2%;
  border-top: 1px solid #005b76;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .footer-link {
    display: block;
    margin-top: 20vw;
  }
}
.footer-link ul {
  display: flex;
  gap: 55px;
}
@media (max-width: 767px) {
  .footer-link ul {
    display: block;
    text-align: center;
  }
}
.footer-link ul li {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .footer-link ul li {
    margin-bottom: 6vw;
    font-size: 2.625vw;
  }
}

.copy {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #989898;
}
@media (max-width: 1024px) {
  .copy {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .copy {
    font-size: 2.5vw;
    text-align: center;
    margin-top: 10vw;
  }
}

/* top
----------------------------------------------------*/
.mask-img,
.mask-img2 {
  -webkit-mask-position: 50% 0%;
  mask-position: 50% 0%;
  -webkit-mask-size: 100% 300%;
  mask-size: 100% 300%;
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(0deg, #000 40%, transparent 60%);
  mask-image: linear-gradient(0deg, #000 40%, transparent 60%);
  transition: -webkit-mask-position 2.5s var(--ease-mask);
  transition: mask-position 2.5s var(--ease-mask);
  transition: mask-position 2.5s var(--ease-mask), -webkit-mask-position 2.5s var(--ease-mask);
}

.mask-img.active,
.mask-img2.active {
  -webkit-mask-position: 50% 100%;
  mask-position: 50% 100%;
}

.mask-img,
.mask-img2 {
  transition-duration: 2s;
}

.top-bg01 {
  padding: 118px 0 100px 0;
  background: #f2f4ef;
  border-radius: 0 0 50px 50px;
}
@media (max-width: 767px) {
  .top-bg01 {
    padding: 22.5vw 0;
    border-radius: 0 0 6.25vw 6.25vw;
  }
}

.top-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: min(1130px, 90%);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top-main {
    flex-direction: column;
    padding: 0 5.625vw;
    width: auto;
  }
}
.top-main .article-list-link {
  width: 40.266%;
  padding: 35px 37px 25px 37px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .top-main .article-list-link {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .top-main .article-list-link {
    width: auto;
    margin: 12.5vw 0 0 0;
  }
}
.top-main .article-list-link h3 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .top-main .article-list-link h3 {
    font-size: 5vw;
  }
}
.top-main .article-list-link .name {
  font-size: 14px;
  text-align: right;
  margin-top: 50px;
  letter-spacing: 0.075em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .top-main .article-list-link .name {
    margin-top: 8.75vw;
    font-size: 2.5vw;
  }
}

.top-main-txt {
  width: 53.4%;
}
@media (max-width: 767px) {
  .top-main-txt {
    width: auto;
  }
}

.top-main-txt2 {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin: 30px 0 50px 0;
  font-weight: 600;
}
@media (max-width: 767px) {
  .top-main-txt2 {
    margin: 4.375vw 0 8.125vw 0;
    font-size: 5vw;
  }
}

.top-main-btn {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1150px) {
  .top-main-btn {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .top-main-btn {
    gap: 13.75vw;
  }
}

.article-list-link {
  background: linear-gradient(to right, #fff 0%, #f8f8f6 60%, #f8f8f6 100%);
  position: relative;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .article-list-link {
    border-radius: 3.75vw;
    padding: 5vw;
  }
}
.article-list-link::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #f8f8f6;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .article-list-link::before {
    border-radius: 3.75vw;
  }
}
.article-list-link .article-list-txtarea {
  padding: 0 10px;
}
@media (max-width: 767px) {
  .article-list-link .article-list-txtarea {
    padding: 0;
  }
}
.article-list-link a {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.article-list-link a figure {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .article-list-link a figure {
    border-radius: 3.75vw;
  }
}
.article-list-link a figure img {
  display: block;
  transition-duration: 0.4s;
  margin: 0 auto;
  height: auto;
}
.article-list-link a:hover img {
  transform: scale(1.05);
}
.article-list-link a:hover h3 {
  text-decoration: underline;
}
.article-list-link a h3 {
  font-size: 17px;
  color: #005b76;
  line-height: 1.8;
  font-weight: 600;
}
@media (max-width: 767px) {
  .article-list-link a h3 {
    font-size: 4.375vw;
  }
}
.article-list-link a .cate {
  margin: 25px 0 15px 0;
}
@media (max-width: 767px) {
  .article-list-link a .cate {
    margin: 3.75vw 0 2.5vw 0;
    font-size: 3.125vw;
  }
}

.cate {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 25px;
  padding: 0 15px;
  border-radius: 13px;
  color: #fff;
  display: inline-block;
  background: #ccc;
}
@media (max-width: 767px) {
  .cate {
    font-size: 2.625vw;
    line-height: 6.25vw;
    border-radius: 3.25vw;
  }
}
.cate a {
  text-decoration: none;
  color: #fff;
}

.cate-basics {
  background: #6369a5 !important;
}

.cate-faq {
  background: #4898a0 !important;
}

.cate-all {
  background: #bfaa7b !important;
}

.cate-inspection {
  background: #d09664 !important;
}

.cate-treatment {
  background: #9e7faa !important;
}

.cate-tag05 {
  background: #5eb1bc !important;
}

.cate-tag06 {
  background: #8ea39b !important;
}

.cate-tag07 {
  background: #9b925d !important;
}

.cate-tag08 {
  background: #c2ba49 !important;
}

.btn {
  font-size: 16px;
  letter-spacing: 0.045em;
  font-weight: 700;
  width: 230px;
}
@media (max-width: 767px) {
  .btn {
    font-size: 5vw;
    width: 70vw;
    margin: 0 auto;
  }
}
.btn a {
  text-decoration: none;
  position: relative;
  display: block;
  transition: color 0.2s;
}
.btn a::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #1122ff;
  border-radius: 5px;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  -webkit-animation: sdl 2s linear infinite;
          animation: sdl 2s linear infinite;
  -webkit-animation-timing-function: cubic-bezier(0.06, 0.43, 0.59, 0.9);
          animation-timing-function: cubic-bezier(0.06, 0.43, 0.59, 0.9);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
@media (max-width: 767px) {
  .btn a::before {
    right: 16.25vw;
    width: 3.25vw;
    height: 3.25vw;
    border-radius: 1.625vw;
  }
}
.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 78px;
  height: 1px;
  background: #7b7a7b;
}
@media (max-width: 767px) {
  .btn a::after {
    width: 25.75vw;
  }
}
.btn a:hover {
  color: #005b76;
}

@-webkit-keyframes sdl {
  0% {
    right: 70px;
  }
  90% {
    right: 0;
  }
  100% {
    right: 0;
  }
}

@keyframes sdl {
  0% {
    right: 70px;
  }
  90% {
    right: 0;
  }
  100% {
    right: 0;
  }
}
.such {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 65px 0 0 0;
  margin: 0 auto;
  max-width: 90%;
}
@media (max-width: 1024px) {
  .such {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .such {
    flex-wrap: wrap;
    gap: 5.75vw;
    padding: 13.75vw 0 0 0;
  }
  .such li {
    width: 40.375vw;
  }
  .such li img {
    width: 100%;
  }
}

.article {
  width: min(1400px, 90%);
  margin: 0 auto;
  padding: 75px 0 0 0;
}
@media (max-width: 767px) {
  .article {
    padding: 0;
    margin: 13.75vw auto 0 auto;
  }
}
.article.list-page {
  padding: 50px 0 70px 0;
}
.article.list-page .article-list {
  margin: 70px 0 0 0;
}
@media (max-width: 767px) {
  .article.list-page {
    padding: 0 0 13.75vw 0;
    margin: 5vw auto 0 auto;
  }
  .article.list-page .article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .article.list-page .article-list {
    margin: 18.75vw 0 0 0;
    gap: 18.75vw;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    position: static;
    padding: 0;
  }
}

.title-en {
  font-size: 15px;
  letter-spacing: 0.075em;
  color: #d8caa9;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .title-en {
    font-size: 3vw;
    margin-bottom: 4.375vw;
  }
}

.title01 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.075em;
  font-weight: 600;
  color: #005b76;
}
@media (max-width: 767px) {
  .title01 {
    font-size: 6.25vw;
  }
}

.article-title-area {
  margin: 0 0 30px 0;
}
@media (max-width: 767px) {
  .article-title-area {
    display: block;
    margin: 0 0 7.5vw 0;
  }
}

.cate-link {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
}
@media (max-width: 767px) {
  .cate-link {
    margin: 5vw 0 0 0;
    width: auto;
    gap: 3.375vw;
  }
}
.cate-link li {
  text-align: center;
  box-sizing: border-box;
  transition: opacity 0.2s;
  padding: 0;
}
.cate-link li a {
  width: 135px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 25px;
  padding: 0 15px;
  border-radius: 13px;
  color: #fff;
  display: inline-block;
  background: #ccc;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .cate-link li a {
    font-size: 2.625vw;
    line-height: 6.25vw;
    border-radius: 3.25vw;
    width: 27.75vw;
  }
}
.cate-link li:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .article-read {
    font-size: 5vw;
  }
}

@media (max-width: 767px) {
  .article-list-scroll {
    position: relative;
    width: 100%;
    height: 135vw;
    overflow: hidden;
    padding: 10vw 0 0 0;
  }
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0 0 0;
}
@media (max-width: 1150px) {
  .article-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .article-list {
    flex-wrap: nowrap;
    position: absolute;
    padding: 0 5vw 0 0;
  }
}
.article-list li {
  width: calc(25% - 63px);
}
@media (max-width: 1150px) {
  .article-list li {
    width: calc(50% - 55px);
  }
}
@media (max-width: 767px) {
  .article-list li {
    width: 73.375vw;
  }
}
.article-list li .cate {
  font-size: 10px;
  line-height: 20px;
  padding: 0 20px;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  margin: 20px 0 15px 0;
}
@media (max-width: 767px) {
  .article-list li .cate {
    margin: 3.75vw 0 2.5vw 0;
    font-size: 2.5vw;
  }
}
.article-list li .article-list-txt {
  font-size: 15px;
  line-height: 2;
  margin: 15px 0;
  letter-spacing: 0.075em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .article-list li .article-list-txt {
    font-size: 3.75vw;
    margin: 5vw 0;
  }
}
.article-list li .article-list-tag {
  display: flex;
  gap: 5px 10px;
  flex-wrap: wrap;
}
.article-list li .article-list-tag li {
  font-size: 10px;
  font-weight: 500;
  width: auto;
}
@media (max-width: 767px) {
  .article-list li .article-list-tag li {
    font-size: 2.625vw;
  }
}
.article-list li .article-date {
  font-size: 10px;
  color: #b1b1b2;
  text-align: right;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .article-list li .article-date {
    font-size: 2.625vw;
    margin-top: 6.25vw;
  }
}

.article-btn {
  text-align: center;
  margin: 60px auto 0 auto;
  width: 270px;
}
@media (max-width: 767px) {
  .article-btn {
    width: auto;
    margin: 4vw auto 0 auto;
  }
}
.article-btn a {
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: 500;
  line-height: 67px;
  border-radius: 34px;
  background: #b49851;
  transition: background 0.3s;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .article-btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 5vw;
    line-height: 17vw;
    border-radius: 8.5vw;
    background-size: 6.25vw;
    padding: 0 6vw;
    text-align: center;
  }
}
.article-btn a:hover {
  background: #005b76;
}

.process-bg {
  background: url("../images/top/bg01.svg") no-repeat left calc(50% - 350px) top 7vw;
  padding: 10vw 0 0 0;
}
@media (max-width: 1200px) {
  .process-bg {
    background: url("../images/top/bg01.svg") no-repeat left -25vw top 4vw;
    background-size: 120vw;
  }
}
@media (max-width: 1024px) {
  .process-bg {
    background: url("../images/top/bg01.svg") no-repeat left -5vw top 13vw;
    background-size: 90vw;
  }
}
@media (max-width: 880px) {
  .process-bg {
    background: url("../images/top/bg01.svg") no-repeat left 0 top 13vw;
    background-size: 90vw;
  }
}
@media (max-width: 767px) {
  .process-bg {
    background: none;
    padding: 0;
    margin-top: 31.25vw;
  }
}
.process-bg .title01 {
  margin: 0 0 70px 0;
}

.process {
  width: min(1400px, 90%);
  margin: 0 auto;
}

.process-txt {
  width: min(600px, 100%);
  margin: 14dvh auto;
  font-size: 17px;
  letter-spacing: 0.075em;
  line-height: 2;
}
@media (max-width: 767px) {
  .process-txt {
    font-size: 4.7vw;
    margin: 14.37vw 0 0 0;
  }
}

@media (max-width: 1150px) {
  .process-list-scroll {
    overflow-x: auto;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .process-list-scroll {
    position: relative;
    width: 100%;
    height: 100vw;
    overflow: hidden;
    padding: 21.25vw 0 0 0;
    margin: 0 0 8vw 0;
  }
}

.process-list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1150px) {
  .process-list {
    justify-content: stretch;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 5px 10px 10px 10px;
  }
}
@media (max-width: 767px) {
  .process-list {
    flex-wrap: nowrap;
    position: absolute;
  }
}
.process-list li {
  width: 260px;
  padding: 3px 37px 11px 3px;
}
.process-list li .process-list-item {
  border-radius: 20px;
  padding: 25px;
  box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  height: 100%;
}
@media (max-width: 1150px) {
  .process-list li .process-list-item {
    min-width: 260px;
    max-width: 260px;
    border-radius: 5vw;
  }
}
@media (max-width: 767px) {
  .process-list li .process-list-item {
    padding: 6.25vw 5vw;
  }
}
.process-list li.arrow {
  position: relative;
}
.process-list li.arrow::before, .process-list li.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 7px;
  width: 26px;
  height: 2px;
  border-radius: 9999px;
  background-color: #d8caa9;
  transform-origin: calc(100% - 1px) 50%;
}
.process-list li.arrow::before {
  transform: rotate(45deg);
}
.process-list li.arrow::after {
  transform: rotate(-45deg);
}
.process-list li.hosoku {
  padding: 3px 7px 7px 3px;
}
.process-list li figure {
  text-align: right;
}
.process-list li h3 {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #005b76;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .process-list li h3 {
    font-size: 4.375vw;
    margin-top: 5vw;
  }
}
.process-list li p {
  font-size: 15px;
  line-height: 2;
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .process-list li p {
    font-size: 3.75vw;
    margin-top: 5vw;
  }
}

.approach-bg-area {
  border-radius: 0 0 50px 50px;
  padding: 120px 0 140px 0;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 767px) {
  .approach-bg-area {
    margin-top: 23.75vw;
    border-radius: 0 0 6.25vw 6.25vw;
    padding: 17.5vw 0;
  }
}

.approach-bg {
  background: url("../images/top/bg02.webp");
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  height: 110%;
  left: 0;
  position: fixed;
  top: -3%;
  width: 100%;
  z-index: -1;
  transition: transform 0.8s ease-out;
}

.approach {
  width: min(1168px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
@media (max-width: 767px) {
  .approach {
    display: block;
  }
}

.approach01,
.approach03 {
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0 55px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 51.37%;
}
@media (max-width: 767px) {
  .approach01,
.approach03 {
    width: auto;
    padding: 11.25vw 8.75vw;
  }
}
.approach01 h2,
.approach03 h2 {
  font-size: 30px;
  color: #005b76;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .approach01 h2,
.approach03 h2 {
    font-size: 6.25vw;
    margin-bottom: 5vw;
  }
}
.approach01 p,
.approach03 p {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .approach01 p,
.approach03 p {
    font-size: 3.75vw;
  }
}
.approach01 p strong,
.approach03 p strong {
  color: #9e7a2b;
}

.approach02 {
  width: 47.946%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}
@media (max-width: 767px) {
  .approach02 {
    width: auto;
    margin: 5px 0 0 0;
  }
}

.approach03 {
  padding: 20px 20px 20px 35px;
  width: auto;
}
@media (max-width: 767px) {
  .approach03 {
    padding: 5vw 8.75vw;
  }
}
.approach03 h3 {
  font-size: 18px;
  color: #005b76;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .approach03 h3 {
    font-size: 4.375vw;
    margin-bottom: 2vw;
  }
}
.approach03 p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.055em;
}
@media (max-width: 767px) {
  .approach03 p {
    font-size: 3.75vw;
  }
}

.supervised-bg {
  background: #f2f4ef url("../images/top/bg03.svg") no-repeat left calc(50% - 350px) top 7vw;
  padding: 10vw 0 120px 0;
  margin-top: -50px;
}
@media (max-width: 1400px) {
  .supervised-bg {
    background: #f2f4ef url("../images/top/bg03.svg") no-repeat left calc(-35vw + 100px) top 8vw;
    background-size: 120vw;
  }
}
@media (max-width: 1150px) {
  .supervised-bg {
    background: #f2f4ef url("../images/top/bg03.svg") no-repeat left calc(-20vw + 100px) top 8vw;
    background-size: 110vw;
  }
}
@media (max-width: 1024px) {
  .supervised-bg {
    background: #f2f4ef url("../images/top/bg03.svg") no-repeat left calc(-20vw + 100px) top 16vw;
    background-size: 110vw;
  }
}
@media (max-width: 880px) {
  .supervised-bg {
    background: #f2f4ef url("../images/top/bg03.svg") no-repeat left calc(-20vw + 100px) top 20vw;
    background-size: 110vw;
  }
}
@media (max-width: 767px) {
  .supervised-bg {
    background: none;
    padding: 0 0 27.5vw 0;
    margin-top: 16.25vw;
  }
}
.supervised-bg .title01 {
  margin: 0 0 70px 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .supervised-bg .title01 {
    margin: 0 0 12.5vw 0;
  }
}

.supervised {
  width: min(1400px, 90%);
  margin: 0 auto;
}
.supervised .title01 {
  line-height: 1.7;
}

.supervised01 {
  width: min(860px, 90%);
  margin: 140px auto 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .supervised01 {
    margin: 220px auto 0 auto;
  }
}
@media (max-width: 767px) {
  .supervised01 {
    flex-direction: column-reverse;
    margin: 0;
    width: auto;
  }
}

.supervised02 {
  width: 52.326%;
}
@media (max-width: 767px) {
  .supervised02 {
    width: auto;
  }
}
.supervised02 p {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-bottom: 1em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .supervised02 p {
    font-size: 5vw;
  }
}
.supervised02 p.btn {
  margin: 50px 0 0 0;
  font-weight: 700;
}
@media (max-width: 767px) {
  .supervised02 p.btn {
    margin: 27.5vw auto 0 auto;
  }
}

.supervised03 {
  width: 37.21%;
}
@media (max-width: 767px) {
  .supervised03 {
    width: 90%;
    margin: 0 auto 10vw auto;
  }
}
.supervised03 figure {
  border-radius: 20px;
  overflow: hidden;
}
.supervised03 dl {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 10px;
  margin-top: 10px;
}
.supervised03 dl dt {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-right: 5px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .supervised03 dl dt {
    font-size: 3.5vw;
  }
}
.supervised03 dl dd {
  font-size: 19px;
  line-height: 1.5;
  color: #005b76;
  letter-spacing: 0.055em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .supervised03 dl dd {
    font-size: 4.375vw;
  }
}
.supervised03 p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .supervised03 p {
    font-size: 3.5vw;
  }
}

.contact-bg {
  background: #005b76;
  background-size: cover;
  border-radius: 50px;
  padding: 120px 0 80px 0;
  margin-top: -50px;
  position: relative;
}
@media (max-width: 767px) {
  .contact-bg {
    margin-top: 0;
    padding: 18.75vw 0 12.5vw 0;
    border-radius: 0 0 6.25vw 6.25vw;
  }
}

.contact {
  width: min(1368px, 90%);
  margin: 0 auto;
}
.contact .title01 {
  color: #fff;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 35px;
}
@media (max-width: 767px) {
  .contact .title01 {
    font-size: 6.25vw;
    margin-bottom: 6.25vw;
  }
}
.contact .title01 strong {
  border: 1px solid #b49851;
  color: #b49851;
  padding: 3px 0 3px 10px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .contact .title01 strong {
    padding: 0 10px;
  }
}

.contact-txt {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contact-txt {
    font-size: 3.75vw;
    margin-bottom: 6.25vw;
  }
}

.contact-box {
  background: rgba(255, 255, 255, 0.83);
  border-radius: 20px;
  padding: 40px 60px 50px 35px;
  box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contact-box {
    padding: 7vw 5vw 13vw 5vw;
  }
}
.contact-box h3 {
  font-size: 30px;
  color: #005b76;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contact-box h3 {
    font-size: 4.375vw;
    margin-bottom: 5vw;
  }
}
.contact-box dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact-box dl {
    margin-top: 8.75vw;
  }
}
.contact-box dl dt {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #e60012;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .contact-box dl dt {
    font-size: 3.125vw;
    margin-bottom: 4.375vw;
  }
}
.contact-box dl dd {
  width: calc(100% - 50px);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .contact-box dl dd {
    margin-bottom: 4.375vw;
    width: calc(100% - 11.5vw);
  }
}
.contact-box dl dd input {
  font-family: "Shippori Mincho", serif;
  border: 1px solid #3e3a39;
  border-radius: 5px;
}
.contact-box dl dd input[type=text], .contact-box dl dd input[type=email], .contact-box dl dd input[type=tel] {
  padding: 17px 15px;
  width: 100%;
  box-sizing: border-box;
  background: none;
}
@media (max-width: 767px) {
  .contact-box dl dd input[type=text], .contact-box dl dd input[type=email], .contact-box dl dd input[type=tel] {
    padding: 10px 8px;
  }
}
.contact-box dl dd input::-moz-placeholder {
  color: #989898;
  font-size: 17px;
}
.contact-box dl dd input::placeholder {
  color: #989898;
  font-size: 17px;
}
@media (max-width: 767px) {
  .contact-box dl dd input::-moz-placeholder {
    font-size: 3.125vw;
  }
  .contact-box dl dd input::placeholder {
    font-size: 3.125vw;
  }
}
.contact-box dl dd textarea {
  font-family: "Shippori Mincho", serif;
  border: 1px solid #3e3a39;
  border-radius: 5px;
  padding: 17px 15px;
  width: 100%;
  box-sizing: border-box;
  background: none;
  resize: vertical;
  min-height: 150px;
}
@media (max-width: 767px) {
  .contact-box dl dd textarea {
    padding: 10px 8px;
    min-height: 27.125vw;
  }
}
.contact-box dl dd textarea::-moz-placeholder {
  color: #989898;
  font-size: 17px;
}
.contact-box dl dd textarea::placeholder {
  color: #989898;
  font-size: 17px;
}
@media (max-width: 767px) {
  .contact-box dl dd textarea::-moz-placeholder {
    font-size: 3.125vw;
  }
  .contact-box dl dd textarea::placeholder {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .contact-box .contact-check {
    font-size: 3.125vw;
  }
}
.contact-box .contact-check label {
  margin-right: 20px;
}
.contact-box .contact-check label input {
  margin-right: 5px;
}
.contact-box .contact-privacy {
  text-align: center;
  margin: 15px 0 40px 0;
  font-size: 17px;
  letter-spacing: 0.075em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .contact-box .contact-privacy {
    font-size: 4.125vw;
  }
}
.contact-box .contact-privacy input {
  margin-right: 5px;
}
.contact-box .submit {
  text-align: center;
}
.contact-box .submit input,
.contact-box .submit button {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.045em;
  font-weight: 600;
  width: 280px;
  border-radius: 34px;
  background: #b49851 url("../images/common/contact.svg") no-repeat center left 25px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  height: 56px;
}
@media (max-width: 767px) {
  .contact-box .submit input,
.contact-box .submit button {
    font-size: 4.375vw;
    width: 80vw;
    height: 14.375vw;
    background-position: center left 10vw;
    border-radius: 7.1875vw;
    margin: 0 auto;
    display: block;
  }
}
.contact-box .submit input:hover,
.contact-box .submit button:hover {
  background: #005b76 url("../images/common/contact.svg") no-repeat center left 25px;
}

.contact-at {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
  justify-content: space-between;
  width: 97%;
  margin: 30px auto 0 auto;
}
@media (max-width: 767px) {
  .contact-at {
    flex-direction: column;
    margin: 0 auto;
  }
  .contact-at dt {
    margin-top: 6.25vw;
  }
}
.contact-at dd {
  width: calc(100% - 183px);
  text-indent: -1em;
  margin-left: 1em;
}
@media (max-width: 767px) {
  .contact-at dd {
    width: auto;
    text-indent: 0;
    margin-left: 0;
  }
}

.contact-btn-sp {
  background: rgba(2, 48, 58, 0.21);
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 4.375vw 5vw;
  box-sizing: border-box;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.contact-btn-sp.active {
  display: none;
  opacity: 1;
  visibility: visible;
}

.article-bg01 {
  padding: 90px 0 0 0;
}
@media (max-width: 767px) {
  .article-bg01 {
    padding: 17.5vw 0 8vw 0;
  }
}
.article-bg01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  background: #f2f4ef;
  background-size: cover;
  z-index: -1;
  border-radius: 0 0 50px 50px;
}
@media (max-width: 767px) {
  .article-bg01::before {
    border-radius: 0 0 6.25vw 6.25vw;
  }
}

.pankuzu {
  text-align: right;
  color: #7d7877;
  font-size: 12px;
  letter-spacing: 0.075em;
  margin: 0 60px 0 0;
}
@media (max-width: 767px) {
  .pankuzu {
    margin: 0 5% 5.625vw 5%;
    font-size: 2.5vw;
  }
}
.pankuzu a {
  color: #7d7877;
}

.article-wrap {
  width: min(1220px, 90%);
  margin: 0 auto;
  display: flex;
  gap: 75px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .article-wrap {
    display: block;
    gap: 0;
  }
}

.article-title-box {
  width: min(1220px, 90%);
  margin: 35px auto;
}
@media (max-width: 767px) {
  .article-title-box {
    margin: 5vw auto;
  }
}

.article-title {
  font-size: 43px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: 700;
  margin: 10px 0 30px 0;
  color: #005b76;
}
@media (max-width: 767px) {
  .article-title {
    font-size: 8.75vw;
  }
}

.article-detail-date {
  display: inline-flex;
  border: 1px solid #c1c2c2;
  padding: 3px 6px;
  font-size: 12px;
  letter-spacing: 0.075em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .article-detail-date {
    font-size: 2.875vw;
  }
}
.article-detail-date li {
  width: 140px;
  text-align: center;
  padding: 2px 0;
}
.article-detail-date li:nth-child(1) {
  border-right: 1px solid #c1c2c2;
}
@media (max-width: 767px) {
  .article-detail-date li {
    width: auto;
    font-size: 2.875vw;
    padding: 2px 5vw;
  }
}

.article-tag {
  display: flex;
  gap: 20px;
  margin: 40px 0 60px 0;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .article-tag {
    margin: 11.25vw 0 0 0;
    gap: 6.25vw;
  }
}
.article-tag li {
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .article-tag li {
    font-size: 2.75vw;
  }
}
.article-tag li a {
  text-decoration: none;
  color: #231815;
}
.article-tag li a:hover {
  color: #999;
}

.article-document {
  width: calc(100% - 420px);
}
@media (max-width: 1024px) {
  .article-document {
    width: auto;
  }
}
.article-document img {
  border-radius: 35px;
  margin: 0 0 40px 0;
}
@media (max-width: 767px) {
  .article-document img {
    border-radius: 4.375vw;
  }
}
.article-document h2 {
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #005b76;
  margin: 100px 0 30px 0;
}
@media (max-width: 767px) {
  .article-document h2 {
    font-size: 6.25vw;
    margin-bottom: 5vw;
  }
}
.article-document h3 {
  font-size: 23px;
  line-height: 1.8;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #005b76;
  margin: 100px 0 20px 0;
}
@media (max-width: 767px) {
  .article-document h3 {
    font-size: 5vw;
    margin-bottom: 5vw;
  }
}
.article-document p {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .article-document p {
    font-size: 5vw;
    margin-bottom: 8.75vw;
  }
}
.article-document p.related-txt {
  color: #b49851;
}
.article-document p.related-txt a {
  color: #b49851;
}
.article-document table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0;
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #979899;
}
@media (max-width: 767px) {
  .article-document table {
    margin-bottom: 8.75vw;
  }
}
.article-document table th,
.article-document table td {
  border: none;
  border-right: 1px solid #979899;
  border-bottom: 1px solid #979899;
  padding: 15px 20px;
  text-align: left;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.075em;
  font-weight: 500;
  background: #f2f4ef;
  vertical-align: top;
  width: 33.3333333%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .article-document table th,
.article-document table td {
    font-size: 3.5vw;
    padding: 3vw;
    line-height: 1.7;
  }
}
.article-document table th:last-child,
.article-document table td:last-child {
  border-right: none;
}
.article-document table th {
  background: #005b76;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .article-document table th {
    font-size: 3.5vw;
  }
}
.article-document table tr:last-child td {
  border-bottom: none;
}
.article-document ul {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.8;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .article-document ul {
    font-size: 5vw;
    margin-bottom: 8.75vw 0;
  }
}
.article-document ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.article-document ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #005b76;
}
.article-document .references {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.075em;
  font-weight: 500;
  color: #231815;
  margin-top: 120px;
  background: #f2f4ef;
  padding: 30px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .article-document .references {
    font-size: 4vw;
    margin-top: 20vw;
    padding: 5vw;
  }
}
.article-document .references a {
  color: #b49851;
}
.article-document .references ol li {
  margin: 0 0 20px 2em;
  text-indent: -2em;
  word-break: break-all;
}
.article-document .references h3 {
  margin: 0 0 20px 0;
  font-size: 19px;
}
@media (max-width: 767px) {
  .article-document .references h3 {
    font-size: 5.75vw;
  }
}

.article-menu {
  width: 345px;
}
@media (max-width: 1024px) {
  .article-menu {
    width: auto;
    margin: 20vw 0;
  }
}

.article-menu-box {
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
}

.article-menu-title {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.075em;
  font-weight: 600;
  color: #fff;
  padding: 15px 20px;
  background: #005b76;
}
@media (max-width: 767px) {
  .article-menu-title {
    font-size: 6.25vw;
    padding: 4vw 5vw;
  }
}

.article-content-list {
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .article-content-list {
    padding: 6vw 8.75vw;
  }
}
.article-content-list li a {
  display: block;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.075em;
  font-weight: 500;
  color: #231815;
  transition: color 0.2s;
  position: relative;
  text-decoration: none;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .article-content-list li a {
    padding: 0 0 0 5vw;
    margin-bottom: 5vw;
    font-size: 3.75vw;
  }
}
.article-content-list li a::before, .article-content-list li a::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #231815;
  transition: background-color 0.2s;
  transform-origin: calc(100% - 1px) 50%;
}
@media (max-width: 767px) {
  .article-content-list li a::before, .article-content-list li a::after {
    top: 3.4vw;
    width: 2.5vw;
    height: 0.3vw;
  }
}
.article-content-list li a::before {
  transform: rotate(45deg);
}
.article-content-list li a::after {
  transform: rotate(-45deg);
}
.article-content-list li a:hover {
  color: #b49851;
}
.article-content-list li a:hover::before, .article-content-list li a:hover::after {
  background-color: #b49851;
}

.article-inquiries {
  margin: 50px 0 0 0;
  background: #f2f4ef;
  border-radius: 20px;
  padding: 30px 30px 40px 30px;
  box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .article-inquiries {
    padding: 5vw;
    margin: 8.75vw 0 0 0;
    padding: 5vw;
  }
}
.article-inquiries .title01 {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .article-inquiries .title01 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .article-inquiries .title01 {
    font-size: 5vw;
  }
}
.article-inquiries .contact-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .article-inquiries .contact-btn a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 5.3vw;
    line-height: 15vw;
    border-radius: 11vw;
    background: #b49851 url("../images/common/contact.svg") no-repeat center left 19vw;
    background-size: 6.25vw;
    padding: 0 0 0 6vw;
    text-align: center;
  }
}

.related-list {
  background: #f2f4ef;
  border-radius: 20px;
  margin: 160px 0 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .related-list {
    margin: 27.5vw 0 0 0;
    border-radius: 6.25vw;
  }
  .related-list .article.list-page {
    margin-bottom: -5vw;
    padding-top: 10vw;
  }
  .related-list .article.list-page .article-list {
    margin: 10vw 0 0 0;
  }
}
.related-list h3 {
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #005b76;
}
@media (max-width: 767px) {
  .related-list h3 {
    font-size: 6.25vw;
  }
}
.related-list .list-page .article-list {
  margin: 30px 0 0 0;
}

.yarpp-template-yarpp-template-custom {
  display: contents !important;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 40px;
  font-size: 16px;
  gap: 15px;
  font-weight: 500;
}
.wp-pagenavi a {
  text-decoration: none;
  width: 30px;
  border-radius: 15px;
  display: block;
  text-align: center;
  line-height: 30px;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  position: relative;
  display: block;
  text-indent: -9999px;
  margin: 0 0 0 20px;
  transition: opacity 0.2s;
}
.wp-pagenavi a.nextpostslink::before, .wp-pagenavi a.nextpostslink::after,
.wp-pagenavi a.previouspostslink::before,
.wp-pagenavi a.previouspostslink::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 7px;
  width: 26px;
  height: 2px;
  border-radius: 9999px;
  background-color: #d8caa9;
  transform-origin: calc(100% - 1px) 50%;
}
.wp-pagenavi a.nextpostslink::before,
.wp-pagenavi a.previouspostslink::before {
  transform: rotate(45deg);
}
.wp-pagenavi a.nextpostslink::after,
.wp-pagenavi a.previouspostslink::after {
  transform: rotate(-45deg);
}
.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi a.previouspostslink:hover {
  opacity: 0.5;
}

.wp-pagenavi a.previouspostslink {
  margin: 0 20px 0 0;
}
.wp-pagenavi a.previouspostslink::before {
  transform: rotate(-135deg);
}
.wp-pagenavi a.previouspostslink::after {
  transform: rotate(135deg);
}

.wp-pagenavi a:hover {
  color: #999;
}

.wp-pagenavi .current {
  width: 40px;
  border-radius: 20px;
  display: block;
  background-color: #b49851;
  text-align: center;
  line-height: 40px;
  color: #fff;
}

.page-pankuzu {
  margin: 90px 0 0 0;
}
@media (max-width: 767px) {
  .page-pankuzu {
    margin: 17vw 0 0 0;
  }
}

.supervised-title {
  font-size: 43px;
  line-height: 1.8;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #005b76;
  margin: 50px 0 80px 0;
}
@media (max-width: 767px) {
  .supervised-title {
    font-size: 8.75vw;
    margin: 12.5vw 0;
  }
}

.supervised-page {
  width: min(1110px, 90%);
  margin: 0 auto;
}

.supervised-page01 {
  width: min(870px, 90%);
  margin: 80px auto 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .supervised-page01 {
    flex-direction: column-reverse;
    margin: 0;
    width: auto;
  }
}

.supervised-page02 {
  width: 61.5%;
}
@media (max-width: 767px) {
  .supervised-page02 {
    width: auto;
  }
}
.supervised-page02 h3 {
  font-size: 30px;
  color: #005b76;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: 600;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .supervised-page02 h3 {
    font-size: 6.25vw;
    margin-bottom: 5vw;
  }
}
.supervised-page02 h3 span {
  color: #3e3a39;
  font-size: 17px;
}
@media (max-width: 767px) {
  .supervised-page02 h3 span {
    font-size: 3.75vw;
  }
}
.supervised-page02 dl {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-bottom: 1em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .supervised-page02 dl {
    font-size: 5vw;
  }
}
.supervised-page02 dl dt {
  font-weight: 600;
}
.supervised-page02 p {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-bottom: 1em;
  font-weight: 500;
}
.supervised-page02 p a {
  color: #9e7a2b;
  font-weight: 600;
  text-decoration: none;
}
.supervised-page02 p a:hover {
  text-decoration: underline;
}

.supervised-page03 {
  width: 35.978%;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .supervised-page03 {
    width: 90%;
    margin: 0 auto 10vw auto;
  }
}

.supervised-document {
  width: min(870px, 90%);
  margin: 70px auto 0 auto;
}
.supervised-document h3 {
  font-size: 18px;
  color: #005b76;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .supervised-document h3 {
    font-size: 5vw;
    margin-bottom: 5vw;
  }
}
.supervised-document h3.career {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .supervised-document h3.career {
    margin-left: 0;
  }
}
.supervised-document h3.media {
  margin-top: 40px;
}
.supervised-document h4 {
  font-size: 17px;
  line-height: 2.2;
  font-weight: 600;
  width: 4em;
  text-align: right;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .supervised-document h4 {
    font-size: 5vw;
    width: 20vw;
  }
}
.supervised-document dl {
  display: flex;
  letter-spacing: 0.075em;
  font-size: 17px;
  line-height: 2.2;
  font-weight: 600;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .supervised-document dl {
    font-size: 5vw;
    margin-bottom: 10vw;
  }
}
.supervised-document dl:nth-last-child(1) {
  margin-bottom: 0;
}
.supervised-document dl dt {
  width: 4em;
  text-align: right;
}
@media (max-width: 767px) {
  .supervised-document dl dt {
    width: 20vw;
  }
}
.supervised-document dl dd {
  width: calc(100% - 4.5em);
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .supervised-document dl dd {
    width: calc(100% - 20.5vw);
    margin-left: 0.5vw;
  }
}
.supervised-document p {
  letter-spacing: 0.075em;
  font-size: 17px;
  line-height: 2.2;
  font-weight: 600;
}
@media (max-width: 767px) {
  .supervised-document p {
    font-size: 5vw;
  }
}
.supervised-document .title01 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .supervised-document .title01 {
    margin-bottom: 10vw;
  }
}

.supervised-box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 40px 60px 50px 35px;
  box-shadow: 3px 1px 9px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .supervised-box {
    padding: 7vw 5vw 13vw 5vw;
    border-radius: 1.875vw;
  }
}

.supervised-page04 {
  width: min(810px, 100%);
  margin: 40px auto 130px auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .supervised-page04 {
    flex-direction: column;
    margin: 12.5vw auto 20vw auto;
    width: auto;
  }
}
.supervised-page04 ul {
  padding: 0 0 0 25px;
}
.supervised-page04 ul li {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.075em;
  font-weight: 600;
  list-style-type: disc;
}
@media (max-width: 767px) {
  .supervised-page04 ul li {
    font-size: 5vw;
  }
}

.supervised-page05 {
  width: 50%;
}
@media (max-width: 767px) {
  .supervised-page05 {
    width: auto;
    margin-bottom: 10vw;
  }
}

.katou {
  border-top: 1px solid #3e3a39;
  width: min(955px, 90%);
  margin: 90px auto 180px auto;
}
@media (max-width: 767px) {
  .katou {
    margin: 15vw 0 30vw 0;
    padding-top: 15vw;
    width: auto;
  }
  .katou .supervised-page01 {
    width: 90%;
    margin: 0 auto;
  }
}
.katou .supervised-document dl dt {
  width: 5em;
}
.katou .supervised-document dl dd {
  width: calc(100% - 5.5em);
}

.contact-box-form {
  position: relative;
  width: 100%;
  height: 0;
  /* 比率の調整。長さに応じて padding-top を 100%〜150% などに変更してください */
  padding-top: 945px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-box-form {
    padding-top: 1500px;
  }
}
.contact-box-form iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-404 {
  width: min(700px, 90%);
  margin: 70px auto 120px auto;
}
.page-404 .title01 {
  margin: 0 0 30px 0;
}
/*# sourceMappingURL=style.css.map */