@charset "UTF-8";
/* color
-------------------------------------------- */
/* gradient
-------------------------------------------- */
/* img path
-------------------------------------------- */
/* font size base
-------------------------------------------- */
/* break point
-------------------------------------------- */
/*
.button {
  font-size: 20px; // PCデフォルト（768px 以上）

  @include sp-layout() {
    font-size: 16px; // スマホ（768px 未満）
  }

  @include sm-layout() {
    font-size: 17px; // 小さめのタブレット（768px 〜 999px）
  }

  @include md-layout() {
    font-size: 18px; // 大きめのタブレット（1000px 〜 1199px）
  }

  @include lg-layout() {
    font-size: 24px; // ワイドスクリーン（1441px 以上）
  }
}
*/
/*
.container {
  width: 80%; // PCデフォルト

  @include sp-layout() {
    width: 100%; // スマホ時は幅いっぱい（768px 未満）
  }
}
*/
/* -------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
body {
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #222222;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  text-size-adjust: 100%;
  tab-size: 4;
  font-feature-settings: normal;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid silver;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  :before,
  :after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
*,
:after,
:before,
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
}

.p0 {
  padding: 0 !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.d-flex {
  display: flex;
}

.d-flex-pc {
  display: flex !important;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.preline {
  white-space: pre-line;
}

.position-relative {
  position: relative;
}

.fll {
  float: left;
}

.flr {
  float: right;
}

.text-center {
  text-align: center;
}

@media (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

.block-center {
  display: block;
  text-align: center;
}

.text-white {
  color: #fff;
}

@media (max-width: 767px) {
  .text-white-sp {
    color: #fff;
  }
}

.text-nowrap {
  white-space: nowrap;
}

.h-10 {
  display: block;
  height: 0.6944444444vw;
}
@media (max-width: 767px) {
  .h-10 {
    height: 1.3020833333vw;
  }
}
@media (min-width: 1441px) {
  .h-10 {
    height: 10px;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

@media (min-width: 768px) {
  .show-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .show-pc {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}

.show {
  display: initial !important;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 15px;
  color: #222222;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

html {
  letter-spacing: 0.02em;
  scroll-padding-top: 70px;
  overflow-wrap: anywhere;
}

ul li {
  list-style: none;
}

a,
a:visited {
  color: #222222;
}

a {
  transition: 0.2s;
}
a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

.button_01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13.6363636364px, 1.0416666667vw, 15px);
  padding: clamp(6.1538461538px, 0.5555555556vw, 8px) clamp(12px, 1.25vw, 18px);
  font-weight: 500;
  color: #ffffff;
  background-color: #0a1e78;
  border-radius: 4px;
}
.button_01::after {
  display: inline-block;
  content: "";
  margin-left: 4px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask-image: url("../../assets/img/common/icon_btn_arrow.svg");
  mask-image: url("../../assets/img/common/icon_btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.button_01:visited {
  color: #ffffff;
}

.button_02 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13.6363636364px, 1.0416666667vw, 15px);
  min-width: 160px;
  padding: clamp(10.9090909091px, 0.8333333333vw, 12px) clamp(13.8461538462px, 1.25vw, 18px);
  font-weight: 500;
  color: #ffffff;
  background-color: #0a1e78;
  border-radius: 50px;
}
.button_02:visited {
  color: #ffffff;
}

.section .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: calc(960px + clamp(40px, 5.5555555556vw, 80px) * 2);
  padding: clamp(45.7142857143px, 4.4444444444vw, 64px) clamp(40px, 5.5555555556vw, 80px);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section .inner {
    width: 100%;
    padding-inline: 24px;
  }
}
.section .inner.fullwidth {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section .inner .container {
  width: 100%;
  margin-top: clamp(20px, 2.7777777778vw, 40px);
}
.section .inner .heading {
  color: #222222;
  width: 100%;
}
.section .inner .heading .title {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(30px, 3.3333333333vw, 48px);
  line-height: 1.4;
  color: #0a1e78;
}
.section .inner .heading .sub {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1rem;
  color: #0a1e78;
}
.section .inner .heading .shoulder_copy {
  font-weight: 500;
  font-size: 16px;
}
.section .inner .heading .lead {
  color: #222222;
  line-height: 2;
  margin-top: clamp(13.986013986px, 1.3888888889vw, 20px);
}

.sub-fv {
  position: relative;
  z-index: 0;
}
.sub-fv::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left: 0 と同じ */
  background-color: #c9caca;
  mix-blend-mode: multiply; /* ← ブレンドモードを乗算に */
  pointer-events: none; /* クリックなどに干渉させない */
  z-index: 1; /* 背景の上に乗せる */
}
.sub-fv .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(139.8601398601px, 13.8888888889vw, 200px);
}
.sub-fv .inner .p-title {
  color: #ffffff;
  text-align: center;
  line-height: 1;
}
.sub-fv .inner .p-title__main {
  font-weight: 600;
  font-size: clamp(21.4285714286px, 2.0833333333vw, 30px);
  letter-spacing: 0.14rem;
}
.sub-fv .inner .p-title__en {
  display: inline-block;
  font-family: initial;
  font-size: clamp(12.8571428571px, 1.25vw, 18px);
  margin-top: clamp(6.993006993px, 0.6944444444vw, 10px);
}

