@charset "UTF-8";
/*---------------------
base
---------------------*/
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  font-family: "NotoSansJP-Regular", sans-serif;
  font-weight: normal;
  overflow-x: hidden;
  background-image: url("assets/img/bg/bg_tile_white.svg");
}

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

a:focus {
  outline: none;
}

a:hover {
  opacity: 0.8;
}

a:active {
  color: inherit;
}

ul,
ol,
dl,
dt,
dd,
li {
  list-style: none;
}

/*---------------------
Reset
---------------------*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

input,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  width: 260px;
  height: 50px;
  border: 1px solid #334971;
  border-radius: 56px;
  background-color: #ffffff;
  color: #334971;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button:hover {
  border: 1px solid #ffffff;
  background-color: #334971;
  color: #ffffff;
}
.button:hover .button__arrow::before {
  background: #ffffff;
}
.button:hover .button__arrow::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.button:hover .button__newtab svg {
  fill: #ffffff;
}

.button__link {
  padding: 13px 30px;
  width: 100%;
  height: 100%;
}
.button__link:hover {
  opacity: 1;
}

.button__arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  position: absolute;
  right: 50px;
}

.button__arrow::before,
.button__arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.button__arrow::before {
  left: 4px;
  width: 14px;
  height: 1px;
  background: #334971;
}

.button__arrow::after {
  left: 8px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #334971;
  border-right: 1px solid #334971;
  transform: rotate(45deg);
}

.button__newtab {
  position: absolute;
  right: 30px;
}

.button__newtab svg {
  fill: #334971;
}

.button__link--return {
  margin-left: 16px;
}

.return {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.return__text {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  color: #334971;
}

.return__circle {
  width: 40px;
  height: 40px;
  border: 1px solid #334971;
  border-radius: 56px;
  background-color: #ffffff;
  color: #334971;
  cursor: pointer;
}
.return__circle:hover {
  background-color: #334971;
  border: 1px solid #ffffff;
}
.return__circle:hover .return__arrow::before {
  background: #ffffff;
}
.return__circle:hover .return__arrow::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.footer__return--link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.return__arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

.return__arrow::before,
.return__arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.return__arrow::before {
  top: 6px;
  left: 12px;
  width: 15px;
  height: 1px;
  transform: rotate(90deg);
  background: #334971;
}

.return__arrow::after {
  top: 4px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #334971;
  border-right: 1px solid #334971;
  transform: rotate(-43deg);
}

.header {
  position: fixed;
  top: 0;
  height: 95px;
  width: 100%;
  z-index: 99;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.header__wrapper {
  position: relative;
  padding: 20px 60px 20px 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 通常時のスタイル */
.header__company-name {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}
.header__company-name:hover h2 {
  opacity: 0.8;
}

.header__company-name--text {
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1rem, 0.917rem + 0.42vw, 1.25rem);
}

.header__company-name--text br {
  display: none;
}

.header__list {
  display: none;
}

.header.open {
  background-color: #f5f9fb !important;
}

/* 横並び時のスタイル */
.header.horizontal-layout {
  height: 55px;
}

.header__company-name.horizontal-layout {
  flex-direction: row;
  align-items: center; /* 縦方向の中央揃え */
  gap: 15px; /* 横並び時の間隔調整 */
}

@media screen and (min-width: 490px) {
  .header__company-name {
    align-items: center;
  }
  .header__list {
    display: block;
    display: flex;
    gap: 50px;
    color: #333333;
  }
  .header__item {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .header__item::after {
    position: absolute;
    bottom: -4px; /*テキストからの距離*/
    left: 0;
    content: "";
    width: 100%; /*hover時に表示*/
    height: 2px; /*下線の高さ*/
    background: #334971;
    transform: scale(0, 1); /*トランス前の下線*/
    transform-origin: left top; /*トランスフォーム開始位置*/
    transition: transform 0.3s; /*アニメーション速度*/
  }
  .header__item:hover::after {
    transform: scale(1, 1); /*トランス後の下線*/
  }
  .header.horizontal-layout {
    height: 75px;
  }
}
@media screen and (min-width: 490px) and (max-width: 768px) {
  .header__list {
    font-size: 0.875rem;
    gap: 20px;
  }
}
@media screen and (min-width: 490px) and (max-width: 530px) {
  .header__company-name.horizontal-layout .header__company-name--text {
    font-size: 0.75rem;
  }
}
.menu {
  position: fixed;
  top: 0;
  top: 55px;
  left: -100%;
  width: 100%;
  height: 100%;
  color: #333333;
  list-style-type: none;
}

/* ハンバーガーメニューが開いているとき */
.menu.open {
  left: 0;
  background-color: #f5f9fb;
  transition: left 0.3s ease;
}

.menu__wrapper {
  padding: 40px;
}

.menu__item {
  padding: 20px 0 20px 10px;
  border-bottom: 1px solid #334971;
}

.menu__item:first-of-type {
  padding: 0 0 20px 10px;
}

.menu__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.menu__tel {
  font-size: 2rem;
  color: #334971;
  white-space: nowrap;
  text-align: end;
}

.menu__tel--decoration {
  font-size: 1rem;
  color: #333333;
}

.menu__text {
  margin-top: 5px;
}

.no-scroll {
  overflow: hidden;
}

.logo {
  font-weight: normal;
  font-size: clamp(1rem, 0.917rem + 0.42vw, 1.25rem);
}

.hamburger-menu {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  cursor: pointer;
  background-color: #334971;
  border-radius: 0 0 0 10px;
}

.hamburger-menu span {
  display: block;
  height: 2px;
  width: 26px;
  background-color: #ffffff;
  margin: 8px 0;
  transition: 0.4s;
}

.hamburger-menu.active span {
  background-color: #fff;
}

/* バツ印に変化するスタイル */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-315deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(315deg) translate(9px, -9px);
}

