@charset "UTF-8";

/* ---------------------
  - *基本設定
  - *アニメーション
  - *タイトル
  - *メインビジュアル
  - *医院概要
  - *診療案内
  - *当院の特徴
  - *ご挨拶
--------------------- */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.front {
  overflow: hidden;
}

section .inner {
  padding: 120px 0;
}

.text > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ----- パララックス ----- */
.parallax {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
}

/* 切り抜く範囲 */
.parallax_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

/* 固定する画像 */
.parallax_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  section .inner {
    padding: 70px 20px;
  }

  /* ----- パララックス ----- */
  .parallax {
    height: 300px;
  }
}

/* ==================================================================================================================================

  *アニメーション

================================================================================================================================== */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomInAnime {
  from {
    pointer-events: none;
    transform: scale(0.5);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOutAnime {
  from {
    pointer-events: none;
    transform: scale(1);
  }

  to {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.fadeUp,
.zoomOut,
.zoomIn,
.fadeRight,
.fadeLeft {
  opacity: 0;
}

.fadeUp.is-active {
  animation: fadeUpAnime 1s forwards;
}

.fadeRight.is-active {
  animation: fadeRightAnime 1s forwards;
}

.fadeLeft.is-active {
  animation: fadeLeftAnime 1s forwards;
}

.zoomIn.is-active {
  animation: zoomInAnime 0.8s forwards;
}

.zoomOut.is-active {
  animation: zoomOutAnime 1s forwards;
}

/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.top_title {
  margin-bottom: 70px;
  line-height: 1.5;
  text-align: center;
}

.top_title::before {
  content: "";
  display: block;
  width: 65px;
  height: 58.5px;
  margin: 0 auto 20px;
  background: url(../images/common/logo.svg) no-repeat center/cover;
}

.top_title h2 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.2em;
}

.top_title .eng {
  display: inline-block;
  margin: 10px auto 0;
  font-family: "century-gothic", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--main-color);
  font-size: 18px;
  letter-spacing: 0.2em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .top_title {
    margin-bottom: 40px;
  }

  .top_title::before {
    content: "";
    display: block;
    width: 50px;
    height: 45px;
    margin: 0 auto 20px;
  }

  .top_title h2 {
    font-size: 26px;
  }

  .top_title .eng {
    font-size: 16px;
  }
}

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.mainvisual {
  position: relative;
  z-index: 2;
  height: 900px;
  overflow: hidden;
}

.mvSlider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* ----- スライダーのArrowボタン ----- */
.mvSlider .sliderBtn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

.mvSlider .sliderBtn#mv_btnPrev {
  left: 20px;
}

.mvSlider .sliderBtn#mv_btnNext {
  right: 20px;
}

.mvSlider .sliderBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}

.mvSlider .sliderBtn span:hover {
  background: var(--text-color);
}

.mvSlider .sliderBtn span::before {
  padding: 0 0 1px 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.2s;
}

.mvSlider .sliderBtn#mv_btnPrev span::before {
  content: "\f060";
}

.mvSlider .sliderBtn#mv_btnNext span::before {
  content: "\f061";
}

/* 各スライダーのボタンは非表示に */
.mvSlider .splide__arrows {
  display: none;
}

/* ----- MVの画像 ----- */
.mvImg {
  width: 100%;
  height: 100%;
}

.mvImg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(50, 113, 176, 0.05);
}

.mvImg .splide__track {
  width: 100%;
  height: 100%;
}

.mvImg .splide__slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

/* フェードの専用スタイル */
.fade .mvImg .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: calc(100% + 50px);
  pointer-events: none;
}

