/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. welcome
06. features
07. team
08. pricing
09. blog
10. contact
11. footer
--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/

:root {
  --font-main: "Noto Sans JP", sans-serif;
  --color-primary: #a8caff; /* パステルブルー */
  --color-secondary: #ffb6c1; /* パステルピンク（ライトピンク） */
  --color-dark: #3b566e;
  --color-light: #fef6ff; /* 背景の薄いパステルカラー */
  --color-white: #ffffff;
  --color-gray: #777;
  --color-black: #1e1e1e;
  --border-radius: 20px;
  --box-shadow-light: 0 2px 48px 0 rgba(0, 0, 0, 0.1);
}

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}
html[xmlns] .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}
* {
  box-sizing: border-box;
}
html,
body {
  font-family: var(--font-main);
  font-weight: 400;
  background-color: #fff;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}
ul {
  margin-bottom: 0px;
}
/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: var(--font-main);
}
::selection {
  background: var(--color-secondary);
  color: #fff;
}
::-moz-selection {
  background: var(--color-secondary);
  color: #fff;
}
.section {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}
.section.colored {
  background: var(--color-light);
}
.hr {
  bottom: 0px;
  width: 100%;
  height: 1px;
  margin-top: 100px;
  border-bottom: 1px solid #eee;
}
.center-text {
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}
.center-text.colored {
  color: #fff;
}
.center-text p {
  font-size: 15px;
  color: var(--color-gray);
  margin-bottom: 30px;
}
.left-text {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 28px;
  letter-spacing: 1px;
}
.left-text.light {
  color: #fff;
}
.left-text p.dark {
  color: var(--color-dark);
}
.padding-bottom-top-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.border-bottom {
  border-bottom: 1px solid #eee !important;
}
.mbottom-30 {
  margin-bottom: 30px !important;
}
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1em;
  line-height: 1.6;
}

.check-list .emoji,
.list-group .emoji {
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  text-align: center;
  vertical-align: top;
  margin-right: 0.5em;
  line-height: 1.2;
}

.check-list .check-text,
.list-group .check-text {
  flex: 1;
}
.list-group .list-group-item {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 480px) {
  .welcome-area h4 {
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}
/* リンクボタンとボタン共通スタイル */
a.main-button,
button.main-button {
  font-weight: 900;
  width: 400px; /* PC用の固定サイズ */
  max-width: 95%; /* スマホでは幅95%以内に制限 */
  border-radius: var(--border-radius);
  padding: 20px 10px;
  background-color: var(--color-primary);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.25px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  margin-top: 40px;
}
/* ホバー時の色変化 */
a.main-button:hover,
button.main-button:hover {
  background-color: var(--color-secondary);
}
/* ボタン内テキストをブロック化 */
.main-button .button-text {
  display: inline-block;
}
/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.header-area {
  position: fixed;
  top: 12px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-area .main-nav {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  background: #fff;
}
.header-area .main-nav .logo {
  width: 40px;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.logo-title {
  display: flex;
  align-items: center; /* 垂直方向中央 */
  gap: 12px; /* ロゴとタイトルの間隔 */
  text-decoration: none; /* リンクの下線を消す */
}

.logo-title .site-title {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  margin-top: 3px;
}

.header-area .main-nav .logo img {
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#loader .logo {
  width: 100px;
  margin-left: -10px;
  height: auto;
}
.main-nav .logo {
  width: 180px;
  height: auto;
}
.header-area .main-nav .nav {
  float: right;
  margin-left: 0px;
  margin-right: 30px;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
}
.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}
.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}
.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}
.header-area .main-nav .nav li a:hover {
  color: var(--color-secondary);
}
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 15px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 33px;
  display: none;
}
.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--color-dark);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--color-dark);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}
.header-area .main-nav .menu-trigger span {
  top: 16px;
}
.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}
.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}
.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}
.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: var(--color-dark);
}
.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: var(--color-dark);
}
.header-area.header-sticky {
  min-height: 80px;
}
.header-area.header-sticky .logo {
  margin: 10px 15px;
}
.header-area.header-sticky .nav li a {
  color: var(--color-black);
}
.header-area.header-sticky .nav li a.active {
  color: var(--color-secondary);
}
.header-area .logo {
  margin-top: 22px;
  margin-left: 30px;
}
@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
  .header-text h2 {
    margin-top: 0 !important;
  }
  .header-area {
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #fff !important;
    color: var(--color-dark);
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
  }
}
@media (min-width: 1200px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .main-nav .nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    float: none; /* 念のため削除 */
  }
  .logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-title .logo {
    display: block;
    height: 40px;
    width: auto;
  }
  .header-area.header-sticky .logo {
    margin-top: 0;
  }

  .logo-title .site-title {
    margin: 0;
    line-height: 1;
    font-size: 1.2rem;
  }
}