.opacity-75 {
  opacity: 0.75;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-25 {
  opacity: 0.25;
}

.js_object_fit img {
  height: 100%;
}
.js_object_fit.-contain img {
  object-fit: contain;
}
.js_object_fit.-cover img {
  object-fit: cover;
}

.keep_ratio {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.keep_ratio img {
  width: 100%;
  height: 100%;
}
.keep_ratio::before {
  content: "";
  display: block;
  /* 比率を指定 */
  padding-top: 56.25%; /* 16:9 */
}
.keep_ratio span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ellipsis__s {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ellipsis__m {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.6;
  height: 3.2em;
}
.ellipsis__m-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.6;
  height: 4.8em;
}
.ellipsis__m-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.6;
  height: 6.4em;
}

.accordion {
  text-align: center;
}
.accordion .ac_title,
.accordion .ac_close {
  cursor: pointer;
}
.accordion .ac_inner {
  display: none;
}

.tab-menu .tab-buttons {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab-menu .tab-buttons .tab-button {
  cursor: pointer;
  transition: 0.1s ease;
}
.tab-menu .tab-buttons .tab-button.is-active {
  color: #ffffff !important;
  background-color: #0a1e78 !important;
}
.tab-menu.is-inactive-init .tab-button.is-active {
  background-color: transparent !important;
  color: inherit !important;
  font-weight: normal !important;
}
.tab-menu.is-inactive-init .tab-button.is-active::after {
  display: none !important;
}
.tab-menu .tab-contents {
  position: relative;
  overflow: visible;
  transition: height 0.2s ease;
}
.tab-menu .tab-contents .tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 0;
}
.tab-menu .tab-contents .tab-content.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}
.tab-menu .tab-contents .tab-content.is-fading-out {
  opacity: 0;
  transform: translateY(10px);
}
.tab-menu .tab-content-list__more {
  width: 100%;
  text-align: center;
  margin-top: clamp(27.972027972px, 2.7777777778vw, 40px);
  transition: opacity 0.4s ease;
}
.tab-menu .tab-content-list__more.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.tab-menu.no-animation .tab-contents {
  transition: none;
}
.tab-menu.no-animation .tab-content {
  transition: none;
  transform: none;
}
.tab-menu.no-animation .tab-content.is-active {
  transform: none;
}
.tab-menu.no-animation .tab-content.is-fading-out {
  transition: none;
}

