@charset "UTF-8";



/* "Noto Sans JP", "Noto Sans CJK JP", */

/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #FFF;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F5F5F5;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F5F5F5;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F5F5F5;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;

  /* ページロード時のスクロール位置を強制的にトップに */
  scroll-behavior: auto;
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}

.js-fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #FFF;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #0C4A6E;
  border-bottom: .25em solid #0C4A6E;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C4A6E;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #0C4A6E;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #000;
}

#toc_container .toc_list li::before {
  display: none;
  color: #0C4A6E;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #000;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

/* ========================================
   会社概要セクション
   ======================================== */
.about {
  background: #FAFAFA;
  padding: 70px 0 160px;
}

.about__inner {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 996px;
}

.about__header {
  text-align: center;
}

.about__title-en {
  margin-bottom: 0;
  color: #FFE2CC;
  font-family: 'Montserrat', sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.2;
}

.about__title-ja {
  position: relative;
  margin-top: -20px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 7.2px;
}

/* 会社情報テーブル */
.about__company {
  margin: 39px auto 0;
  max-width: 946px;
  overflow: hidden;
}

.about__company-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid #C9C9C9;
  padding: 32px 21px 31px 32px;
}

.about__company-item:last-child {
  border-bottom: none;
}

.about__company-item:nth-child(6) .about__company-list li::before,
.about__company-item:nth-child(8) .about__company-list li::before {
  left: 11px;
}

.about__company-item:nth-child(6) .about__company-list li,
.about__company-item:nth-child(8) .about__company-list li {
  padding-left: 25px;
}

.about__company-label {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14%;
  color: #244DA6;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

.about__company-value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 10px;
  color: #333;
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 2;
}

.about__company-value--letter-spacing-none {
  letter-spacing: 0;
}

.about__company-wrap {
  gap: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__company-list li {
  position: relative;
  padding-left: 10px;
  letter-spacing: 0;
  line-height: 2;
}

.about__company-list li:last-child {
  margin-bottom: 0;
}

.about__company-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  font-weight: 700;
  content: '•';
}

/* レスポンシブ対応 */
.u-overflowHidden {
  overflow: hidden;
}

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

.section-header__title-en {
  margin-bottom: 0;
  color: #FFE2CC;
  font-family: 'Montserrat', sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.2;
}

.section-header__title-ja {
  position: relative;
  margin-top: -40px;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 7.2px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 10000;
  -webkit-transition: top .3s ease;
  transition: top .3s ease;
  background-color: #FF7308;
  padding: 15px 30px;
  color: #FFF;
  font-size: 18px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.md-lg-none {
  display: block;
}

.md-lg-show {
  display: none;
}

.md-none {
  display: block;
}

.md-show {
  display: none;
}

/* ========================================
   お問い合わせセクション
   ======================================== */
.contact {
  background: #FFF;
  padding: 70px 0 125px;
}

.contact__inner {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 868px;
}

.contact__header {
  text-align: center;
}

.contact__title-en {
  margin-bottom: 0;
  color: #FFE2CC;
  font-family: 'Montserrat', sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.2;
}

.contact__title-ja {
  position: relative;
  margin-top: -20px;
  color: #333;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 7.2px;
}

.contact__desc {
  margin: 39px auto 0;
  max-width: 600px;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

/* フォーム */
.contact__form {
  gap: 29px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 64px auto 0;
}

.contact__form-group {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 33px;
  width: 100%;
}

.contact__form-row {
  gap: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

.contact__form-label {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 0;
  width: 194px;
  color: #333;
  font-size: 16px;
}

.contact__form-required {
  border-radius: 4px;
  background: #BE2929;
  padding: 0 6px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
}

.contact__form-input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border: 1px solid #BBB;
  border-radius: 8px;
  background: #FFF;
  padding: 12px;
  width: 100%;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}

.contact__form-input:focus {
  outline: 2px solid #244DA6;
  outline-offset: 2px;
  border-color: #244DA6;
}

.contact__form-input::-webkit-input-placeholder {
  color: #AAA;
}

.contact__form-input::-moz-placeholder {
  color: #AAA;
}

.contact__form-input::-ms-input-placeholder {
  color: #AAA;
}

.contact__form-input::placeholder {
  color: #AAA;
}

.contact__form-textarea {
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border: 1px solid #BBB;
  border-radius: 8px;
  background: #FFF;
  padding: 16px;
  width: 100%;
  height: 192px;
  resize: none;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}

.contact__form-textarea:focus {
  outline: 2px solid #244DA6;
  outline-offset: 2px;
  border-color: #244DA6;
}

.contact__form-textarea::-webkit-input-placeholder {
  color: #AAA;
}

.contact__form-textarea::-moz-placeholder {
  color: #AAA;
}

.contact__form-textarea::-ms-input-placeholder {
  color: #AAA;
}

.contact__form-textarea::placeholder {
  color: #AAA;
}

/* プライバシーポリシー */
.contact__privacy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
}

.contact__privacy-content {
  border: 1px solid #BBB;
  border-radius: 8px;
  background: #FFF;
  padding: 32px;
  max-height: 260px;
  overflow-y: auto;
}

.contact__privacy-info,
.contact__privacy-text {
  color: #000;
  font-size: 14px;
  line-height: 2;
}

.contact__privacy-text {
  margin-top: 8px;
}

.contact__privacy-title {
  margin-top: 30px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.contact__privacy-list {
  margin: 8px 0;
  padding: 0;
  list-style: none;
}

.contact__privacy-list li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 16px;
  font-size: 14px;
  line-height: 2;
}

.contact__privacy-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  content: '•';
}