/* 
---------------------------------------------
Hero Section: welcome-area
--------------------------------------------- 
*/
.welcome-area {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100vh;
}
/* 背景オーバーレイ */
.welcome-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
/* 中央テキスト全体 */
.welcome-area .header-text {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  text-align: center;
  width: 100%;
  z-index: 2;
}
/* 見出し */
.welcome-area .header-text h1 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 54px;
  letter-spacing: 1.4px;
  margin-bottom: 30px;
  color: #fff;
}
/* サブテキスト */
.welcome-area .header-text p {
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  line-height: 36px;
  letter-spacing: 0.25px;
  position: relative;
}
/* 
---------------------------------------------
Responsive Adjustments
--------------------------------------------- 
*/
@media (min-width: 576px) {
  .pricing-item {
    height: 300px;
  }
  .features-small-item {
    height: 350px;
  }
}
@media (max-width: 991px) {
  .welcome-area .header-text {
    top: 65%;
    transform: translateY(-60%);
  }
  .welcome-area .header-text h1 {
    margin-bottom: 15px;
  }
  .welcome-area .header-text p {
    margin-bottom: 20px;
  }
}
@media (max-width: 820px) {
  .welcome-area .header-text {
    top: 65%;
    transform: translateY(-60%);
  }
  .welcome-area .header-text h1 {
    line-height: 30px;
    margin-bottom: 15px;
  }
  .welcome-area .header-text p {
    margin-bottom: 0px;
  }
}
@media (max-width: 765px) {
  .welcome-area .header-text {
    top: 50%;
    transform: translateY(-50%);
  }
  .welcome-area .header-text .buttons {
    display: none;
  }
  .welcome-area .header-text h1 {
    font-weight: 600;
    line-height: 46px;
    margin-bottom: 30px;
  }
}
/* 
---------------------------------------------
features
--------------------------------------------- 
*/
.features-small-item {
  cursor: pointer;
  display: block;
  background: var(--color-white);
  box-shadow: var(--box-shadow-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
}

.features-small-item .icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px auto;
  overflow: hidden;
  background: none;
  padding: 0;
  border-radius: 50%;
  position: relative;
}

.features-small-item .icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transition: transform 0.3s ease;
}

.features-small-item:hover .icon-img {
  transform: scale(1.1); /* ホバーで拡大 */
}

.features-small-item .features-title {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-black);
  letter-spacing: 0.7px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.features-small-item p {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-gray);
  letter-spacing: 0.5px;
  line-height: 25px;
  position: relative;
  z-index: 2;
}

.features-small-item a {
  float: right;
  position: relative;
  z-index: 2;
}

.home-feature {
  padding-top: 30px;
  z-index: 9;
}

@media (max-width: 991px) {
  .home-feature {
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 0px;
  }
}

/* 
---------------------------------------------
parallax & home seperator
--------------------------------------------- 
*/
.count-item strong {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: bold;
  transition: all 0.4s ease-in-out;
}
.work-process-item .icon i {
  font-size: 4rem;
  color: var(--color-primary);
}
@media (max-width: 991px) {
  .counter {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .counter .content {
    position: relative !important;
    top: 0% !important;
    transform: perspective(1px) translateY(0%) !important;
  }
  .counter .content .count-item {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .counter .content .count-item:hover strong {
    margin-top: 0px;
  }
  .counter .content .count-item:before {
    display: none;
  }
  .counter .content .count-item:after {
    display: none;
  }
  .counter .content .count-item strong {
    margin-top: 0px;
  }
}
/* 
---------------------------------------------
pricing
--------------------------------------------- 
*/
.pricing-item {
  background: var(--color-white);
  box-shadow: var(--box-shadow-light);
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  margin-top: 20px;
  padding: 30px 20px 40px;
}
.pricing-item .pricing-footer {
  text-align: center;
  margin-top: 50px;
}
.pricing-item .icon i {
  font-size: 4rem;
  color: var(--color-primary);
}
/* 
---------------------------------------------
footer
--------------------------------------------- 
*/
footer {
  background-image: linear-gradient(
    127deg,
    var(--color-secondary) 0%,
    var(--color-primary) 91%
  );
  padding-top: 10px;
}
footer .social {
  overflow: hidden;
  margin-top: 10px;
  text-align: center;
}
footer .social li {
  margin: 0px 10px;
  display: inline-block;
}
footer .social li a {
  color: var(--color-secondary);
  text-align: center;
  background-color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  display: inline-block;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .social li a:hover {
  background-color: var(--color-secondary);
  color: #fff;
}
footer .copyright {
  text-align: center;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.88px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  footer .text {
    margin-bottom: 30px;
  }
  footer h5 {
    margin-bottom: 15px;
  }
  footer .footer-nav {
    margin-bottom: 30px;
  }
}
/* 
---------------------------------------------
ローディング全体ラッパー
--------------------------------------------- 
*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* ロゴ＋「結婚ベトナム」を横並びにする */
.logo-text-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: left;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards 1s; /* ロゴ＋タイトルを一緒に表示 */
}

/* ロゴ画像 */
#loader .logo {
  width: 80px;
  height: auto;
}

/* 「結婚ベトナム」文字 */
.loader-logo-text {
  font-size: 1.4rem;
  color: var(--color-primary);
  /* color: #444; */
  font-weight: bold;
}

#loader img {
  width: 100px;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards 0s; /* 即表示 */
}

/* テキスト共通 */
.loader-text {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #444;
  opacity: 0;
  transform: translateY(10px);
}

/* ステップごとの表示時間差 */
.loader-text.step-1 {
  animation: fadeIn 1s ease-in-out forwards 1s; /* ロゴの後1秒 */
}
.loader-text.step-2 {
  animation: fadeIn 1s ease-in-out forwards 2.5s; /* その1.5秒後 */
}
.loader-text.step-3 {
  animation: fadeIn 1s ease-in-out forwards 4s; /* 最後に表示 */
}

/* フェードインアニメーション定義 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.pt-60 {
  padding-top: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