header#main_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
  width: 100%;
  height: 80px;
  background-color: transparent;
  transition: opacity 1.2s ease, height 0.2s ease !important;
  overflow: visible !important;
}
header#main_header.disable-transition {
  transition: none !important;
}
@media (max-width: 767px) {
  header#main_header {
    height: 54px;
    background-color: #ffffff;
  }
}
body:not(.loaded) header#main_header {
  opacity: 0;
}
header#main_header.is-small {
  background-color: #ffffff;
}
header#main_header.is-small .inner .logo {
  width: 100px;
}
header#main_header.is-small .inner .head_nav__btns li a.btn_request, header#main_header.is-small .inner .head_nav__btns li a.btn_contact {
  font-size: 12.4px;
  min-width: 128px;
  height: 40px;
  padding: 0 12px;
}
header#main_header.scroll_down {
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
header#main_header .inner {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 clamp(16px, 1.6666666667vw, 24px);
  margin: 0 auto;
  font-size: clamp(13.6363636364px, 1.0416666667vw, 15px);
  border-bottom: none;
  transition: 0.2s;
}
@media (max-width: 1199px) {
  header#main_header .inner {
    font-size: 16px;
  }
}
header#main_header .inner .contents {
  text-align: left;
}
header#main_header .inner > .logo {
  flex-shrink: 0;
  display: block;
  transition: 0.2s;
  width: clamp(97.7011494253px, 11.8055555556vw, 170px);
}
@media (max-width: 1199px) {
  header#main_header .inner > .logo {
    width: 112px;
  }
}
header#main_header .inner > .logo:hover {
  opacity: 1;
}
header#main_header .inner > .logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
header#main_header .inner .headcopy {
  display: none;
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  header#main_header .inner .headcopy {
    display: inline-block;
  }
}
header#main_header .inner .head_nav {
  margin-left: auto;
  padding-right: clamp(16px, 1.6666666667vw, 24px);
  /* 一時的にナビを完全に非表示にする */
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav {
    position: fixed;
    z-index: 99;
    top: 54px;
    right: 0;
    width: 100%;
    height: 100%;
    padding-right: 0;
    background: #0a1e78;
    visibility: hidden;
    opacity: 0;
    /*動き*/
    transition: 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  }
}
@media (max-width: 767px) {
  header#main_header .inner .head_nav {
    padding-bottom: calc(env(safe-area-inset-bottom) + 40px);
  }
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav.panelactive {
    opacity: 1;
    visibility: visible;
  }
}
body.resize-lock header#main_header .inner .head_nav {
  display: none !important;
}
header#main_header .inner .head_nav.nav-transition-block {
  display: none !important;
}
header#main_header .inner .head_nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__inner {
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    height: calc(100vh - 54px);
    overflow: hidden;
    overflow-y: auto;
  }
}
header#main_header .inner .head_nav__inner a:hover {
  opacity: initial;
}
header#main_header .inner .head_nav__inner .sns {
  display: none;
  gap: clamp(27.972027972px, 2.7777777778vw, 40px);
  align-items: center;
  margin-top: clamp(39.1608391608px, 3.8888888889vw, 56px);
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__inner .sns {
    display: flex;
  }
}
header#main_header .inner .head_nav__inner .sns img {
  vertical-align: middle;
}
header#main_header .inner .head_nav__inner .sns .icon-x {
  width: 30px;
}
header#main_header .inner .head_nav__inner .sns .icon-youtube {
  width: 80px;
}
header#main_header .inner .head_nav__main {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main {
    flex-direction: column;
    width: 100%;
  }
}
header#main_header .inner .head_nav__main > li {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #0a1e78;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li {
    width: 100%;
  }
}
header#main_header .inner .head_nav__main > li:not(:last-of-type) {
  margin-right: clamp(23.3333333333px, 1.9444444444vw, 28px);
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 4px;
  }
}
header#main_header .inner .head_nav__main > li a {
  position: relative;
  display: block;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li a {
    width: 100%;
    font-size: 18px;
  }
}
header#main_header .inner .head_nav__main > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #0a1e78;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: left;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li a::after {
    content: none;
  }
}
header#main_header .inner .head_nav__main > li a.current::after, header#main_header .inner .head_nav__main > li a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
header#main_header .inner .head_nav__main > li a.nav_contact {
  display: flex;
  align-items: center;
}
header#main_header .inner .head_nav__main > li a.nav_contact i {
  display: inline-block;
  width: 24px;
  margin-left: 8px;
}
header#main_header .inner .head_nav__main > li a.nav_contact i img {
  vertical-align: middle;
}
header#main_header .inner .head_nav__main li a {
  display: inline-block;
  width: 100%;
  padding: 0;
  color: #222222;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main li a {
    color: #ffffff;
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.31);
  }
}
header#main_header .inner .head_nav__main li a.active {
  border-bottom: none;
}

.openbtn {
  display: none;
}
@media (max-width: 1199px) {
  .openbtn {
    display: inline-block;
    position: absolute;
    z-index: 100;
    top: 0;
    bottom: 0;
    right: 24px;
    width: 26px;
    height: 18px;
    margin: auto;
    cursor: pointer;
    /*×に変化*/
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #222222;
    width: 100%;
  }
  .openbtn span:nth-of-type(1) {
    top: 0;
  }
  .openbtn span:nth-of-type(2) {
    top: 9px;
  }
  .openbtn span:nth-of-type(3) {
    top: 18px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(8px) rotate(-45deg);
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 16px;
    left: 0;
    transform: translateY(-8px) rotate(45deg);
  }
}