/* アニメーションを実行 */
/* MVのアニメーション  */
@keyframes showTranslate {
  0% {
    transform: translate3d(0, 0px, 0);
  }

  100% {
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes hideTranslate {
  0% {
    transform: translate3d(0, -30px, 0);
  }

  100% {
    transform: translate3d(0, 0px, 0);
  }
}

/* ----- キャッチコピー ----- */
.mvCatch {
  position: absolute !important;
  top: 37%;
  left: 0;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
}

.mvCatch .inner {
  position: relative;
  z-index: 1;
}

.mvCatch p {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  color: #ffffff;
  font-size: 46px;
  line-height: 1.7;
  letter-spacing: 0.25em;
  text-align: right;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

/* ----- コンテンツ ----- */
.mvContents {
  position: absolute !important;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mvContents .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mvContents .splide__track {
  width: 100%;
  height: 100%;
}

/* ----- 開院バナー ----- */
.banner_renewal {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  padding: 0 0 5px;
  background: url(../images/common/suisai-darkblue.jpg) repeat center/500px 500px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.banner_renewal .date {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 2px 20px;
  background: #ffffff;
  border-radius: 100000px;
  font-family: "century-gothic", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--main-color);
  font-size: 15px;
}

.banner_renewal .renewal_text {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.5;
}

.mv_banner {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: flex;
  gap: 10px;
}

.mv_banner .banner_item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 10px;
  width: 250px;
  height: 150px;
  background: rgb(255, 255, 255);
  border-radius: 15px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.65;
  text-align: center;
}

.mv_banner .banner_item i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 0 auto 5px;
  padding: 0 0 0 1px;
  background: url(../images/common/suisai-darkblue.jpg) repeat center/300px 300px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
}

.mv_banner a.banner_item:hover {
  opacity: 0.85;
}

/* ----- スマホ専用エリア ----- */
.sp_only {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .mainvisual {
    height: 500px;
  }

  /* ----- スライダーのArrowボタン ----- */
  .mvSlider .sliderBtn {
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 2px;
    font-size: 12px;
  }

  .mvSlider .sliderBtn#mv_btnPrev {
    left: 10px;
  }

  .mvSlider .sliderBtn#mv_btnNext {
    right: 10px;
  }

  .mvSlider .sliderBtn span::before {
    font-size: 11px;
  }

  /* ----- キャッチコピー ----- */
  .mvCatch {
    top: auto;
    bottom: 30px;
    display: none;
    transform: translateY(0);
  }

  .mvCatch.is-active {
    display: block;
  }

  .mvCatch p {
    font-size: 20px;
	  font-weight:600;
  }

  /* ----- コンテンツ ----- */
  .mvContents {
    display: none;
  }

  /* ----- 開院バナー ----- */
  .banner_renewal {
    position: static;
    width: 100%;
    height: auto;
    padding: 20px;
    border: none;
    border-radius: 15px;
  }

  .banner_renewal .date {
    width: 100%;
    padding: 2px 20px;
    font-size: 13px;
  }

  .banner_renewal .renewal_text {
    margin-top: 10px;
    font-size: 18px;
  }

  .mv_banner {
    position: static;
    display: flex;
    flex-flow: wrap;
    gap: 10px;
  }

  .mv_banner .banner_item {
    width: calc(50% - 5px);
    height: auto;
    padding: 20px 5px;
    background: var(--bg-color);
    border-radius: 13px;
    font-size: 13px;
	  border: solid 1px var(--main-color);
  }

  .mv_banner .banner_item:nth-child(1) {
    width: 100%;
    font-size: 15px;
  }

  .mv_banner .banner_item i {
    width: 40px;
    height: 40px;
    margin: 0 auto 5px;
    padding: 0 0 0 2px;
    font-size: 16px;
  }

  /* ----- スマホ専用エリア ----- */
  .sp_only {
    display: block;
    background: none !important;
  }

  .sp_only .inner {
    padding: 0 15px;
  }

  .sp_only_contents {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}

/* ==================================================================================================================================

  *医院概要（パターン02）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.clinic {
  position: relative;
  z-index: 1;
  padding: 25px 20px;
}

/* ----- お知らせ ----- */
.clinic .news {
  position: relative;
  z-index: 1;
  background: url(../images/common/suisai-blue.jpg) repeat center/500px auto;
  border-radius: 20px;
}

.clinic .news .inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  padding: 80px 0 85px;
}

