@charset "UTF-8";

/*===================================================

  20250920
  整形外科クリニック開業支援 LP
  株式会社メディアーク

===================================================*/
:root {
  --txt-main: #00182F;
  --color-blue1: #0095D8;
  --color-blue2: #0C3F81;
  --color-l-blue1: #F1F9FC;
  --color-green1: #00F9ED;
  --color-gra-blue: linear-gradient(0deg, rgba(12, 63, 129, 1) 0%, rgba(14, 90, 190, 1) 100%);
  --color-gra-orange: linear-gradient(0deg, rgba(219, 110, 0, 1) 0%, rgba(255, 136, 0, 1) 100%);
  --font-mincho: "Shippori Mincho", serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  --content-width: 1280px;
  --content-width-middle: 1180px;
  --content-width-small: 1080px;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  box-shadow: none;
}

input,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

html {
  scroll-behavior: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

td,
th {
  padding: 0;
}

header,
footer,
main {
  display: block;
}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--txt-main);
  font-family: var(--font-gothic);
  word-break: break-word;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
  text-decoration: none;
}

em {
  font-style: normal;
}

sub {
  vertical-align: baseline;
  font-size: 0.75em;
}

sup {
  vertical-align: top;
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
}

/*===================================================

 ローディング

===================================================*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dceef2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top: 4px solid #5aa3ad;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#loading.hide {
  opacity: 0;
  visibility: hidden;
}

/*===================================================

 共通パーツ

===================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

/* テキスト----- */
.bold {
  font-weight: 700;
}

.fc--red {
  color: #d00000;
}

.fc--blue {
  color: var(--color-blue1);
}

.fs--s {
  font-size: .8em;
}

.fs--m {
  font-size: 1.25em;
}

.fs--l {
  font-size: 1.5em;
}

/* リンク----- */
.link-blank {
  position: relative;
}

.link-blank::after {
  content: "";
  display: inline-flex;
  background: url(../img/arrow-03.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-left: .2em;
}

/* ボタン----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gra-blue);
  border-radius: 40px;
  padding: 12px 40px 12px 24px;
  color: #fff;
  font-size: 1em;
  line-height: 1.2;
  position: relative;
}

.btn-primary::after {
  content: "";
  background-image: url(../img/arrow-01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

/*===================================================

 animation

===================================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media print,
screen and (min-width: 769px) {
  .anime-down {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .anime-down.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .anime-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .anime-up.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .anime-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .anime-left.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }

  .anime-right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .anime-right.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }

  .anime-fadein {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
  }

  .anime-fadein.visible {
    opacity: 1;
    visibility: visible;
  }
}

@media print {

  .anime-up,
  .anime-down,
  .anime-right,
  .anime-left {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .anime-fadein {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/*===================================================

 header / footer

===================================================*/
/* header */
.l-header .header-logo {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 180px;
  z-index: 10;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 767px) {
  .l-header .header-logo {
    top: 10px;
    left: 20px;
    width: 100px;
  }
}

/* footer */
.l-footer {
  padding: 0 .4vw;
}

.l-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
}

.l-footer .copyright {
  font-size: 14px;
}

.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 3em;
  font-size: 14px;
}

.footer-logo {
  width: 220px;
  margin: 48px auto 24px;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0 24px;
  }

  .l-footer__inner {
    padding: 32px 0;
  }

  .l-footer .copyright {
    font-size: 10px;
  }

  .footer-menu-list {
    gap: 1em 2em;
    font-size: 12px;
  }

  .footer-logo {
    width: 100px;
    margin: 40px auto 24px;
  }
}

/* ページトップボタン */
.btn-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  background: #80abd1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .16);
}