/*====================================================
    footer
======================================================*/
footer .contents__contact .inner .container {
  margin-top: 0;
}
footer .contents__contact .inner .container__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .contents__contact .inner .container__box .title {
  font-size: clamp(16.7832167832px, 1.6666666667vw, 24px);
  font-weight: 400;
  color: #0a1e78;
  text-align: center;
}
footer .contents__contact .inner .container__box .contact_info {
  display: flex;
  align-items: center;
  gap: clamp(11.1888111888px, 1.1111111111vw, 16px);
  margin-top: clamp(11.1888111888px, 1.1111111111vw, 16px);
}
@media (max-width: 767px) {
  footer .contents__contact .inner .container__box .contact_info {
    flex-direction: column;
  }
}
footer .contents__contact .inner .container__box .contact_info__icon {
  display: flex;
  gap: clamp(13.986013986px, 1.3888888889vw, 20px);
}
footer .contents__contact .inner .container__box .contact_info__icon img {
  width: clamp(72.7272727273px, 5.5555555556vw, 80px);
  vertical-align: bottom;
}
@media (max-width: 767px) {
  footer .contents__contact .inner .container__box .contact_info__phone {
    text-align: center;
  }
}
footer .contents__contact .inner .container__box .contact_info__phone .num {
  font-size: clamp(36.9230769231px, 3.3333333333vw, 48px);
  line-height: 1;
}
footer .contents__contact .inner .container__box .contact_info__phone .time {
  font-size: clamp(16.7832167832px, 1.6666666667vw, 24px);
}
@media (max-width: 767px) {
  footer .contents__contact .inner .container__box .contact_info__phone .time {
    margin-top: 4px;
  }
}
footer .contents__contact .inner .container__box .ecos_banner {
  margin-top: clamp(33.5664335664px, 3.3333333333vw, 48px);
}
footer .contents__contact .inner .container__box .ecos_banner img {
  vertical-align: bottom;
}
footer .f-container {
  color: #ffffff;
  background-color: #0a1e78;
}
footer .f-container .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: calc(960px + clamp(21.8181818182px, 1.6666666667vw, 24px) * 2);
  margin: 0 auto;
  padding-block: clamp(50.9090909091px, 3.8888888889vw, 56px) clamp(29.0909090909px, 2.2222222222vw, 32px);
  padding-inline: clamp(21.8181818182px, 1.6666666667vw, 24px);
}
footer .f-container .inner a {
  color: #ffffff;
}
footer .f-container .inner .footer_info {
  display: flex;
  gap: clamp(45px, 5vw, 72px);
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_info {
    flex-direction: column;
  }
}
footer .f-container .inner .footer_info__profile {
  flex-shrink: 0;
}
footer .f-container .inner .footer_info__profile .logo {
  width: clamp(173.4265734266px, 17.2222222222vw, 248px);
}
footer .f-container .inner .footer_info__profile .add {
  font-size: clamp(13.6363636364px, 1.0416666667vw, 15px);
  margin-top: clamp(8.3916083916px, 0.8333333333vw, 12px);
}
footer .f-container .inner .footer_info__nav {
  margin-top: clamp(16.7832167832px, 1.6666666667vw, 24px);
}
footer .f-container .inner .footer_info__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-items: center;
  gap: clamp(14.5454545455px, 1.1111111111vw, 16px) clamp(29.0909090909px, 2.2222222222vw, 32px);
}
footer .f-container .inner .footer_info__nav ul li {
  font-size: clamp(14.6341463415px, 1.0416666667vw, 15px);
}
footer .f-container .inner .footer_info__nav ul li img {
  vertical-align: middle;
}
footer .f-container .inner .footer_info__nav ul li .nav_contact {
  display: flex;
}
footer .f-container .inner .footer_info__nav ul li .nav_contact i {
  display: inline-block;
  width: clamp(16.7832167832px, 1.6666666667vw, 24px);
  margin-left: 2px;
}
footer .f-container .inner .footer_info__nav ul li.sns {
  display: flex;
  gap: clamp(22.3776223776px, 2.2222222222vw, 32px);
  align-items: center;
}
footer .f-container .inner .footer_info__nav ul li.sns .icon-x {
  width: clamp(25px, 2.0833333333vw, 30px);
}
footer .f-container .inner .footer_info__nav ul li.sns .icon-youtube {
  width: clamp(66.6666666667px, 5.5555555556vw, 80px);
}
footer .f-container .inner .footer_bottom {
  display: flex;
  justify-content: space-between;
  font-size: clamp(10.9090909091px, 0.8333333333vw, 12px);
  width: 100%;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #ffffff;
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_bottom {
    flex-direction: column;
    padding-top: 24px;
    margin-top: 24px;
  }
  footer .f-container .inner .footer_bottom .copyright {
    order: 2;
  }
  footer .f-container .inner .footer_bottom .btm_menu {
    order: 1;
    margin-bottom: 14px;
  }
}
footer .f-container .inner .footer_bottom .btm_menu a:not(:first-child) {
  margin-left: 16px;
}
footer .f-container .inner .footer_menu {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_menu {
    flex-direction: column;
  }
}
footer .f-container .inner .footer_menu .logo {
  width: clamp(111.8881118881px, 11.1111111111vw, 160px);
}
footer .f-container .inner .footer_menu .footer_menu_links {
  display: flex;
  align-items: center;
  font-size: clamp(10.8333333333px, 0.9027777778vw, 13px);
  margin-left: clamp(22.3776223776px, 2.2222222222vw, 32px);
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_menu .footer_menu_links {
    margin-top: 16px;
    margin-left: 0;
  }
}
footer .f-container .inner .footer_menu .footer_menu_links ul {
  display: flex;
}
footer .f-container .inner .footer_menu .footer_menu_links ul li {
  font-weight: 500;
  line-height: 1.1;
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_menu .footer_menu_links ul li {
    line-height: normal;
  }
}
footer .f-container .inner .footer_menu .footer_menu_links ul li:not(:first-child) {
  padding-left: 12px;
  margin-left: 12px;
  border-left: 1px solid #ffffff;
}
footer .f-container .inner .footer_menu .footer_menu_links ul li.sns {
  border-left: none;
}
footer .f-container .inner .footer_menu .footer_menu_links ul li.sns img {
  width: 16px;
  height: 16px;
  vertical-align: bottom;
}
footer .f-container .inner .footer_menu .copyright {
  font-size: clamp(10.9090909091px, 0.8333333333vw, 12px);
  margin-left: auto;
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_menu .copyright {
    text-align: center;
    margin: 0;
    margin-top: 16px;
  }
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 2.6041666667vw;
  right: 2.6041666667vw;
  border-radius: 50px;
  text-align: center;
  z-index: 99;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #222222;
  bottom: 0.6944444444vw;
  right: 0.6944444444vw;
}
@media (min-width: 1441px) {
  #pagetop {
    bottom: 10px;
    right: 10px;
  }
}
#pagetop a {
  color: #ffffff;
  display: block;
  line-height: 2;
  font-size: clamp(24px / 1.1, 1.6666666667vw, 24px);
  width: clamp(50px / 1.1, 3.4722222222vw, 50px);
  height: clamp(50px / 1.1, 3.4722222222vw, 50px);
}