.clinic .news .news_left {
  flex-shrink: 0;
}

.clinic .news .top_title {
  margin: 0 0 40px;
}

.clinic .news .top_title::before {
  margin: 0 auto 15px;
}

.clinic .news .top_title h2 {
  font-size: 34px;
}

.clinic .news .top_title .eng {
  margin-top: 5px;
  font-size: 20px;
}

.clinic .news .btn01 {
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .clinic {
    padding: 15px;
  }

  /* ----- お知らせ ----- */
  .clinic .news .inner {
    flex-flow: column;
    gap: 0;
    padding: 50px 20px;
  }

  .clinic .news .top_title {
    margin: 0 auto 25px;
  }

  .clinic .news .top_title::before {
    margin: 0 auto 15px;
  }

  .clinic .news .top_title h2 {
    font-size: 26px;
  }

  .clinic .news .top_title .eng {
    margin-top: 5px;
    font-size: 16px;
  }

  .clinic .news .btn01 {
    margin-top: 30px;
  }
}

/* ==================================================================================================================================

  *診療案内（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.medical {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(26, 144, 208, 0.5)), url(../images/front/medical-bg.jpg) no-repeat center/cover;
}

.medical .top_title {
  color: #ffffff;
}

.medical .top_title span {
  color: var(--main-color);
}

.medical_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}

.medical_item {
  position: relative;
  z-index: 1;
  height: auto;
}

.medical_item:hover {
  transform: translateY(-10px);
}

.medical_img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

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

.medical_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 40px 20px 80px;
  background: url(../images/front/medical-underline.png) no-repeat center bottom/100% auto, rgb(255, 255, 255);
  border-radius: 20px;
  text-align: center;
}

.medical_icon {
  width: 70%;
  max-width: 150px;
  margin: 0 auto 20px !important;
  padding: 12px;
  background: url(../images/front/medical-frame.png) no-repeat center/cover;
  border-radius: 50%;
}

.medical_icon img {
  padding: 10px;
  background: var(--bg-color);
  border-radius: 50%;
}

.medical_title h3 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--text-color);
  font-size: 140%;
}

.medical_title_eng {
  margin-top: 8px;
  font-family: "century-gothic", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.medical_text {
  width: 100%;
  margin-top: 40px;
  padding: 0 15px;
  color: var(--text-color);
}

.medical_text ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 12px 10px;
  width: 100%;
}

.medical_text ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 5px 10px;
  border-bottom: 1px dashed var(--line-color);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--sub-color);
  font-size: 90%;
  line-height: 1.5;
}

.medical_item:hover .medical_btn span {
  background: #ffffff;
  color: var(--main-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .medical {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(26, 144, 208, 0.5)), url(../images/front/medical-bg_sp.jpg) no-repeat center/cover;
  }

  .medical_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .medical_item:hover {
    transform: translateY(-5px);
  }

  .medical_inner {
    min-height: auto;
    padding: 30px 10px 50px;
  }

  .medical_icon {
    width: 40%;
    max-width: 120px;
  }

  .medical_title h3 {
    font-size: 130%;
  }

  .medical_title_eng {
    margin-top: 5px;
    font-size: 10px;
  }

  .medical_text {
    margin-top: 30px;
    padding: 0 15px;
  }

  .medical_text ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 12px 10px;
    width: 100%;
  }

  .medical_text ul li {
    padding: 0 0px 10px;
    font-size: 13px;
  }
}

/* ==================================================================================================================================

  *当院の特徴（パターン02）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  background: url(../images/common/suisai-blue.jpg) repeat center/500px auto;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -300px;
  z-index: -1;
  display: block;
  width: 1000px;
  height: 900px;
  background: url(../images/front/suisai-01.png) no-repeat center/cover;
  opacity: 0.5;
}

.feature::after {
  content: "";
  position: absolute;
  right: -400px;
  bottom: -200px;
  z-index: -1;
  display: block;
  width: 1000px;
  height: 900px;
  background: url(../images/front/suisai-01.png) no-repeat center/cover;
  opacity: 0.5;
}

.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 70px 30px;
}

.feature_item {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.feature_img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 500px;
  height: fit-content;
  margin-top: -50px;
  padding: 0 0 20px 20px;
}

.feature_img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: calc(100% - 70px);
  height: calc(100% - 50px);
  background: url(../images/front/suisai-img.jpg) no-repeat center/cover;
  border-radius: 20px;
}

.feature_img img {
  border-radius: 15px;
}

.feature_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column;
  width: calc(100% + 50px);
  height: 100%;
  min-height: 400px;
  margin: 0 0 0 -50px;
  padding: 60px 50px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.feature_inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 400px;
  height: 60px;
  background: url(../images/front/feature-underline.png) no-repeat center/cover;
}

.feature_title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--line-color);
}

.feature_title .feature_num {
  flex-shrink: 0;
  font-family: "century-gothic", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
}

.feature_title .feature_num span {
  color: var(--main-color);
}

.feature_title h3 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.feature_button {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
}

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

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -300px;
    width: 500px;
    height: 450px;
    opacity: 0.5;
  }

  .feature::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 500px;
    height: 450px;
    opacity: 0.5;
  }

  .feature_list {
    gap: 40px;
  }

  .feature_item {
    flex-flow: column;
    gap: 20px;
    width: 100%;
  }

  .feature_img {
    width: 100%;
    padding: 0 0 10px 10px;
  }

  .feature_img::after {
    width: 90%;
  }

  .feature_inner {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 30px 20px 45px;
  }

  .feature_title {
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .feature_title .feature_num {
    font-size: 30px;
  }

  .feature_title h3 {
    font-size: 18px;
  }
}

/* ==================================================================================================================================

  *ご挨拶（パターン01）

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.greeting {
  position: relative;
  z-index: 1;
}

.greeting::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc((100% - 1200px) / 2 + 200px);
  height: 100%;
  background: url(../images/front/greeting-img.jpg) no-repeat center/cover;
  opacity: 0.2;
}

.greeting_box {
  position: relative;
  z-index: 1;
}

.greeting_flex {
  display: flex;
  gap: 50px;
}

.greeting_box:not(:last-child) {
  margin-bottom: 70px;
}

.greeting_left {
  flex-shrink: 0;
  width: 60%;
}

.greeting_text {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 105%;
  line-height: 2.5;
}

.greeting_text .catch {
  color: var(--main-color);
  font-size: 130%;
	font-weight:600;
}

.greeting_text > *:not(:last-child) {
  margin-bottom: 2em;
}

.greeting_img {
  position: relative;
  z-index: 1;
  padding: 0 20px 20px 0;
}

.greeting_img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: calc(100% - 70px);
  height: calc(100% - 50px);
  background: url(../images/front/suisai-img.jpg) no-repeat center/cover;
  border-radius: 30px;
}

.greeting_img img {
  border-radius: 20px;
}

.greeting_profile {
  margin-top: 40px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.greeting_profile .position {
  font-size: 150%;
}

.greeting_profile .name {
  margin-top: 10px;
  font-size: 170%;
}

.greeting_profile .name .small {
  font-size: 80%;
}

.greeting_btn {
  margin-top: 50px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .greeting::before {
    width: 50px;
  }

  .greeting_flex {
    flex-flow: column-reverse;
    gap: 25px;
  }

  .greeting_left {
    width: 100%;
  }

  .greeting_img {
    width: 90%;
    margin: 0 auto;
    padding: 0 12px 12px 0;
  }

  .greeting_btn {
    margin-top: 40px;
  }
}