.contact__privacy-check {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 auto;
  margin-top: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.contact__privacy-checkbox {
  position: relative !important;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  vertical-align: middle;
  opacity: 1 !important;
  cursor: pointer;
  margin: 0;
  border-radius: 4px;
  width: 18px !important;
  height: 18px;
}

.contact__privacy-checkbox:checked {
  border-color: #244DA6;
  background: #244DA6;
}

.contact__privacy-checkbox:checked::after {
  position: absolute;
  top: 1px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 9px;
  content: '';
}

.contact__privacy-check-label {
  cursor: pointer;
  margin-left: 8px;
  color: #333;
  font-size: 14px;
}

.contact__privacy-check-label::before,
.contact__privacy-check-label::after {
  display: none !important;
}

.contact__submit {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .5s ease;
  transition: background-color .5s ease;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 27px;
  border: none;
  border-radius: 8px;
  background: #FF7308;
  padding: 13px 0;
  width: 100% !important;
  max-width: 500px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.contact__submit:hover {
  background: rgb(212, 91.8380566802, 0);
}

.contact__submit::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 45px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: right .5s ease;
  transition: right .5s ease;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  width: 11px;
  height: 11px;
  content: '';
}

.contact__submit:hover::after {
  right: 35px;
}

.contact__submit:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.contact__recaptcha {
  margin-top: 26px;
  color: #333;
  font-size: 14px;
  text-align: center;
}

.contact__recaptcha-link {
  color: #0B238A;
  text-decoration: underline;
}

/* レスポンシブ対応 */

/* フォームバリデーション */
.contact__form-error {
  display: none;
  margin-top: 4px;
  color: #E74C3C;
  font-size: 14px;
}

.contact__form-input.is-error,
.contact__form-textarea.is-error {
  border-color: #E74C3C;
  background-color: #FDF2F2;
}

.contact__form-input.is-error:focus,
.contact__form-textarea.is-error:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(231, 76, 60, .2);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, .2);
  border-color: #E74C3C;
}

.contact__privacy-checkbox.is-error + .contact__privacy-check-label {
  color: #E74C3C;
}

.contact__submit.is-disabled {
  opacity: .6;
  cursor: not-allowed;
  background-color: #CCC;
  color: #999;
}

.drawer {
  z-index: 40;
}

.drawer__icon {
  display: inline-block;
  display: none;
  position: relative;
  z-index: 1000;
  cursor: pointer;
  padding: 0 32px;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 25px;
}

.drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #000;
  width: 100%;
  height: 3px;
}

.drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .drawer__bar:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.is-opened .drawer__bar:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 100%;
}

.drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #FFF;
  padding-top: 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
  color: #000;
  text-align: center;
}