/*====================================================
    main
======================================================*/
.main {
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .main {
    margin-top: 54px;
  }
}

/*====================================================
    ページネーション
======================================================*/
.navigation {
  text-align: center;
  margin-top: clamp(22.3776223776px, 2.2222222222vw, 32px);
}
.navigation .screen-reader-text {
  display: none;
}
.navigation .page-numbers {
  display: inline-block;
  padding: 3px 10px;
  font-size: clamp(11.1888111888px, 1.1111111111vw, 16px);
  font-weight: 500;
  margin-left: 10px;
  color: #222222;
  background-color: #ffffff;
  border-radius: 4px;
}
.navigation .page-numbers:not(.dots) {
  border: 1px solid rgba(199, 199, 199, 0.8);
}
.navigation .page-numbers:not(.current):not(.dots) {
  transition: all 0.2s ease;
}
.navigation .page-numbers:not(.current):not(.dots):hover {
  opacity: 1;
  color: #fff;
  background-color: #0a1e78;
}
.navigation .current {
  color: #fff;
  background-color: #0a1e78;
}

/*====================================================
    Opening Animation
======================================================*/
#opening {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
}
#opening.hidden {
  opacity: 0;
  pointer-events: none;
}

#opening-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(31.1111111111px, 3.8888888889vw, 56px);
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.1;
  color: #222222;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  overflow: hidden;
}
#opening-catch span {
  display: inline-block;
  transform: translateY(100%);
  animation: fadeUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