@media screen and (min-width: 490px) {
  .hamburger-menu {
    display: none;
  }
}
.page-title {
  height: auto;
  width: 100%;
}

.page-title__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 145px;
  padding-bottom: 60px;
  background-image: url("assets/img/bg/bg_tile.svg");
  border-radius: 0 0 50px 0;
}

.page-title__title {
  color: #334971;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.938rem, 1.688rem + 1.25vw, 2.625rem);
}

.page-title__subtitle {
  margin-top: 10px;
  color: #707070;
  font-size: 0.875rem;
}

@media screen and (min-width: 490px) {
  .page-title__wrapper {
    padding-top: 108px;
    padding-bottom: 120px;
    border-radius: 0 0 100px 0;
  }
  .page-title__subtitle {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-title__wrapper {
    border-radius: 0 0 100px 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-title__wrapper {
    border-radius: 0 0 150px 0;
  }
}
.company-information__wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  background-image: none;
}

.company-information__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px 10px;
}

.company-information__headline {
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
  color: #334971;
  line-height: 1.5;
}

.company-information__headline br {
  display: none;
}

.company-information__outline {
  margin: 20px 0;
  line-height: 2.5;
  background-image: url("assets/img/bg/bk_circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-clip: padding-box;
}

.company-information__image {
  position: relative;
  height: 256px;
  margin-top: 30px;
  margin-left: 24px;
}

.company-information__photo {
  height: 100%;
  width: 100%;
  border-radius: 10px 0 0 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-information__border-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 0;
  bottom: -10px;
  border: 1px solid #334971;
  border-radius: 10px 0 0 10px;
  pointer-events: none;
  z-index: 2;
}

iframe {
  width: 241px !important;
  height: 241px !important;
}

@media screen and (min-width: 768px) {
  .company-information__wrapper {
    flex-direction: row;
    gap: 80px;
    margin-top: 60px;
    margin-bottom: 100px;
    padding-bottom: 100px;
    margin-left: 167px;
    height: -moz-fit-content;
    height: fit-content;
    background-image: url("assets/img/bg/bk_circle.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-clip: padding-box;
  }
  .company-information__headline {
    line-height: 3.75rem;
  }
  .company-information__headline br {
    display: block;
  }
  .company-information__inner {
    height: 100%;
    padding-top: 100px;
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0;
    justify-content: start;
    align-items: start;
    flex: 0.95;
  }
  .company-information__outline {
    background-image: none;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  .company-information__image {
    height: 532px;
    margin-top: 140px;
    margin-left: 0;
    flex: 1.1;
  }
  .company-information__photo {
    border-radius: 20px 0 0 20px;
  }
  .company-information__border-overlay {
    border-radius: 20px 0 0 20px;
  }
  .company-information__button {
    padding-top: 30px;
  }
}
@media screen and (min-width: 470px) and (max-width: 768px) {
  .company-information__wrapper {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1650px) {
  iframe {
    width: 600px !important;
    height: 450px !important;
  }
}
.mainvisual {
  width: 100vw;
}

.mainvisual__container {
  height: 340px;
  width: 100%;
  position: relative;
}

.mainvisual__image {
  height: 330px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 0 30px;
}

.mainvisual__border-overlay {
  position: absolute;
  top: -10px;
  left: 15px;
  right: -10px;
  bottom: 0px;
  border: 1px solid #334971;
  border-radius: 0 0 0 30px;
  pointer-events: none;
  z-index: 10;
}

.mainvisual__headline--decoration-xl {
  font-size: clamp(2.5rem, 1.636rem + 4.32vw, 4.875rem);
}

.mainvisual__headline--decoration-l {
  font-size: clamp(1.875rem, 0.946rem + 4.07vw, 4rem);
}

.mainvisual__headline--adjust-space {
  font-feature-settings: "palt";
}

.mainvisual__headline {
  padding: 60px 8px 50px 24px;
  font-size: clamp(1.875rem, 1.466rem + 2.05vw, 3rem);
  font-family: "BIZ+UDPMincho-Regular", serif;
  color: #334971;
}

.mainvisual__headline--text {
  background: linear-gradient(to bottom, transparent calc(100% - 30px), #ffffff calc(100% - 30px));
  background-repeat: no-repeat;
}

@media screen and (min-width: 490px) {
  .mainvisual {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    height: 740px;
    width: 100vw;
  }
  .mainvisual__container {
    position: absolute;
    top: 0;
    right: -200px;
    height: 100%;
    width: 100%;
    padding-bottom: 20px;
  }
  .mainvisual__image {
    height: 100%;
  }
  .mainvisual__headline {
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 10;
    padding-left: 80px;
    padding-right: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mainvisual__border-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 88%, 10% 80%, 0 62%);
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__headline--decoration-l {
    padding-left: 170px;
  }
}
@media screen and (min-width: 470px) and (max-width: 768px) {
  .mainvisual__border-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 88%, 10% 80%, 0 66%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainvisual__border-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 88%, 10% 80%, 0 65%);
  }
}
.main__wrapper {
  padding: 50px 24px 60px;
  background-image: url("assets/img/bg/bg_tile.svg");
  border-radius: 50px 0 0 0;
}

.main__title {
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.938rem, 1.688rem + 1.25vw, 2.625rem);
  color: #334971;
}

.main__subtitle {
  font-size: 0.875rem;
  color: #707070;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .main__wrapper {
    padding: 130px 8% 60px 11%;
    border-radius: 200px 0 0 0;
  }
}
.section__wrapper {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}

.section__title {
  margin-bottom: 30px;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
  color: #334971;
}

.section__image {
  position: relative;
  padding: 0 10px 10px 0;
  width: auto;
  margin-bottom: 40px;
}

.section__photo {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section__text {
  line-height: 2rem;
}

.section__content--text {
  line-height: 2rem;
}

.section__border-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 0;
  bottom: 0;
  border: 1px solid #334971;
  border-radius: 10px;
  pointer-events: none;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .section__wrapper {
    flex-direction: row;
    padding-bottom: 50px;
    gap: 60px;
    align-items: flex-start;
  }
  .section__title {
    display: inline-block;
    position: sticky;
    top: 100px;
    margin-bottom: 0;
    flex: 0.8;
  }
  .section__inner {
    height: 100%;
    flex: 1.2;
  }
  .section__content {
    flex: 1.2;
  }
  .section__image {
    width: auto;
    height: 448px;
    margin-bottom: 40px;
  }
  .section__photo {
    height: 100%;
    border-radius: 20px;
  }
  .section__border-overlay {
    border-radius: 20px;
  }
}
.greeting__wrapper {
  padding: 60px 0;
}

.greeting__title {
  padding: 0 24px;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
  color: #334971;
}

.greeting__title--pc {
  display: none;
}

.greeting__title--sp {
  display: block;
}

.greeting__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.greeting__text {
  line-height: 2.5;
  margin-bottom: 30px;
}

.greeting__image {
  position: relative;
  margin-top: 30px;
  padding-bottom: 10px;
  padding-right: 24px;
  align-self: start;
  width: calc(100% - 24px);
  height: 250px;
}

.greeting__photo {
  height: 100%;
  width: 100%;
  border-radius: 0 10px 10px 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.greeting__border-overlay {
  position: absolute;
  top: 10px;
  left: 0px;
  right: 10px;
  bottom: 0px;
  border: 1px solid #334971;
  border-radius: 0 10px 10px 0;
  pointer-events: none;
  z-index: 10;
}

.greeting__note {
  padding: 30px 24px 0;
}

.greeting__name {
  text-align: right;
}

@media screen and (min-width: 1024px) {
  .greeting__wrapper {
    height: 100%;
    padding-right: 10%;
    padding-bottom: 100px;
  }
  .greeting__inner {
    flex-direction: row;
    gap: 70px;
  }
  .greeting__image {
    flex: 1;
    padding-bottom: 10px;
    margin: 0;
  }
  .greeting__photo {
    border-radius: 0 30px 30px 0;
  }
  .greeting__border-overlay {
    border-radius: 0 30px 30px 0;
  }
  .greeting__note {
    flex: 1.5;
  }
  .greeting__text {
    margin: 60px 0;
  }
  .greeting__title {
    padding: 0;
  }
  .greeting__title--pc {
    display: block;
  }
  .greeting__title--sp {
    display: none;
  }
}
@media screen and (min-width: 490px) and (max-width: 1024px) {
  .greeting__image {
    height: 510px;
  }
}
@media screen and (min-width: 1024px) {
  .greeting__image {
    height: 510px;
    width: 540px;
  }
}
.overview__bgright--image {
  display: none;
}

.overview__bgleft--image {
  display: none;
}

.overview__wrapper {
  padding: 60px 24px;
  margin-bottom: 60px;
  margin-left: 24px;
  margin-right: 24px;
  background-color: #f2faff;
  border-radius: 20px;
}

.overview__title {
  margin-bottom: 30px;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
  color: #334971;
}

.overview__list {
  text-align: left;
}

.overview__dt {
  color: #334971;
  margin-bottom: 10px;
}

.overview__dd {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #334971;
}

iframe {
  width: 100%;
  aspect-ratio: 1;
}

@media screen and (min-width: 1024px) {
  .overview {
    position: relative;
  }
  .overview__bgright--image {
    display: block;
    position: absolute;
    top: -250px;
    right: 0;
    z-index: -1;
  }
  .overview__bgleft--image {
    display: block;
    position: absolute;
    bottom: -100px;
    z-index: -1;
  }
  .overview__wrapper {
    padding: 60px 75px;
    margin-left: 150px;
    margin-right: 150px;
    margin-bottom: 100px;
  }
  .overview__title {
    margin-bottom: 60px;
  }
  .overview__list {
    display: flex;
    flex-wrap: wrap;
  }
  .overview__dt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    margin-right: 10px;
    padding: 20px 60px;
    width: 200px;
    border-bottom: 1px solid #334971;
  }
  .overview__dd {
    margin: 0;
    padding: 20px 50px;
    width: calc(100% - 210px);
    border-bottom: 1px solid #cccccc;
  }
}
@media screen and (min-width: 1280px) {
  .overview__wrapper {
    margin-left: 290px;
    margin-right: 290px;
  }
}
@media screen and (min-width: 768px) {
  .overview__dd a[href^="tel:"] {
    pointer-events: none;
  }
}
.recruit__container {
  margin: 0 auto;
  padding: 60px 24px;
}

.recruit__headline {
  margin-bottom: 60px;
  line-height: 2.5;
}

.recruit__inner {
  margin-bottom: 50px;
}

.recruit__bgleft--image {
  display: none;
}

.recruit__title {
  margin-bottom: 30px;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
  color: #334971;
}

.recruit__subtitle {
  margin-bottom: 30px;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.25rem, 1.136rem + 0.57vw, 1.563rem);
  color: #334971;
}