.btn-pagetop::before {
  content: "";
  display: inline-flex;
  background: url(../img/arrow-02.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.btn-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .btn-pagetop {
    right: 4px;
    bottom: 8px;
    width: 32px;
    height: 32px;
  }

  .btn-pagetop::before {
    width: 20px;
    height: 20px;
  }
}

/*===================================================

 メインビジュアル

===================================================*/
.mv {
  padding: 0 2.4vw;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mv {
    background: url(../img/mv-bg_pc.jpg) no-repeat 0 0;
    background-size: 100% auto;
  }
}

.mv__contents {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
  max-width: var(--content-width-small);
  margin: 0 auto;
  padding: 400px 0 160px;
  position: relative;
  z-index: 9;
}

.mv__contents .copy-box {
  position: absolute;
  background: url(../img/mv-copy-box.png) no-repeat 0 0;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mv__contents .copy-box__txt {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.mv__contents .copy-box.-copy-box-1 {
  width: 200px;
  height: 200px;
  top: 80px;
  left: 40px;
}

.mv__contents .copy-box.-copy-box-2 {
  width: 260px;
  height: 260px;
  top: 140px;
  left: 220px;
  transition-delay: .4s;
}

.mv__copy {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.4;
  transition-delay: .4s;
}

.mv__copy .hightlight {
  display: inline-block;
  background: var(--color-green1);
  font-family: var(--font-gothic);
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 16px 12px;
  margin-right: 8px;
}

.mv__lead {
  margin-top: 64px;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 0 5px #fff;
  transition-delay: .8s;
}

.mv__txt {
  margin-top: 40px;
  font-size: 18px;
  line-height: 2;
  text-shadow: 0 0 5px #fff;
  transition-delay: 1.2s;
}

.mv__img-01 img,
.mv__img-02 img,
.mv__img-03 img,
.mv__img-04 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__img-01 {
  position: absolute;
  width: 26vw;
  top: 0;
  right: 4.9vw;
  aspect-ratio: 5/3;
  transition-delay: .4s;
}

.mv__img-02 {
  position: absolute;
  width: 18.2vw;
  top: 20.5vw;
  right: 0;
  transition-delay: .8s;
}

.mv__img-03 {
  position: absolute;
  width: 15.625vw;
  top: 38.6vw;
  left: 0;
  transition-delay: 1.2s;
}

.mv__img-04 {
  position: absolute;
  width: 13.5vw;
  bottom: 8%;
  left: 63.3vw;
}

@media screen and (max-width: 767px) {
  .mv {
    padding: 0 24px;
    background: url(../img/mv-bg_sp.jpg) no-repeat 0 0;
    background-size: 100% auto;
  }

  .mv__contents {
    padding: 63.6vw 0 56vw;
  }

  .mv__contents .copy-box__txt {
    font-size: 13px;
  }

  .mv__contents .copy-box.-copy-box-1 {
    width: 110px;
    height: 110px;
    top: 12vw;
    left: 28vw;
  }

  .mv__contents .copy-box.-copy-box-2 {
    width: 140px;
    height: 140px;
    top: 26vw;
    left: 42vw;
  }

  .mv__copy {
    font-size: 24px;
  }

  .mv__copy .hightlight {
    font-size: 32px;
    padding: 4px 8px 6px;
    margin: 4px 0;
  }

  .mv__lead {
    margin-top: 24px;
    font-size: 18px;
  }

  .mv__txt {
    margin-top: 24px;
    font-size: 16px;
  }

  .mv__img-01 {
    width: 31.5vw;
    top: auto;
    bottom: 30vw;
    right: 0;
  }

  .mv__img-02 {
    width: 35.9vw;
    top: 0;
    right: 0;
    aspect-ratio: 14/16;
  }

  .mv__img-03 {
    width: 50vw;
    top: auto;
    left: 0;
    bottom: 10.8vw;
  }

  .mv__img-04 {
    width: 23vw;
    bottom: auto;
    top: 76vw;
    left: auto;
    right: 0;
  }
}

/*===================================================

 私たちの考える、新規開業支援

===================================================*/
.vision-wrap {
  padding: 0 2.4vw;
}

@media screen and (min-width: 768px) {
  .vision-wrap {
    background: url(../img/vision-bg_pc.jpg) no-repeat right center;
    background-size: cover;
  }
}

.vision__contents {
  max-width: var(--content-width-small);
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.vision-head {
  text-align: center;
}

.vision-btn-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: 120px;
  margin: 0 auto;
  border-radius: 8px;
  border: 3px solid #fff;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0);
  transition: background .2s;
  position: relative;
}

.vision-btn-toggle::before,
.vision-btn-toggle::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 48px;
  transition: all .3s;
}

.vision-btn-toggle::before {
  transform: rotate(90deg);
}

.vision__contents.is-active .vision-btn-toggle::before {
  transform: rotate(180deg);
}

.vision__contents.is-active .vision-btn-toggle::after {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .vision-btn-toggle:hover {
    background: rgba(255, 255, 255, .1);
  }
}

.vision-body {
  text-align: center;
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: .05em;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all .5s ease;
}

.vision__contents.is-active .vision-body {
  padding-top: 80px;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.vision-body p {
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .vision-wrap {
    background: url(../img/vision-bg_sp.jpg) no-repeat 0 center;
    background-size: cover;
    padding: 0 24px;
  }

  .vision__contents {
    padding: 48px 0;
  }

  .vision-btn-toggle {
    height: 80px;
    border-width: 2px;
    font-size: 16px;
    letter-spacing: .1em;
    padding: 8px 32px 8px 16px;
  }

  .vision-btn-toggle::before,
  .vision-btn-toggle::after {
    width: 15px;
    height: 1px;
    right: 16px;
  }

  .vision-body {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
  }

  .vision__contents.is-active .vision-body {
    padding-top: 40px;
    text-align: left;
  }

  .vision-body p {
    margin-bottom: 1.5em;
  }
}

/*===================================================

 ご要望例

===================================================*/
.support-section {
  margin-bottom: -20vw;
}

.support-head {
  background: url(../img/support-head-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 140px 2.4vw 16vw;
  text-align: center;
}

.support-head__txt {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .05em;
}

.support-head__ttl {
  margin-top: 24px;
  font-family: var(--font-mincho);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.support-head__ttl .hightlight {
  display: inline-block;
  background: var(--txt-main);
  color: #fff;
  padding: 8px 16px 12px;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .support-section {
    margin-bottom: -80px;
  }

  .support-head {
    padding: 64px 24px 100px;
  }

  .support-head__txt {
    font-size: 18px;
  }

  .support-head__ttl {
    margin-top: 24px;
    font-size: 24px;
    text-align: left;
  }

  .support-head__ttl .hightlight {
    padding: 4px 8px 6px;
    margin: 0 4px 8px 0;
  }
}

.support-body {
  top: -10vw;
  background: #fff;
  border-radius: 10vw;
  box-shadow: 0 3px 40px 0 rgba(0, 0, 0, .16);
  position: relative;
  padding: 100px 2.4vw 100px;
}

.support-body .icon-example {
  background: url(../img/icon-label.svg) no-repeat center;
  background-size: contain;
  width: 126px;
  height: 80px;
  display: flex;
  justify-content: center;
  padding-top: 24px;
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -63px;
}

.support-example-list {
  max-width: var(--content-width-middle);
  margin: 0 auto;
}

.support-example-list .support-example:not(:last-child) {
  margin-bottom: 100px;
}

.support-example__head {
  border: 3px solid var(--color-blue2);
  border-radius: 4px;
  min-height: 120px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 48px;
}

.support-example__head-ttl {
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
}

.support-example__head-label {
  background: var(--color-gra-blue);
  display: inline-flex;
  align-items: center;
  border-radius: 4px 4px 0 0;
  color: #fff;
  line-height: 1;
  font-size: 16px;
  font-family: var(--font-mincho);
  height: 50px;
  padding: 0 16px;
  position: absolute;
  top: -30px;
  left: -3px;
}

.support-example__head-label .number {
  font-size: 32px;
  margin-left: 16px;
  padding-left: 16px;
  padding-bottom: 4px;
  border-left: 1px solid #fff;
  line-height: .6;
}

.support-example__box {
  position: relative;
  background: var(--color-l-blue1);
  padding: 64px 80px;
  border-radius: 8px;
}

.support-example__box::after {
  content: "";
  background: url(../img/support-dot.svg) no-repeat center;
  background-size: contain;
  width: 8px;
  height: 72px;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}

.support-example__box-ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.support-example__box-row {
  margin-top: 32px;
  display: flex;
  gap: 0 48px;
}

.support-example__box-desc {
  flex: 1;
  line-height: 2;
}

.support-example__box-img {
  width: 400px;
}

@media screen and (max-width: 767px) {
  .support-body {
    top: -40px;
    border-radius: 40px;
    padding: 80px 8px 40px;
  }

  .support-body .icon-example {
    width: 100px;
    height: 68px;
    padding-top: 20px;
    font-size: 15px;
    top: -30px;
    margin-left: -50px;
  }

  .support-example-list .support-example:not(:last-child) {
    margin-bottom: 56px;
  }

  .support-example__head {
    border-width: 2px;
    border-radius: 4px;
    min-height: initial;
    padding: 16px 24px;
    margin: 0 8px 36px;
  }

  .support-example__head-ttl {
    font-size: 20px;
  }

  .support-example__head-label {
    font-size: 11px;
    height: 30px;
    padding: 0 10px;
    top: -24px;
    left: -2px;
  }

  .support-example__head-label .number {
    font-size: 18px;
    margin-left: 8px;
    padding-left: 8px;
    padding-bottom: 2px;
  }

  .support-example__box {
    padding: 32px 16px;
  }

  .support-example__box::after {
    width: 6px;
    height: 50px;
    top: -28px;
  }

  .support-example__box-ttl {
    font-size: 18px;
  }

  .support-example__box-row {
    margin-top: 24px;
    flex-direction: column-reverse;
    gap: 24px;
  }

  .support-example__box-desc {
    flex: 1;
    line-height: inherit;
  }

  .support-example__box-img {
    width: initial;
  }
}

/*===================================================

 世界中から厳選した製品

===================================================*/
.device-section {
  padding: 10vw 2.4vw 0;
}

@media screen and (min-width: 768px) {
  .device-section {
    background: url(../img/device-bg_pc.jpg) no-repeat 0 0;
    background-size: cover;
  }
}

.device-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.device-heading {
  color: #fff;
  margin-bottom: 40px;
}

.device-heading__txt {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .05em;
}

.device-heading__ttl {
  margin-top: 24px;
  font-family: var(--font-mincho);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.device-heading__ttl .hightlight {
  display: inline-block;
  background: var(--color-green1);
  color: var(--txt-main);
  padding: 8px 16px 12px;
  border-radius: 4px;
  margin-right: 8px;
}

.device-note {
  position: relative;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .05em;
  padding: 0 0 4px 4px;
  border-bottom: 2px solid #fff;
}

.device-note::before {
  content: "";
  display: block;
  background: url(../img/icon-info_green.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 2px;
  left: -28px;
}

.device-lead-txt {
  margin-top: 40px;
  color: #fff;
  font-size: 18px;
  line-height: 2;
  text-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.device-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.device-item {
  border-radius: 4px;
  background: #fff;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.device-item:nth-child(odd) {
  background: linear-gradient(135deg, rgba(193, 236, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 1) 65%, rgba(210, 255, 253, 1) 100%);
}

.device-item:nth-child(even) {
  background: linear-gradient(135deg, rgba(193, 236, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 1) 65%, rgba(245, 220, 255, 1) 100%);
}

.device-item__ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.device-item__ttl small {
  font-size: 16px;
  display: block;
}

.device-item__img {
  margin: auto 0 0;
}

.device-item__btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  /*width: calc(100% - 32px);*/
}

.device-item__btn>a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 24 47 / .6);
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  padding: 8px 12px 8px 16px;
  transition: all .4s;
}

@media screen and (min-width: 768px) {
  .device-item__btn>a:hover {
    background: rgb(0 24 47 / .9);
  }
}


@media screen and (max-width: 767px) {
  .device-section {
    background: url(../img/device-bg_sp.jpg) no-repeat 0 0;
    background-size: cover;
    padding: 40px 24px 0;
  }

  .device-section__inner {
    padding: 64px 0;
  }

  .device-heading {
    margin-bottom: 24px;
  }

  .device-heading__txt {
    font-size: 18px;
  }

  .device-heading__ttl {
    margin-top: 16px;
    font-size: 24px;
  }

  .device-heading__ttl .hightlight {
    padding: 4px 8px 6px;
    margin: 0 0 8px;
  }

  .device-note {
    display: inline;
    font-size: 12px;
    border-bottom-width: 1px;
    padding: 0 0 4px 0;
  }

  .device-note::before {
    display: inline-block;
    width: 16px;
    height: 16px;
    top: 2px;
    left: -20px;
  }

  .device-lead-txt {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .16);
  }

  .device-list {
    margin: 32px -16px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .device-item {
    padding: 10px 8px 8px;
    aspect-ratio: initial;
  }

  .device-item__ttl {
    font-size: 12px;
    line-height: 1.2;
  }

  .device-item__ttl small {
    font-size: 11px;
  }

  .device-item__btn {
    right: 4px;
    bottom: 4px;
  }

  .device-item__btn>a {
    background: rgb(0 24 47 / .8);
    font-size: 10px;
    padding: 6px 6px 6px 10px;
    border: 1px solid #fff;
  }
}

/*===================================================

 ご利用の流れ

===================================================*/
.flow-section {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(241, 249, 252, 1) 100%);
  padding: 0 2.4vw;
}

.flow-section__inner {
  max-width: var(--content-width-middle);
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading__ttl {
  font-size: 32px;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2;
}

.section-heading__lead {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .flow-section {
    padding: 0 16px;
  }

  .flow-section__inner {
    padding: 56px 0 40px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading__ttl {
    font-size: 24px;
  }

  .section-heading__lead {
    margin-top: 16px;
    font-size: 14px;
  }
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  margin-bottom: 24px;
}

.flow-item {
  background: #fff;
  border-radius: 8px;
  padding: 64px 24px 24px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  position: relative;
}

.flow-item:nth-child(2) {
  transition-delay: .8s;
}

.flow-item:nth-child(3) {
  transition-delay: 1.6s;
}

.flow-item:not(:last-child)::after {
  content: "";
  display: block;
  background: url(../img/flow-arrow.svg) no-repeat center;
  background-size: contain;
  width: 22px;
  height: 40px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 14px;
}

.flow-item__number {
  position: absolute;
  top: -15px;
  left: 50%;
  margin-left: -63px;
  background: url(../img/icon-label.svg) no-repeat center;
  background-size: contain;
  width: 126px;
  height: 80px;
  padding-top: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-mincho);
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

.flow-item__img {
  text-align: center;
  margin-bottom: 16px;
}

.flow-item__ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-item__ttl small {
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.flow-item__txt {
  margin-top: .8em;
}

.flow-note-wrap {
  margin-top: 48px;
  text-align: center;
}

.flow-note {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .05em;
  padding: 0 0 4px 4px;
  border-bottom: 2px solid var(--color-blue1);
}

.flow-note::before {
  content: "";
  display: block;
  background: url(../img/icon-info_blue.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 2px;
  left: -28px;
}

@media screen and (max-width: 767px) {
  .flow-list {
    display: block;
    margin-bottom: 0;
  }

  .flow-item {
    padding: 24px 16px 24px 108px;
    margin-bottom: 40px;
    position: relative;
  }

  .flow-item:not(:last-child)::after {
    width: 20px;
    height: 36px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) rotate(90deg);
    margin-left: 0;
  }

  .flow-item__number {
    top: -10px;
    left: 20px;
    margin-left: 0;
    width: 70px;
    height: 48px;
    padding-top: 10px;
    font-size: 14px;
  }

  .flow-item__img {
    position: absolute;
    top: 40px;
    left: 16px;
    width: 80px;
  }

  .flow-item__ttl {
    font-size: 18px;
    text-align: left;
  }

  .flow-item__ttl small {
    font-size: 12px;
    display: inline-block;
  }

  .flow-item__txt {
    font-size: 14px;
  }

  .flow-note-wrap {
    margin-top: 32px;
  }

  .flow-note {
    display: inline;
    font-size: 12px;
    border-bottom-width: 1px;
    padding: 0 0 4px 0;
  }

  .flow-note::before {
    display: inline-block;
    width: 16px;
    height: 16px;
    top: 2px;
    left: -20px;
  }
}

/*===================================================

 CTA

===================================================*/
.cta-wrap {
  background: #DCF7FF;
  position: relative;
  padding: 0 2.4vw;
}

.cta-wrap::after {
  content: "";
  border-style: solid;
  border-color: #fff transparent transparent;
  border-width: 50px 100px 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cta-wrap::before {
  content: "";
  display: block;
  background: url(../img/cta-bg.jpg) no-repeat right 0;
  background-size: auto 100%;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cta__inner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.cta__inner>p {
  font-size: 24px;
  font-weight: 700;
}

.cta-wrap .btn-wrap {
  margin-top: 40px;
}

.btn-cta {
  background: var(--color-gra-orange);
  color: #fff;
  box-shadow: 0 -3px 0 0 rgba(0, 0, 0, .2) inset, 0 4px 12px 0 rgba(0, 0, 0, .3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  border-radius: 50px;
  max-width: 560px;
  height: 90px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .1em;
  transition: filter .3s;
}

.btn-cta::after {
  content: "";
  background-image: url(../img/arrow-01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.btn-cta:hover {
  filter: brightness(1.15);
}

@media screen and (max-width: 767px) {
  .cta-wrap {
    padding: 0 24px;
  }

  .cta-wrap::after {
    border-width: 40px 100px 0;
  }

  .cta__inner {
    padding: 64px 0 100px;
  }

  .cta__inner>p {
    font-size: 16px;
    line-height: 1.75;
  }

  .cta-wrap .btn-wrap {
    margin-top: 32px;
  }

  .btn-cta {
    height: 64px;
    font-size: 18px;
  }

  .btn-cta::after {
    width: 24px;
    height: 24px;
    right: 16px;
  }
}

/*===================================================

 Instagram

===================================================*/
.sns-area {
  padding: 0 2.4vw;
}

.sns-area__inner {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  max-width: var(--content-width-small);
  margin: 0 auto;
  text-align: center;
}

.sns-area__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 56px;
}

.sns-area__heading .icon-instagram {
  display: flex;
}

.sns-area__btn {
  margin-top: 56px;
  text-align: center;
}

.btn-instagram {
  width: 280px;
  height: 56px;

  background: linear-gradient(45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%);
  background: linear-gradient(45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4);
  transition: filter .3s;
}

.btn-instagram:hover {
  filter: brightness(1.15);
}

@media screen and (max-width: 767px) {
  .sns-area {
    padding: 0 16px;
  }

  .sns-area__inner {
    padding: 40px 0 24px;
  }

  .sns-area__heading {
    gap: 0 12px;
    font-size: 18px;
    margin-bottom: 40px;
  }

  .sns-area__heading .icon-instagram {
    width: 20px;
  }

  .sns-area__btn {
    margin-top: 40px;
    text-align: center;
  }

  .btn-instagram {
    font-size: 13px;
    width: auto;
  }
}

/* widget表示 */
.instagram-widget {
  display: flex;
}
/* /widget表示 */