#opening-catch span.fade-down {
  animation: fadeDown 0.6s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
  animation-delay: var(--delay);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  to {
    transform: translateY(100%);
  }
}
#opening-logo {
  width: clamp(277.7777777778px, 34.7222222222vw, 500px);
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.8s ease, transform 1.6s ease;
}
#opening-logo.fade-out {
  transition: opacity 0.32s ease, transform 1.6s ease;
}

main,
footer {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
body.loaded main,
body.loaded footer {
  opacity: 1;
  transform: translateY(0);
}
body.loaded-no-header-fade main,
body.loaded-no-header-fade footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease-out;
}
body.page-leave main,
body.page-leave footer {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease-out;
}

main.animating,
footer.animating {
  overflow: hidden;
}

body.opening-active {
  overflow: hidden;
}

/*=========================================
   モーダルコンテンツ
=========================================*/
.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.modal[aria-hidden=false] {
  display: flex;
}
.modal[aria-hidden=false] .modal__content {
  animation: modal-content-in 0.4s ease forwards;
}
.modal[aria-hidden=false] .modal__overlay {
  animation: modal-overlay-in 0.4s ease forwards;
}
.modal.is-leaving .modal__content {
  animation: modal-content-out 0.4s ease forwards;
}
.modal.is-leaving .modal__overlay {
  animation: modal-overlay-out 0.4s ease forwards;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.modal__content {
  position: relative;
  background: #fff;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: auto;
  outline: none;
}
.modal__close {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  font-size: clamp(11.1888111888px, 1.1111111111vw, 16px);
  line-height: 1;
  padding: clamp(5.5944055944px, 0.5555555556vw, 8px);
  color: #ffffff;
  background-color: #222222;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

@keyframes modal-content-in {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes modal-content-out {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
}
@keyframes modal-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-overlay-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.sub-fv {
  background: url("../../assets/img/company/fv-img.webp") no-repeat center;
  background-size: cover;
}

.contents__message {
  background: url("../../assets/img/company/bg-message.png") no-repeat center;
  background-size: cover;
}
.contents__message .inner .container .title {
  font-size: clamp(26.6666666667px, 2.7777777778vw, 40px);
}
.contents__message .inner .container__box {
  display: flex;
  gap: clamp(16.7832167832px, 1.6666666667vw, 24px);
  margin-top: clamp(19.5804195804px, 1.9444444444vw, 28px);
}
@media (max-width: 767px) {
  .contents__message .inner .container__box {
    flex-direction: column;
    align-items: center;
  }
}
.contents__message .inner .container__box .message-photo {
  width: clamp(188.8111888112px, 18.75vw, 270px);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contents__message .inner .container__box .message-photo {
    text-align: center;
  }
}
.contents__message .inner .container__box .message-photo figcaption {
  font-size: clamp(15.3846153846px, 1.3888888889vw, 20px);
}
.contents__message .inner .container__box .message-text {
  font-size: clamp(11.1888111888px, 1.1111111111vw, 16px);
  line-height: 2.6;
  transform: translateY(-0.8em);
}
@media (max-width: 767px) {
  .contents__message .inner .container__box .message-text {
    line-height: 2;
    transform: none;
  }
}
.contents__history {
  overflow: hidden;
}
.contents__history .inner {
  padding-top: 0;
  padding-bottom: clamp(44px, 6.1111111111vw, 88px);
}
.contents__history .inner .container {
  margin-top: 0;
}
.contents__history .inner .container__box.-box01 {
  position: relative;
  z-index: 1;
  padding-block: clamp(50px, 5.5555555556vw, 80px) clamp(50px, 5.5555555556vw, 80px);
}
.contents__history .inner .container__box.-box01::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e1ebf5;
  z-index: -1; /* 背景を背面に */
  width: 100vw; /* ビューポート幅に広げる */
  margin-left: calc(-50vw + 50%);
}
.contents__history .inner .container__box.-box02 {
  display: flex;
  gap: 64px;
  position: relative;
  z-index: 1;
  margin-top: clamp(-48px, -3.3333333333vw, -30px);
}
@media (max-width: 767px) {
  .contents__history .inner .container__box.-box02 {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.contents__history .inner .container__box.-box02 .history-text {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(35px, 4.8611111111vw, 70px);
}
.contents__history .inner .container__box.-box02 .history-text table {
  width: 100%;
}
.contents__history .inner .container__box.-box02 .history-text table th,
.contents__history .inner .container__box.-box02 .history-text table td {
  vertical-align: top;
  font-feature-settings: "palt";
  line-height: 1.8;
  text-align: left;
  padding: clamp(16.6666666667px, 1.3888888889vw, 20px) clamp(10px, 1.1111111111vw, 16px);
}
.contents__history .inner .container__box.-box02 .history-text table th {
  font-weight: 400;
  padding-left: 0;
  color: #ffffff;
  width: 30%;
}
@media (max-width: 767px) {
  .contents__history .inner .container__box.-box02 .history-text table th {
    width: 25%;
  }
}
.contents__history .inner .container__box.-box02 .history-text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 70%;
  width: 100vw;
  height: 100%;
  background-color: #0a1e78; /* 任意の背景色 */
  border-radius: 0 clamp(20px, 2.7777777778vw, 40px) 0 0;
  z-index: -1; /* 背景として配置 */
}
@media (max-width: 767px) {
  .contents__history .inner .container__box.-box02 .history-text::before {
    right: 75%;
  }
}
.contents__history .inner .container__box.-box02 .history-photo {
  display: flex;
  flex-direction: column;
  gap: clamp(22.3776223776px, 2.2222222222vw, 32px);
  margin-left: auto;
}
@media (max-width: 767px) {
  .contents__history .inner .container__box.-box02 .history-photo {
    margin-inline: auto;
  }
}
.contents__history .inner .container__box.-box02 .history-photo__item {
  text-align: right;
  width: clamp(279.7202797203px, 27.7777777778vw, 400px);
}
@media (max-width: 767px) {
  .contents__history .inner .container__box.-box02 .history-photo__item {
    text-align: center;
  }
}
.contents__history .inner .container__box.-box02 .history-photo__item img {
  vertical-align: bottom;
  width: auto;
  max-height: clamp(209.7902097902px, 20.8333333333vw, 300px);
}
.contents__profile {
  background-color: #e1ebf5;
}
.contents__profile .inner .profile-info table {
  width: 100%;
  background-color: #ffffff;
}
.contents__profile .inner .profile-info table tbody th,
.contents__profile .inner .profile-info table tbody td {
  vertical-align: top;
  font-feature-settings: "palt";
  line-height: 1.8;
  text-align: left;
  padding: clamp(11.6666666667px, 0.9722222222vw, 14px) clamp(16.6666666667px, 1.3888888889vw, 20px);
  border-bottom: 1px solid #dfeaf5;
}
.contents__profile .inner .profile-info table tbody th {
  font-weight: 400;
  color: #ffffff;
  width: clamp(139.8601398601px, 13.8888888889vw, 200px);
  background-color: #0a1e78;
}
.contents__profile .inner .profile-info table tbody tr:last-child th,
.contents__profile .inner .profile-info table tbody tr:last-child td {
  border-bottom: none;
}
.contents__profile .inner .stepbar_flow {
  margin-top: clamp(50.3496503497px, 5vw, 72px);
  width: 100%;
  max-width: 800px;
}
.contents__profile .inner .stepbar_flow .stepbarwrap {
  position: relative;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptitle {
  display: inline-flex;
  align-items: center;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptitle .stepcircle {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(55.9440559441px, 5.5555555556vw, 80px);
  height: clamp(55.9440559441px, 5.5555555556vw, 80px);
  content: "";
  border-radius: 50%;
  background-color: #222222;
  color: #ffffff;
  text-align: center;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptitle .stepcircle span {
  display: inline-block;
  font-size: clamp(10.4895104895px, 1.0416666667vw, 15px);
  font-weight: 500;
  line-height: 1;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptitle .stepcircle p {
  font-size: clamp(26.5734265734px, 2.6388888889vw, 38px);
  font-weight: 600;
  line-height: 1;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptitle .title {
  font-weight: 600;
  font-size: clamp(18.1818181818px, 1.8055555556vw, 26px);
  margin: 0.5em 0;
  padding-left: clamp(22.3776223776px, 2.2222222222vw, 32px);
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptxt {
  margin-left: calc(clamp(55.9440559441px, 5.5555555556vw, 80px) + clamp(22.3776223776px, 2.2222222222vw, 32px));
  line-height: 1.9;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptxt .txt {
  font-size: clamp(14.0350877193px, 1.1111111111vw, 16px);
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptxt .txt .indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptxt .txt small {
  display: block;
  font-size: clamp(12.5px, 1.0416666667vw, 15px);
  margin-top: clamp(6.993006993px, 0.6944444444vw, 10px);
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptxt .note {
  display: inline-block;
  font-size: clamp(12.3076923077px, 1.1111111111vw, 16px);
  padding: clamp(21.6666666667px, 1.8055555556vw, 26px) clamp(20px, 1.6666666667vw, 24px);
  margin-top: clamp(11.1888111888px, 1.1111111111vw, 16px);
  background-color: #e1ebf5;
  border-radius: 4px;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .steptxt .note .title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.contents__profile .inner .stepbar_flow .stepbarwrap:not(:last-of-type) .steptxt {
  padding-bottom: clamp(30.7692307692px, 3.0555555556vw, 44px);
  margin-bottom: clamp(12.5874125874px, 1.25vw, 18px);
  border-bottom: 2px dashed #c7c7c7;
}
.contents__profile .inner .stepbar_flow .stepbarwrap .stepline {
  width: 2px;
  height: calc(100% + 1em);
  background-color: #000;
  position: absolute;
  top: 1em;
  left: calc(clamp(55.2447552448px, 5.4861111111vw, 79px) / 2);
  z-index: -1;
}
.contents__profile .inner .stepbarwrap:last-of-type .stepline:last-of-type {
  display: none;
}
.contents__profile .inner .btn_recruit {
  margin-top: clamp(55.9440559441px, 5.5555555556vw, 80px);
}
.contents__company {
  background-color: #e1ebf5;
}
.contents__company .inner {
  /* table01 */
}
.contents__company .inner .heading .title span {
  color: #F3A9C0;
}
.contents__company .inner .table01 {
  width: 100%;
  max-width: 800px;
  margin-top: clamp(45.7142857143px, 4.4444444444vw, 64px);
}
.contents__company .inner .table01 tr {
  border-bottom: 1px solid #b5b1b1;
}
.contents__company .inner .table01 th,
.contents__company .inner .table01 td {
  font-size: clamp(14.5454545455px, 1.1111111111vw, 16px);
  padding: clamp(17.1428571429px, 1.6666666667vw, 24px) clamp(10px, 1.3888888889vw, 20px);
  border: none;
}
.contents__company .inner .table01 th {
  width: 30%;
  text-align: left;
}
@media (max-width: 767px) {
  .contents__company .inner .table01 th,
  .contents__company .inner .table01 td {
    width: 100%;
    display: block;
  }
  .contents__company .inner .table01 th {
    width: 100%;
  }
  .contents__company .inner .table01 td {
    padding-top: 0;
  }
}
.contents__access {
  background-color: #0a1e78;
  overflow: hidden;
}
.contents__access .inner {
  padding-bottom: 0;
}
.contents__access .inner .container {
  margin-top: 0;
}
.contents__access .inner .container__box {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.7777777778vw, 40px);
  width: 100%;
  max-width: 960px;
  height: clamp(293.75px, 32.6388888889vw, 470px);
}
@media (max-width: 767px) {
  .contents__access .inner .container__box {
    flex-direction: column;
    height: auto;
  }
}
.contents__access .inner .container__box .access-text {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.7777777778vw, 40px);
  color: #ffffff;
  padding-bottom: clamp(28px, 3.8888888889vw, 56px);
}
.contents__access .inner .container__box .access-text .heading * {
  color: #ffffff;
}
.contents__access .inner .container__box .access-text .add {
  margin-top: auto;
}
.contents__access .inner .container__box .access-text .add b {
  font-size: clamp(20px, 1.6666666667vw, 24px);
}
.contents__access .inner .map {
  position: absolute;
  top: 0;
  left: calc(50% - 8px);
  width: 50vw;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contents__access .inner .map {
    position: relative;
    width: calc(100% + 24px);
    height: 320px;
    left: 0;
  }
}
.contents__access .inner .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: clamp(27.972027972px, 2.7777777778vw, 40px) 0 0 0;
}
@media (max-width: 767px) {
  .contents__access .inner .map iframe {
    position: static;
  }
}/*# sourceMappingURL=company.css.map */