.recruit__text {
  margin-bottom: 30px;
}

.recruit__image {
  position: relative;
}

.recruit__photo {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit__border-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid #334971;
  border-radius: 10px;
  pointer-events: none;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .recruit__headline {
    padding: 0 50px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .recruit__container {
    padding: 100px 168px;
  }
  .recruit__headline {
    padding: 0 195px;
  }
  .recruit__wrapper {
    position: relative;
  }
  .recruit__bgleft--image {
    display: block;
    position: absolute;
    top: -120px;
    left: -170px;
    z-index: -1;
  }
  .recruit__inner {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 0px;
  }
  .recruit__inner--gap {
    margin-bottom: 60px;
  }
  .recruit__inner--row-reverse {
    flex-direction: row-reverse;
  }
  .recruit__note {
    flex: 1.05;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .recruit__title {
    margin-bottom: 60px;
  }
  .recruit__image {
    flex: 0.95;
    width: 530px;
  }
  .recruit__photo {
    border-radius: 20px;
  }
  .recruit__border-overlay {
    border-radius: 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .recruit__inner {
    height: 265px;
  }
}
.guideline__container {
  padding: 60px 24px;
  background-image: url("assets/img/bg/bg_tile.svg");
  border-radius: 50px 0 0 0;
}

.guideline__wrapper {
  padding: 60px 24px;
  margin-bottom: 60px;
  background-color: #ffffff;
  border-radius: 20px;
}

.guideline__title {
  margin-bottom: 60px;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
  color: #334971;
}

.guideline__list {
  text-align: left;
}

.guideline__dt {
  display: flex;
  align-items: center;
  color: #334971;
  margin-bottom: 10px;
}

.guideline__dd {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #334971;
}

.guideline__line-height {
  margin-bottom: 16px;
}

.guideline__extarnal-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.guideline__extarnal-link--text {
  margin-bottom: 10px;
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.25rem, 1.136rem + 0.57vw, 1.563rem);
  color: #334971;
}

.guideline__no-data {
  margin-bottom: 80px;
  padding: 60px 24px;
  background-color: #ffffff;
  border-radius: 20px;
}

@media screen and (min-width: 1024px) {
  .guideline__container {
    padding: 135px 138px 100px;
  }
  .guideline__wrapper {
    padding: 60px 75px;
    margin-bottom: 60px;
  }
  .guideline__title {
    margin-bottom: 60px;
  }
  .guideline__list {
    display: flex;
    flex-wrap: wrap;
  }
  .guideline__dt {
    justify-content: center;
    margin-bottom: 0px;
    margin-right: 10px;
    padding: 20px 60px;
    text-align: center;
    width: 200px;
    border-bottom: 1px solid #334971;
  }
  .guideline__dd {
    margin: 0;
    padding: 20px 50px;
    width: calc(100% - 210px);
    border-bottom: 1px solid #cccccc;
  }
  .guideline__extarnal-link--text {
    margin-top: 20px;
  }
  .guideline__no-data {
    padding: 60px 75px;
  }
}
@media screen and (min-width: 1280px) {
  .guideline__container {
    padding: 135px 288px 100px;
    border-radius: 200px 0 0 0;
  }
}
.contact__wrapper {
  padding: 60px 0;
}

.contact__discription {
  padding: 0 24px;
}

.contact__headline {
  margin-bottom: 30px;
}

.contact__title {
  font-family: "BIZ+UDPMincho-Regular", serif;
  font-size: clamp(1.938rem, 1.688rem + 1.25vw, 2.625rem);
  color: #334971;
}

.contact__subtitle {
  font-size: 0.875rem;
  color: #707070;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact__text {
  line-height: 2rem;
  margin-bottom: 30px;
}

.tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.contact__tel--decotration {
  font-size: clamp(1.563rem, 1.403rem + 0.8vw, 2rem);
  color: #334971;
}

.contact__image {
  position: relative;
  margin-top: 30px;
  margin-right: 24px;
  padding-bottom: 10px;
}

.contact__photo {
  border-radius: 0 10px 10px 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__border-overlay {
  position: absolute;
  top: 10px;
  left: -10px;
  right: 10px;
  bottom: 0px;
  border: 1px solid #334971;
  border-radius: 0 10px 10px 0;
  pointer-events: none;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .contact {
    height: 900px;
  }
  .contact__wrapper {
    padding: 100px 0;
    position: relative;
    height: 100%;
  }
  .contact__discription {
    position: absolute;
    bottom: 100px;
    right: 0;
    z-index: 15;
    height: 421px;
    width: calc(50% + 300px);
    padding: 80px 104px;
    background-color: #f7f6f6;
    border-radius: 30px 0 0 30px;
  }
  .contact__outline {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  .contact__image {
    position: absolute;
    top: 160px;
    left: 0;
    margin: 0;
    height: 475px;
    width: 50%;
  }
  .contact__photo {
    width: 100%;
    height: 100%;
    border-radius: 0 30px 30px 0;
  }
  .contact__border-overlay {
    border-radius: 0 30px 30px 0;
  }
  .tel a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .contact__discription {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    padding: 60px 104px;
  }
  .contact__headline {
    margin-bottom: 10px;
  }
  .contact__outline {
    flex-direction: column;
    gap: 0;
  }
  .contact__text {
    margin-bottom: 10px;
  }
  .tel {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__discription {
    width: -moz-fit-content;
    width: fit-content;
    padding: 60px 254px 60px 254px;
  }
  .contact__inner {
    align-items: start;
  }
  .contact__text {
    align-self: center;
  }
}
.footer {
  height: 45px;
}

.footer__wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #334971;
  color: #ffffff;
}

.footer__text {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

.error404__wrapper {
  height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 24px;
}

.error404__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error404__message {
  padding-bottom: 60px;
  line-height: 2.5rem;
}

.error404__redirect {
  color: #334971;
  padding-bottom: 20px;
}

.error404__redirect--decoration {
  margin-right: 5px;
}/*# sourceMappingURL=style.css.map */