.drawer__content.is-opened {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, .16);
  box-shadow: 0 6px 25px rgba(0, 0, 0, .16);
}

.drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.drawer__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.drawer__logo {
  aspect-ratio: 395/92;
  display: inline-block;
  width: 395px;
  height: auto;
}

.drawer__logo img,
.drawer__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.drawer__nav {
  margin-top: 40px;
}

.drawer__nav-item {
  margin-top: 20px;
}

.drawer__nav-link {
  gap: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 70%;
}

.drawer__nav-link::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
  background: #FF7308;
  width: 0;
  height: 2px;
  content: '';
}

.drawer__nav-link:hover::after {
  width: 100%;
}

.drawer__nav-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.8;
}

.drawer__nav-ja {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.8;
}

.drawer-contact {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
  background: #FF7308;
  padding: 16px 0;
  text-decoration: none;
}

.drawer-contact:hover {
  opacity: .9;
}

.drawer-contact__tel {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.drawer-contact__tel-icon {
  width: 21px;
  height: 21px;
}

.drawer-contact__tel-number {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
}

.drawer-contact__time {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}

.drawer-contact__time-arrow {
  margin: 0 3px;
  color: #FFF;
  font-size: 10px;
  font-weight: 500;
}

/* ========================================
   フッター
   ======================================== */
.footer {
  position: relative;
  background-color: #000;
  padding: 64px 0 0;
  height: 369px;
  overflow: hidden;
}

.footer__inner {
  z-index: 2;
  margin: 0 auto;
  padding: 0 25px;
  max-width: 1100px;
}

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__logo {
  aspect-ratio: 261/157;
  width: 261px;
  height: auto;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__info {
  gap: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 33px;
}

.footer__address {
  color: #FFFEFE;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.footer__contact {
  gap: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__tel,
.footer__fax {
  color: #FFFEFE;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
}

.footer__tel--text-large,
.footer__fax--text-large {
  font-size: 20px;
}

/* 疑似要素を使った装飾アイコン（比較用） */
.footer::before {
  position: absolute;
  top: -12px;
  right: -40px;
  z-index: 1;
  background-image: url('../img/footer-bg-icon.webp');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  width: 545px;
  height: 389px;
  content: '';
}

.footer__copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #333;
  width: 100%;
}

.footer__copyright-text {
  padding: 3px 0;
  color: #FFFEFE;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .6px;
  line-height: 1.5;
  text-align: center;
}

/* レスポンシブ対応 */

/* ========================================
   ヒーローセクション
   ======================================== */
.fv {

  /* ページロード時のスクロール位置問題を防ぐ */
  scroll-margin-top: 0;
  position: relative;
  height: 100vh;
  min-height: 100vh;
}

.fv__bg {
  position: relative;
  z-index: -1;
  background-image: url('../img/fv-bg.webp');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 64px);
}

.fv__wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.fv__pattern-img {
  aspect-ratio: 1280/502;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

/* ========================================
   ギャラリーセクション
   ======================================== */
.gallery {
  background: #FFF;
  overflow: hidden;
}

.gallery__slider {
  width: 100%;
}

.gallery__item {
  aspect-ratio: 1/1;
  margin: 0 4px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Slickスライダーのカスタマイズ */
.gallery__slider .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallery__slider .slick-list {
  margin: 0 -8px;
}

.gallery__slider .slick-slide > div {
  margin: 0 8px;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .5);
  height: 92px;
}


.header__inner {
  margin: 0 auto;
  padding: 0 0 0 32px;
  max-width: 1920px;
}

.header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__logo-img {
  aspect-ratio: 395/92;
  width: 395px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.header__wrap {
  gap: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__nav-list {
  gap: 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__nav-item {
  list-style: none;
}

.header__nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
}

.header__nav-link::after {
  position: absolute;
  top: 41.6px;
  left: 0;
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
  background: #FF7308;
  width: 0;
  height: 2px;
  content: '';
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.8;
}

.header__nav-ja {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.8;
}

.header__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #FF7308;
  width: 237px;
  height: 92px;
}

.header__contact-tel {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__contact-tel-icon {
  width: 21px;
  height: 21px;
}

.header__contact-tel-number {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.header__contact-icon {
  width: 21px;
  height: 21px;
}

.header__contact-time {
  margin: 0;
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .8px;
  text-align: center;
}

.header__contact-time-arrow {
  margin: 0 3px;
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .8px;
}

/* ========================================
   historyセクション
   ======================================== */
.history {
  margin: 134px auto 0;
  max-width: 946px;
}

.history__title {
  color: #244DA6;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 6.4px;
  text-align: center;
}

.history__timeline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 58px;
}

.history__item {
  gap: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 32px;
  min-height: 64px;
}

.history__item::before {
  position: absolute;
  top: 4px;
  left: 192px;
  z-index: 2;
  border-radius: 50%;
  background: #244DA6;
  width: 13px;
  height: 13px;
  content: '';
}

.history__item::after {
  position: absolute;
  top: 17px;
  left: 198px;
  z-index: 1;
  background: #244DA6;
  width: 1px;
  height: 64px;
  content: '';
}

.history__item:last-child::after {
  height: 47px;
}

.history__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 144px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.history__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 29px;
  color: #000;
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1.5;
}

/* レスポンシブ対応 */

/* ========================================
   mapセクション
   ======================================== */
.map {
  margin: 57px auto 0;
  text-align: center;
}

.map__title {
  color: #244DA6;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 6.4px;
}

.map__container {
  position: relative;
  margin: 25px auto 0;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  background: #f5f5f5;
  width: 100%;
  max-width: 946px;
  height: 100%;
  overflow: hidden;
}

.map__container iframe {
  width: 100%;
 aspect-ratio: 946/406;
}

.map__btn {
  gap: 8px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .5s ease;
  transition: background-color .5s ease;
  cursor: pointer;
  margin-top: 32px;
  border: none;
  border-radius: 8px;
  background: #FF7308;
  padding: 12px 32px;
  min-width: 272px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}

.map__btn:hover {
  background: rgb(212, 91.8380566802, 0);
}

.map__btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 45px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: right .5s ease;
  transition: right .5s ease;
  margin-left: 4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  width: 11px;
  height: 11px;
  content: '';
}

.map__btn:hover::after {
  right: 35px;
}

/* ========================================
   メッセージセクション
   ======================================== */
.message {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.message__inner {
  margin: 0 auto;
  padding: 0 0 0 50px;
  max-width: 1280px;
}

.message__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -23.5vw;
  right: 0;
  left: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
  -ms-flex-pack: right;
  justify-content: right;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0;
  min-width: 0;
  overflow: hidden;
  max-width: 1230px;
    margin: 0 auto;
}

.message__title {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-width: 0;
  color: #244DA6;
  font-size: clamp(32px, 3.75vw, 48px);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  white-space: nowrap;
}

.message__icon {
  aspect-ratio: 539/385;
  position: relative;
  right: -40px;
  margin-left: auto;
  width: 38vw;
  height: auto;
  max-width: 539px;
}

.message__content {
  gap: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.message__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.message__text {
  color: #333;
  font-size: 18px;
  letter-spacing: .05em;
  line-height: 2;
}

.message__text + .message__text {
  margin-top: 32px;
}

.message__wrap {
  width: 35%;
  max-width: 590px;
  height: auto;
}

.message__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* ========================================
   メッセージセクションsp用
   ======================================== */
.message-sp__contents {
  padding: 0 20px;
}

.message-sp {
  background-color: #fff;
  padding: 40px 0 0;
}

.message-sp__text {
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1.8;
}

.message-sp__text + .message-sp__text {
  margin-top: 30px;
}

/* ========================================
   サービスセクション
   ======================================== */
.services {
  background-color: #fff;
  padding: 70px 0 80px;
}

.services__inner {
  margin: 0 auto;
  padding: 0 70px;
  max-width: 1280px;
}

.services__cards {
  gap: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-radius: 8px;
  background: #FF7308;
  padding: 31px;
  max-width: 364px;
  flex-shrink: 0;
  width: 33%;
}

.card__img {
aspect-ratio: 290 / 156;
    width: 100%;
    height: auto;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 3%;
}

.card__body {
  position: relative;
      margin-top: 9px;
}

.card__number {
  position: absolute;
     top: -76%;
    left: -3%;
  z-index: 2;
  color: #FF9442;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(100px, 9.0625vw, 116px);
  font-weight: 700;
  line-height: 1.2;
}

.card__title {
  position: relative;
  z-index: 3;
  color: #FFF;
  font-size:clamp(20px, 2.1875vw, 28px); 
  font-weight: 700;
  text-align: center;
}

.card__desc {
  position: relative;
  z-index: 3;
  margin-top: 10px;
  color: #FFF;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

/* ========================================
   電話追従ボタン（スマホ用）
   ======================================== */
.tel-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, -webkit-transform .3s ease;
  cursor: pointer;
  margin: 0 auto;
  background: #FF7308;
  padding: 10px 15px;
  width: 100%;
  height: 71px;
  text-decoration: none;
}

.tel-btn:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.tel-btn.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.tel-btn__icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.tel-btn__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tel-btn__wrap {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tel-btn__number {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
}

.tel-btn__time {
  margin-top: 8px;
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1;
}

.tel-btn__time-arrow {
  margin: 0 2px;
  color: #FFF;
  font-size: 8px;
  font-weight: 400;
}

/* ========================================
   mapセクション
   ======================================== */
.thanks {
  height: 100vh;
}

.thanks__inner {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 650px;
  height: inherit;
}

.thanks__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.thanks__text {
  margin-top: 39px;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

.thanks__wrap {
  margin-top: 30px;
  text-align: center;
}

.thanks__btn {
  gap: 8px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .5s ease;
  transition: background-color .5s ease;
  cursor: pointer;
  margin-top: 32px;
  border: none;
  border-radius: 8px;
  background: #FF7308;
  padding: 12px 32px;
  min-width: 272px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}

.thanks__btn:hover {
  background: rgb(212, 91.8380566802, 0);
}

.thanks__btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 45px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: right .5s ease;
  transition: right .5s ease;
  margin-left: 4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  width: 11px;
  height: 11px;
  content: '';
}

.thanks__btn:hover::after {
  right: 35px;
}

/* ========================================
   トップへ戻るボタン
   ======================================== */
.top-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 30px;
  bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  -webkit-transition: background-color .5s ease;
  transition: background-color .5s ease;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .45);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .45);
  border-radius: 50%;
  background: #FFF;
  width: 64px;
  height: 64px;
  text-decoration: none;
}

.top-btn:hover {
  background: #f5f5f5;
}

.top-btn::before {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  margin-bottom: 2px;
  border-top: 1px solid #FF7308;
  border-right: 1px solid #FF7308;
  width: 26px;
  height: 26px;
  content: '';
}

.top-btn.is-active {
  visibility: visible;
  opacity: 1;
}

.top-btn__text {
  margin-top: 20px;
  color: #FF7308;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}

/* レスポンシブ対応 */

@media only screen and (min-width: 768px) {

  .fv__pattern-img.js-fadeInUp {
    -webkit-transform: none;
    transform: none;
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (min-width: 769px) {

  .tel-btn {
    display: none;
  }
}

@media (min-width: 1200px) {

  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1921px) {

  .message__header {
    top: -450px;

  }
}
@media screen and (min-width: 1440px) {

  .message__header {
    top: -350px;

  }
}
@media screen and (min-width: 1360px) {

  .message__header {
    overflow: visible;

  }
}

@media screen and (max-width: 1200px) {

  .drawer__icon {
    display: inline-block;
  }

  .header__nav {
    display: none;
  }

  .header__contact {
    display: none;
  }
}

@media screen and (max-width: 1000px) {

  .about__company-wrap {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .md-lg-none {
    display: none;
  }

  .md-lg-show {
    display: block;
  }

  .message__header {
    right: 0;
    left: 50px;
  }

  .services__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card{
    width: 100%;
  }
  .card__number {
    font-size: 105px;
}
  .card__title {
    font-size: 24px;
}
}

@media screen and (max-width: 768px) {

  html {
    font-size: 1.3333333333vw;
  }

  :root {
    --header-height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1260px;
  }

  .l-container.l-container--narrow {
    max-width: 1020px;
  }

  .l-container.l-container--wide {
    max-width: 1500px;
  }

  .about__inner {
    padding: 0 20px;
  }

  .about__company-value {
    padding-left: 0;
  }

  .about {
    padding: 60px 0;
  }

  .about__company {
    margin-bottom: 60px;
  }

  .about__company-item {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
  }

  .about__company-label {
    width: 100%;
    text-align: left;
  }

  .section-header__title-en {
    font-size: 54px;
  }

  .section-header__title-ja {
    margin-top: -23px;
    font-size: 21px;
  }

  .skip-link {
    padding: 10px 20px;
    font-size: 16px;
  }

  .md-none {
    display: none;
  }

  .md-show {
    display: block;
  }

  .contact__privacy-check .contact__form-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .contact {
    padding: 60px 0 80px;
  }

  .contact__inner {
    max-width: 100%;
  }

  .contact__form-group {
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .contact__form-row {
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact__form-label {
    padding: 0;
    width: 100%;
  }

  .contact__privacy-content {
    padding: 20px;
    max-height: 200px;
  }

  .contact__submit {
    min-width: 300px;
  }

  .drawer__icon {
    padding: 0 20px;
  }

  .drawer__content {
    padding-top: 40px;
  }

  .drawer__logo {
    width: 250px;
  }

  .drawer__nav {
    margin-top: 24px;
  }

  .drawer__nav-item {
    margin-top: 12px;
  }

  .footer__logo {
    width: 160px;
  }

  .footer {
    padding: 40px 0 100px;
    height: 430px;
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .footer__info {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__contact {
    gap: 3px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__copyright {
    bottom: 70px;
  }

  .fv__bg {
    height: 100vh;
  }

  .fv__pattern-img {
    bottom: 280px;
  }

  .header {
    height: 60px;
  }

  .header__inner {
    padding: 0 0 0 20px;
  }

  .header__logo-img {
    width: 250px;
  }

  .history {
    margin-top: 80px;
  }

  .history__timeline {
    gap: 25px;
  }

  .history__title {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .history__item {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 20px;
  }

  .history__date {
    width: 100%;
    font-size: 14px;
  }

  .history__item::before {
    top: 4px;
    left: 0;
  }

  .history__item::after {
    top: 17px;
    left: 6px;
    height: calc(100% + 20px);
  }

  .history__desc {
    padding-left: 0;
    font-size: 14px;
  }

  .map__container {
    aspect-ratio: 1/1;
    max-width: 400px;
    height: auto;
 
  }

  .map__container iframe {
    aspect-ratio: 350/350;
    object-fit: cover;
    width: 100%;
    height: 100%;
      border: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  top: 0 !important;
  left: 0 !important;

  /* Safari 拡大対策 */
  max-height: none !important;
  min-height: 0 !important;
  zoom: 1 !important;
  -webkit-text-size-adjust: 100% !important;
  }

  .message__inner {
    padding: 0;
  }

  .message__header {
    top: -42vw;
    right: 0;
    left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .message__title {
    font-size: 5.4vw;
  }

  .message__icon {
    right: -15px;
    margin-left: auto;
    width: 49vw;
  }

  .message__content {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .message__wrap {
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .message__img {
    width: 100%;
    max-width: 430px;
    height: auto;
  }

  .services {
    padding: 40px 0 48px;
  }

  .services__inner {
    padding: 0 20px;
  }

  .thanks__inner {
    padding: 0 20px;
  }

  .top-btn {
    right: 13px;
    bottom: 96px;
  }
}

@media screen and (max-width: 600px) {

  .about {
    padding: 40px 0;
  }

  .about__header {
    margin-bottom: 40px;
  }

  .about__title-en {
    font-size: 60px;
  }

  .about__title-ja {
    font-size: 28px;
  }

  .about__company-item {
    padding: 16px;
  }

  .contact__form-error {
    font-size: 12px;
  }
}

@media screen and (max-width: 430px) {

  .fv__pattern-img {
    bottom: 65vw;
  }

  .message__header {
    top: -49vw;
  }

  .message__title {
    font-size: 6.4vw;
  }

  .message__icon {
    width: 58vw;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */

.tel-btn-sp{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}