@charset "UTF-8";
/* =======================================================================================
	font
======================================================================================= */
/* noto-sans-jp-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-jp-v53-latin-regular.woff2') format('woff2'); 
}
/* noto-sans-jp-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/noto-sans-jp-v53-latin-500.woff2') format('woff2');
}
/* noto-sans-jp-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-jp-v53-latin-700.woff2') format('woff2'); 
}

/* =======================================================================================
	Layout
======================================================================================= */
.inner {
	width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1199px) {
	.inner {
    width: calc(100% - 70px);
    margin: 0 auto;
	}
}
@media screen and (max-width: 640px) {
	.inner {
    width: calc(100% - 30px);
    margin: 0 auto;
	}
	.sp-new-line { display: block; }
}
/* =======================================================================================
	ヘッダー
======================================================================================= */
.header-wap {
	width: 100%;
	height: auto;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 5px 10px -8px rgba(0, 0, 0, 0.2);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
	max-width: 100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

/* ロゴ */
.logo { margin-left: 10px; }
.logo a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: bold;
}
.logo a:hover {
	color: #d65077;
	transition: .3s;
}
.logo img {
	width: 40px;
	height: 40px;
}
nav {
  display: flex;
  align-items: center;
	gap: 50px;
}
.nav-list {
  display: flex;
	gap: 30px;
	align-items: center;
  flex-direction: row;
  list-style-type: none;
}
.nav-item {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
	transition: .3s;
}
.nav-item:hover {
	color: #d65077;
	transition: .3s;
}
.note-logo {
	width: 65px;
	height: auto;
	vertical-align: sub;
}
.nav-mail { width: 190px; }
.nav-mail a:hover { color: #fff; background: #d65077; }
.nav-mail a {
	display: block;
	width: 100%;
	padding: 5px 5px 5px 25px;
	background: #eb6fa2;
	color: #fff;
	text-align: center;
	font-weight: bold;
	position: relative;
}
.nav-mail a::before {
	content: "";
	width: 27px;
  height: 19px;
	background: url(../img/icon_mail.webp) no-repeat center center / cover;
	position: absolute;
	top: 8px;
	left: 10px;
}
.nav-pc-none { display: none; }
#menu__toggle { display: none; }

@media screen and (max-width: 1199px) {
	.header-nav { padding-right: 10px; }
	.logo a { font-size: 12px; }
	.logo img {
    width: 30px;
		height: 30px;
		margin: 5px 0;
    vertical-align: baseline;
	}
	.sp-nav-logo {
		text-align: center;
		font-weight: bold;
		font-size: 13px;
	}
	.sp-nav-logo img {
		width: 25px;
		height: 25px;
		margin-right: 5px;
	}
  .nav-list {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
		height: 100vh; /* ← 高さを画面いっぱいに */
  	overflow-y: auto; /* ← 縦スクロール可能に */
    margin: -700px 0 0 0;
    padding: 20px 0 0;
    text-align: center;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
		background: rgba(255, 255, 255, 0.9);
    transition-duration: 0.5s;
  }
	.nav-list li {
		width: 100%;
		padding: 0 30px;
	}
  .nav-item {
    display: block;
		width: 100%;
    font-size: 13px;
		text-align: left;
    transition-duration: 0.5s;
		border-bottom: 1px solid #f4d1df;
  }
	.nav-pc-none {display: block; }
	.nav-mail a {
		max-width: 500px;
		width: 100%;
		margin: auto;
		text-align: center;
	}
	.nav-list li.nav-add {
		padding: 25px 30px;
		text-align: left;
		font-size: 12px;
		line-height: 1.5;
		background: #faf3f6;
	}
	.nav-add > div:first-child { margin-bottom: 15px; }
	.nav-add-ttl {
		margin-bottom: 5px;
		font-weight: bold;
		color: #d65077;
	}
	.nav-add > div > p { font-size: 11px; margin-bottom: 3px; }

/*ハンバーガーボタン*/
	#menu__toggle { opacity: 0; }
	#menu__toggle:checked ~ .menu__btn > span { transform: rotate(45deg); }
	#menu__toggle:checked ~ .menu__btn > span::before {
		top: 0;
		transform: rotate(0);
		background: #eb6fa2;
	}
	#menu__toggle:checked ~ .menu__btn > span::after {
		top: 0;
		transform: rotate(90deg);
		background: #eb6fa2;
	}
	#menu__toggle:checked ~ .nav-list {
		visibility: visible;
		left: 0;
		margin: 0;
	}
	.menu__btn {
		transition-duration: 0.25s;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		position: relative;
		bottom: 2px;
		width: 26px;
		height: 26px;
		cursor: pointer;
		z-index: 2;
	}
	.menu__btn span {
		display: inline-block;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #eb6fa2;
	}
	.menu__btn span::before {
		display: inline-block;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #d65077;
		content: "";
		top: -8px;
		transition-duration: 0.25s;
	}
	.menu__btn span::after {
		display: inline-block;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #d65077;
		content: "";
		top: 8px;
		transition-duration: 0.25s;
	}
}

/* =======================================================================================
	FV
======================================================================================= */
.fv-wrap {
	padding-top: 120px;
	background: url(../img/fv_bg.webp) no-repeat center center / cover ;
}
.fv-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fv-ttl {
	margin-bottom: 30px;
	font-size: 24px;
	position: relative;
	z-index: 1;
}
.fv-ttl::before {
	content: "";
	background: url(../img/fv_text.svg) no-repeat center center / cover;
	width: 500px;
	height: 138px;
	transform: rotate(-4deg);
	position: absolute;
	top: -70px;
	left: -100px;
	z-index: -1;
}
.fv-text {
	margin-bottom: 10px;
	padding-left: 20px;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4;
	color: #eb6fa2;
	position: relative;
}
.fv-text-line {
	background: #594d45;
	height: 100%;
	width: 2px;
	position: absolute;
	left: 0;
	top: 0;
}
.fv-text-line::before,
.fv-text-line::after {
	content: "";
	background: #594d45;
	height: 100%;
	width: 2px;
	position: absolute;
}
.fv-text-line::before { left: 5px; top: 0; }
.fv-text-line::after { left: 10px; top: 0; }
.fv-text-sb { margin-bottom: 20px; }
.fv-text-sb p { margin-bottom: 5px; }
.fv-list { margin-top: 25px; }
.fv-list-item {
	padding: 0 0 0 40px;
  margin-bottom: 15px;
	font-size: 14px;
	font-weight: 600;
	position:relative;
}
.fv-list-item:before,
.fv-list-item:after {
	content:"";
	display:block;
	position:absolute;
}
.fv-list-item:before {
	width:30px;
	height:30px;
	background:#eb6fa2;
	left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fv-list-item:after {
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	width: 21px;
	height: 11px;
	transform:rotate(-45deg);
	left: 5px;
  top: 5px;
}
.fv-img-area { 
	position: relative;
}
.fv-img-square { position: relative; }
.fv-img-square span {
	display: inline-block;
	width: 94px;
	height: 94px;
	background: #f5d8e4;
	position: absolute;
	top: 40px;
  left: -30px;
	z-index: 2;
}
.fv-img-square span::before {
	content: "";
	width: 38px;
	height: 38px;
	background: #ffa6c9;
	position: absolute;
	top: -30px;
	left: -50px;
	z-index: 2;
}
.fv-img-box {
	width: 530px;
	height: auto;
}
.fv-img-box img {
	object-fit: cover;
	position: relative;
	z-index: 1;
}


@media screen and (max-width: 1399px) {
	.fv-ttl::before {
		left: 0;
		top: -50px;
		transform: rotate(-1deg);
		width: 400px;
		height: 110px;
	}
}

@media screen and (max-width: 1199px) {
	.fv-ttl {
		margin-bottom: 20px;
		font-size: 18px;
	}
	.fv-ttl::before {
		top: -30px;
		transform: rotate(0deg);
		width: 310px;
		height: 86px;
	}
	.fv-text { font-size: 34px; }
	.fv-list-item:before {
    width: 20px;
    height: 20px;
	}
	.fv-list-item:after {
    width: 14px;
    height: 9px;
    border-radius: 1px;
    left: 3px;
    top: 5px;
	}
	.fv-list-item {
    padding: 0 0 0 30px;
    margin-bottom: 5px;
    font-size: 13px;
	}
	.fv-img-box {
		width: 440px;
		height: auto;
	}
}

@media screen and (max-width: 899px) {
	.fv-img-box  {
		width: 320px;
		height: auto;
	}
	.fv-img-square span::before {
    width: 38px;
    height: 38px;
    top: -20px;
    left: -20px;
	}
}

@media screen and (max-width: 796px) {
	.fv-content { flex-direction: column; }
	.fv-text-wrap { width: 100%; }
}

@media screen and (max-width: 499px) {
	.fv-wrap {
    padding-top: 80px;
		background: url(../img/fv_bg_sp.webp) no-repeat center center / cover;
	}
	.fv-ttl::before { width: 210px; height: 60px; }
	.fv-ttl { font-size: 14px; }
	.fv-text { font-size: 30px; }
	.fv-text-sb { margin-bottom: 15px; }
	.fv-text-sb p { font-size: 12px; }
	.fv-list-item { font-size: 12px; }
	.fv-img-box { width: 100%; height: auto; }
	.fv-img-area {
    margin: 30px auto;
    position: relative;
	}
	.fv-img-area::before { width: 100%; height: 100%; }
	.fv-img-square span {
		width: 65px;
		height: 65px;
		top: 30px;
		left: 20px;
	}
}

/* =======================================================================================
	TOP 
======================================================================================= */

/* 共通 ------------------------------------
------------------------------------------- */
/* title */
.top-ttl-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px;
  position: relative;
}
.top-ttl-wrap::before,
.top-ttl-wrap::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #fbd7e0;
}

.top-ttl-box {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.top-ttl {
  font-size: 50px;
  margin: 0;
  color: transparent;
  background: linear-gradient(to right, #47372c, #81737a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Safari対応 */
}
.top-ttl-ja {
  margin: 0;
  font-size: 14px;
	font-weight: bold;
}
.top-ttl-wrap.left::before {
  content: none;
  flex: 1;
  height: 2px;
  background-color: #fbd7e0;
}
.top-ttl-wrap.left .top-ttl-ja {
  margin: 0;
  font-size: 14px;
	font-weight: bold;
	text-align:left;
}
/* link bottan */
.top-link-btn {
	margin: 40px 0 0 0;
	text-align: right;
	position: relative;
}
.top-link-btn a {
	display: inline-block;
	width: 350px;
	padding: 10px;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	text-align: left;
	background: #eb6fa2;
	position: relative;
	transition: .3s;
}
.top-link-btn a:hover {
	background: #d65077;
	transition: .3s;
}
.top-link-btn a::before {
	display: inline-block;
	content: "";
	width: 80px;
	height: 2px;
	background: #faecf2;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.top-link-btn a::after {
	content: "";
	width: 24px;
	height: 24px;
	background: #faecf2;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

/* コンテンツ 余白 */
.top-section { padding: 60px 0; }

@media screen and (max-width: 1199px) {
	.top-ttl {
    font-size: 40px;
		line-height: 1.5;
	}
	.top-ttl-ja { font-size: 13px; }
}

@media screen and (max-width: 796px) {
	.top-section { padding: 40px 0; }
  .top-ttl { font-size: 24px; }
	.top-ttl-wrap.left .top-ttl-ja { font-size: 12px; }
	.top-ttl-wrap { margin: 0px 0 30px; }
	.top-ttl-box { padding: 0 10px; }
	.top-link-btn a {
    width: 250px;
    font-size: 12px;
	}
	.top-link-btn a::after {
    content: "";
    width: 16px;
    height: 16px;
	}
	.top-link-btn a::before { width: 30px; }
}

/* TOP 業務案内 ------------------------------
--------------------------------------------- */
.top-section.diff { position: relative; }
.top-sarvise-bg {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: 570px;
	background: #faf3f6;
	position: absolute;
	bottom: 0;
	z-index: -1;
}
.top-read-text {
	margin-bottom: 30px;
	text-align: center;
}
.top-services-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 30px;
	background: #fff;
}
.top-services-item {
	width: calc(100% / 2 - 15px );
	padding: 30px;
	background: #fafafa;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
	position: relative;
}
.top-services-item::before {
	content: "01";
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	color: #f4d1df;
	font-family: 'Zen Maru Gothic', sans-serif;
	position: absolute;
	top: -14px;
	left: 0;
}
.top-services-item:nth-of-type(2):before {	content: "02"; }
.top-services-item:nth-of-type(3):before {	content: "03"; }
.top-services-item:nth-of-type(4):before {	content: "04"; }
.top-services-ttl-area p { font-size: 14px; }
.top-services-ttl-area {
	margin-bottom: 10px;
  padding-bottom: 20px;
	text-align: center;
	position: relative;
}
.top-services-ttl-area::before {
	content: "";
	display: block;
  width: 100%;
  height: 0;
  border-bottom: dashed 1px #c37aa1;
	position: absolute;
	bottom: 5px;
}
.top-services-ttl {
	margin-bottom: 10px;
	font-size: 18px;
	color: #d65077;
	font-family: 'Zen Maru Gothic', sans-serif;
}

/* TOP 日本事務所概要 / ミャンマー事務所概要 -----------
--------------------------------------------- */
.top-office-content {
	display: flex;
	align-items: end;
	gap: 30px;
	padding: 30px;
	background: #fafafa;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.top-office-img-area { position: relative; }
.top-office-img-area::after {
	content:"";
	display: inline-block;
	width: 400px;
	height: 250px;
	background: #f0b9cf;
	position: absolute;
	top:10px;
	right: -10px;
}
.top-office-img-area img {
	width: 400px;
	height: 250px;
	object-fit: cover;
	object-position: center center;
	position: relative;
	z-index: 1;
}

.top-office-text-area { width: calc(100% - 400px - 15px ) }
.top-office-ttl {
	margin-bottom: 15px;
	font-size: 18px;
	color: #d65077;
	font-family: 'Zen Maru Gothic', sans-serif;
	line-height: 1.5;
}
.top-office-text { margin: 20px 0 0; }
.top-office-ttl-en:first-of-type p { margin-bottom: 5px; }
.top-office-ttl-en p {
	font-size: 14px;
	line-height: 1.8;
}

/* TOP 代表者紹介 ----------------------------------
--------------------------------------------- */
.top-section.top-profile { background: #faf3f6; }
.top-profile-wrap {
	display: flex;
	gap: 20px;
	align-items: end;
	justify-content: space-between;
	padding: 30px;
	background: #fafafa;
	box-shadow: 1px 1px 10px rgba(86, 86, 86, 0.1);
}
.top-profile-text-area { width: calc(100% - 400px - 15px ); }
.top-profile-text-ttl {
	margin-bottom: 15px;
	font-size: 18px;
	color: #d65077;
	font-family: 'Zen Maru Gothic', sans-serif;
}
.top-profile-img-box img {
	width: 400px;
	height: 250px;
	object-fit: cover;
	object-position: center bottom;
	position: relative;z-index: 2;
}
.top-profile-img-box {position: relative;z-index: 2;}
.top-profile-img-box::after {
	content:"";
	display: inline-block;
	width: 400px;
	height: 250px;
	background: #f0b9cf;
	position: absolute;
	top:10px;
	right: -10px;
}

@media screen and (max-width: 1039px) {
	.top-services-ttl {
    margin-bottom: 5px;
    font-size: 16px;
	}
	.top-services-ttl-area p { font-size: 12px; }
	.top-office-ttl {
    margin-bottom: 10px;
    font-size: 16px;
	}
	.top-office-ttl-en p {
    font-size: 12px;
    line-height: 1.8;
	}
	.top-profile-text-ttl {
    margin-bottom: 10px;
    font-size: 16px;
	}
	.top-office-img-area img { width: 350px; height: 250px; }
	.top-office-img-area::after { width: 350px; height: 250px; }
	.top-office-text-area { width: calc(100% - 350px - 15px); }
	.top-profile-img-box img { width: 350px; height: 250px; }
	.top-profile-img-box::after { width: 350px; height: 250px; }
	.top-profile-text-area { width: calc(100% - 350px - 10px); }
}

@media screen and (max-width: 979px) {
	.top-read-text {
    margin-bottom: 15px;
    text-align: left;
	}
	.top-services-item { width: 100%; }
}

@media screen and (max-width: 929px) {
	.top-office-content { flex-direction: column; }
	.top-office-text-area { width: 100%; }
	.top-office-img-area {
		position: relative;
		margin: 0 auto 20px;
	}
	.top-profile-wrap { flex-direction: column; }
	.top-profile-text-area { width: 100%; }
	.top-profile-img-box { margin: 0 auto;
	}
}

@media screen and (max-width: 796px) {
	.top-sarvise-bg { height: 70%; }
	.top-services-list { padding: 15px; }
	.top-services-item::before { font-size: 38px; }
	.top-services-item { padding: 30px 15px 15px 15px; }
	.top-services-ttl-area p { font-size: 10px; }
	.top-office-content { padding: 20px; }
	.top-office-img-area img { width: 100%; height: 200px; }
	.top-office-img-area::after { width: 100%; height: 200px; }
	.top-profile-img-box img { width: 100%; height: 200px; }
	.top-profile-img-box::after { width: 100%; height: 200px; }
	.top-office-ttl-en p { font-size: 10px; }
	.top-office-img-area { margin: 0 auto 10px; }
	.top-profile-wrap { padding: 20px; }
}

@media screen and (max-width: 449px) { .top-office-img-area { width: 100%; } }

/* お問い合わせ ----------------------------------
--------------------------------------------- */
.cmn-contact { background: url(../img/fv_bg.webp) no-repeat center center / cover ; }
.cmn-contact-ttl {
	margin-bottom: 15px;
	font-size: 18px;
	color: #d65077;
	font-family: 'Zen Maru Gothic', sans-serif;
}
.cmn-contact-ttl-en {
	margin-bottom: 20px;
	font-size: 14px;
}
.cmn-contact-btn {
	display: block;
	width: 100%;
	padding: 25px 10px;
	text-align: center;
	background: linear-gradient(to right, #eb6fa2, #d65077);
	color: #fff;
	font-weight: bold;
	font-size: 20px;
}
.cmn-contact-btn img {
	width: 35px;
	height: 35px;
	margin-right: 20px;
	vertical-align: bottom;
}

@media screen and (max-width: 796px) {
.cmn-contact-ttl {
    margin-bottom: 10px;
    font-size: 16px;
	}
	.cmn-contact-ttl-en p { font-size: 12px; }
	.cmn-contact-btn img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
	}
	.cmn-contact-btn {
    padding: 15px 10px;
    font-size: 16px;
	}
}

/* =======================================================================================
	footer
======================================================================================= */
.footer-wrap {
	padding: 60px 0;
	background: #fafafa;
}
.footer-ad-list {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}
.footer-ad-item {
	flex: 1;
	padding: 30px;
	background: #faf3f6;
}
.footer-ad-item h2 { margin-bottom: 15px; }
.footer-ad-item p { font-size: 14px; }
.footer-nav {
	display: flex;
	gap: 30px;
	justify-content: center;
}
.footer-nav a { font-size: 12px; transition: .3s;}
.footer-nav a:hover { color: #ba5151;}
.copy {
	padding: 10px 0 20px;
	text-align: center;
	font-size: 12px;
	color: #d65077;
}

@media screen and (max-width: 1199px) {
	.footer-ad-list {
		flex-direction: column;
		gap: 20px;
	}
	.footer-ad-item p { font-size: 12px; }
	.footer-ad-item { padding: 15px; }
}

@media screen and (max-width: 796px) {
	.footer-nav {
		flex-direction: column;
		gap: 10px;
	}
	.footer-wrap { padding: 40px 0; }
	.copy { padding: 5px 0 5px; }
}


/* =======================================================================================
	下層
======================================================================================= */

/* 共通 -----------------------------------
------------------------------------------- */
/* 下層FV */
.under-fv {
	padding: 150px 0 80px;
	background: url(../img/fv_bg.webp) no-repeat center center / cover ;
}
.under-fv-area { font-family: 'Zen Maru Gothic', sans-serif; }
.under-fv-ttl {
	margin-bottom: 10px;
	font-size: 48px;
	color: #eb6fa2;
	position: relative;
	z-index: 1;
}
.under-fv-ttl::before,
.under-fv-ttl::after {
	content: "";
	width: 50px;
	height: 50px;
	background: rgba(245, 216, 228, .6);
	position: absolute;
	top: -15px;
	left: 0;
	z-index: -1;
}
.under-fv-ttl::after {
	content: "";
	width: 30px;
	height: 30px;
	background: rgba(255, 166, 201, .5);
	position: absolute;
	top: -30px;
  left: 35px;
}
.under-fv-en {
	font-size: 26px;
	color: #eba4c1;
}
.under-section { padding: 60px 0; }

@media screen and (max-width: 1199px) {
	.under-fv { padding: 110px 0 50px; }
	.under-fv-ttl {
			margin-bottom: 0px;
			font-size: 24px;
		}
	.under-fv-ttl::before,
	.under-fv-ttl::after { width: 40px; height: 40px; }
	.under-fv-ttl::after {
    width: 25px;
    height: 25px;
    top: -30px;
    left: 30px;
	}
}
@media screen and (max-width: 796px) { .under-section { padding: 40px 0; } }

/* 業務案内 --------------------------------
------------------------------------------- */
.service { margin-bottom: 60px; }
.read {
	text-align: center;
	margin-bottom: 20px;
}
.service-list {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.service-item {
	background: #fafafa;
	position: relative;
}
.service-item::before {
	content: "01";
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 160px;
	font-weight: bold;
	line-height: 1;
	color: #f8eff3;
	position: absolute;
    top: -37px;
    left: -7px;
}
.service-item:nth-of-type(2):before { content: "02"; }
.service-item:nth-of-type(3):before { content: "03"; }
.service-item:nth-of-type(4):before { content: "04"; }
.service-item-content { padding: 80px 30px 40px; }

.service-item-ttl-wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.service-item-ttl-area { margin-bottom: 20px; }
.service-item-ttl {
	font-size: 24px;
	color: #d65077;
	font-family: 'Zen Maru Gothic', sans-serif;
	position: relative;
}
.service-item-ttl-en {
	margin-bottom: 20px;
	color: #eba4c1;
}
.service-item-img img {
	width: 250px;
	height: 250px;
	object-fit: cover;
}
.service-detail {
	margin-bottom: 20px;
	position: relative;
}
.service-detail-range {
	display: inline-block;
	padding: 5px 10px;
	background: #d65077;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	position: absolute;
	left: 0;
	top: -20px;
}
.service-detail-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 50px 30px 30px 30px;
	background: #fff4f8;
}
.service-detail-item {
	width: calc(100% / 2 - 10px);
	padding: 30px;
	background: #ffffff;
}
.service-detail-ttl {
	height: 55px;
	margin-bottom: 15px;
	padding-left: 36px;
	font-size: 18px;
	font-weight: bold;
	font-family: 'Zen Maru Gothic', sans-serif;
	position: relative;
	z-index: 2;
}
.service-detail-ttl::before {
	content: "";
	width: 23px;
  height: 23px;
	background: rgba(245, 216, 228, .6);
	position: absolute;
	top: 4px;
  left: 6px;
	z-index: 1;
}
.service-detail-ttl::after {
	content: "";
	width: 18px;
	height: 18px;
	background: rgba(255, 166, 201, .5);
	position: absolute;
	top: -4px;
	left: 0px;
	z-index: 1;
}
.service-detail-ttl-ex {
	display: block;
	font-size: 16px;
}
.service-forte-item {
	padding: 0 0 0 35px;
	margin-bottom: 10px;
	position:relative;
}
.service-forte-item:before,
.service-forte-item:after{
	content:"";
	display:block;
	position:absolute;
}
.service-forte-item:before{
	width:25px;
	height:25px;
	background:#eb6fa2;
	left:0;
	top: 1px;
}
.service-forte-item:after{
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	width: 17px;
	height: 10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 4px;
	top: 6px;
}

@media screen and (max-width: 1199px) {
	.service-item-ttl { font-size: 20px; }
	.service-detail-range { font-size: 14px; }
	.service-detail-ttl { font-size: 15px; }
	.service-detail-ttl::before { width: 20px; height: 20px; }
	.service-detail-ttl::after { width: 15px; height: 15px; }
	.service-detail-ttl-ex {
		margin-bottom: 0px;
    font-size: 13px;
	}
	.service-detail-list {
    gap: 10px;
    padding: 30px 20px 20px 20px;
	}
	.service-detail-item { width: calc(100% / 2 - 5px); }
	.service-forte-item:before { width: 20px; height: 20px; }
	.service-forte-item { padding: 0 0 0 25px; }
	.service-forte-item:after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 14px;
    height: 7px;
    left: 3px;
    top: 5px;
	}
}

@media screen and (max-width: 1059px) {
	.service-item-content { padding: 50px 30px 30px; }
	.service-list { gap: 20px; }
	.service-item::before {
    font-size: 100px;
		top: -20px;
	}
	.service-item-img img { width: 180px; height: 180px; }
	.service-detail-item { width: 100%; }
	.service-detail-ttl { height: auto; }
}

@media screen and (max-width: 879px) {
	.service-item-ttl-wrap { flex-direction: column; }
	.service-item-img { text-align: center; }
	.service-forte-item { line-height: 1.5; }
}

@media screen and (max-width: 599px) {
	.service-item-content { padding: 30px 15px 15px; }
	.service-item-ttl { font-size: 16px; }
	.read { text-align: left; }
	.service-item::before {
		font-size: 60px;
		top: -13px;
		left: 0;
  }
	.service-item-img { margin-bottom: 20px; }
	.service-item-img img { width: 160px; height: 160px; }
	.service-detail-list {
		gap: 10px;
		padding: 30px 10px 15px 10px;
	}
	.service-detail-item { padding: 15px; }
	.service-detail-ttl::after { width: 12px; height: 12px; }
	.service-detail-ttl::before {
		width: 16px;
		height: 16px;
		top: 1px;
		left: 5px;
  }
	.service-detail-ttl {
    padding-left: 28px;
		font-size: 14px;
	}
}

/* 日本.Myanmar事務所概要 -------------------
------------------------------------------- */
.jp-office.under-section { padding-bottom: 0;}
.office-ttl {
	padding-left: 36px;
	margin-bottom: 25px;
	font-size: 20px;
	font-weight: bold;
	color: #d65077;
	font-family: 'Zen Maru Gothic', sans-serif;
	position: relative;
	z-index: 1;
}
.office-ttl::before {
	content: "";
	width: 23px;
  height: 23px;
	background: rgba(245, 216, 228, .6);
	position: absolute;
	top: 4px;
  left: 6px;
	z-index: 1;
}
.office-ttl::after {
	content: "";
	width: 18px;
	height: 18px;
	background: rgba(255, 166, 201, .5);
	position: absolute;
	top: -4px;
	left: 0px;
	z-index: 1;
}
.office-ttl-en {
    margin-bottom: 20px;
    color: #eba4c1;
}

/* メッセージ */
.office-bg { background: linear-gradient(to bottom, transparent 50%, #f9eef2 50%); }
.office-message-wrap {
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding: 30px;
	background: #fafafa;
}
.office-message { width: calc(100% - 400px); }
.office-message-ttl {
	margin-bottom: 40px;
	font-size: 18px;
	font-family: 'Zen Maru Gothic', sans-serif;
}
.office-message p { margin-bottom: 20px; }
.office-message-img img { width: 300px; }

/* 強み */
.office-point-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.office-point-item {
	width: calc(100% / 3 - 14px);
	padding: 10px 0;
	background: #eb6fa2;
	text-align: center;
	font-weight: 600;
	color: #fff;
}

/* 事務所情報 */
.office-info {
	width: 100%;
	border-collapse:collapse;
	border-spacing:0;
}
.office-info th, .office-info td {
	padding: 20px 20px;
	border-bottom: 3px solid #fff;
}
.office-info th {
	width: 200px;
	background: #fff4f8;
	text-align: center;
	vertical-align: top;
}
.office-info td { background: #fafafa; }
.office-info td a {
	color: #d65077;
	text-decoration: underline;
}

/* ご冗談の流れ */
.office-flow-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  list-style: none;
  padding: 0;
  margin: 40px 0;
  counter-reset: step;
}
.office-flow-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
  width: calc( 100% / 5 );
	border: solid #fff 1px;
  position: relative;
  counter-increment: step;
}
.office-flow-item:first-of-type { background: #faf3f6; }
.office-flow-item:nth-of-type(2) { background: #f7e6ed; }
.office-flow-item:nth-of-type(3) { background: #f5dce6; }
.office-flow-item:nth-of-type(4) { background: #f3d2df; }
.office-flow-item:nth-of-type(5) {
	background: #ee85b0;
	color: #fff;
}
.office-flow-item-ttl {
	padding: 10px 0;
  border-bottom: solid #fff 3px;
  font-size: 16px;
  font-weight: bold;
	font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center;
  position: relative;
}
.font-small { font-size: 14px; }
.office-flow-item:last-of-type .office-flow-item-ttl .flow-num { color: #fff;}
.flow-num {
	margin-right: 6px;
	font-size: 18px;
	line-height: 1;
	color: #e996ae;
}
/* 1本目の逆くの字（右側） */
.office-flow-item-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 13px;
  height: 13px;
  border-right: 2px solid #d65077;
  border-top: 2px solid #d65077;
  transform: rotate(45deg) translateY(-50%);
	z-index: 1;
}
/* 2本目の逆くの字（やや左にずらして） */
.office-flow-item-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 13px;
  height: 13px;
  border-right: 2px solid #d65077;
  border-top: 2px solid #d65077;
  transform: rotate(45deg) translateY(-50%);
	z-index: 1;
}
.office-flow-item:last-of-type .office-flow-item-ttl::before,
.office-flow-item:last-of-type .office-flow-item-ttl::after { content: none; }
.office-flow-item-img {
	width: 40px;
	height: 40px;
	margin: 0 auto;
	object-fit: cover;
}
.office-flow-item p {
	padding: 0 20px 20px;
	font-size: 14px;
}
/* map */
.office-map { margin-top: 30px; }
.office-map iframe { width: 100%; height: 400px; }

@media screen and (max-width: 1199px) {
	.office-ttl { margin-bottom: 20px; }
	.office-message { width: calc(100% - 250px); }
	.office-message-img img { width: 250px; }
	.office-flow-item-ttl { font-size: 14px; }
	.office-flow-item p {
			padding: 0 10px 15px;
			font-size: 13px;
		}
}

@media screen and (max-width: 979px) {
	.office-message-wrap {
    flex-direction: column;
		gap: 20px;
		padding: 20px;
		align-items: center;
	}
  .office-message { width: 100%; }
	.office-message-ttl span {display: block;}
	.office-point-item { width: calc(100% / 2 - 14px); }
	.office-flow-list {
			flex-direction: column;
			gap: 5px;
			margin: 0;
	}
	.office-flow-item { width: 100%; }
	.office-flow-item-ttl::before { content: none; }
	.office-flow-item-ttl::after { content: none; }
	.office-flow-item { position: relative; }
	.office-flow-item::before,
	.office-flow-item::after  {
		content: "";
		border-right: 2px solid #d65077;
    border-top: 2px solid #d65077;
		width: 13px;
    height: 13px;
		position: absolute;
		left: 50%;
		bottom: 0;
		transform:translateX(-50%) rotate(135deg) ;
	}
	.office-flow-item::after  {
		bottom: -6px;
    z-index: 1;
	}
	.office-flow-item:last-of-type::after,
	.office-flow-item:last-of-type::before { content: none; }
	.flow-num {
		position: absolute;
		left: 10px;
	}
	.office-flow-item p { padding: 0 20px 20px; }
}

@media screen and (max-width: 599px) {
	.office-ttl {
    padding-left: 28px;
    font-size: 16px;
	}
	.office-ttl::before { width: 20px; height: 20px; }
	.office-ttl-en p { font-size: 10px; }
	.office-ttl-en:first-of-type p { margin-bottom: 10px; }
	.office-message-ttl {
    margin-bottom: 20px;
		font-size: 16px;
	}
	.office-point-list { gap: 10px; }
	.office-point-item { width: 100%; }
	.office-info th, .office-info td { padding: 20px 10px; }
	.office-info th { width: 100px; }
	.office-info td span { display: block; }
}

/* 代表者挨拶-----------------------------
------------------------------------------- */
/* メッセージ */
.intro { padding-top: 280px;}
.intro-wrap {
	padding: 30px;
	background: #fafafa;
	position: relative;
}
.intro-name {
	display: flex;
	position: relative;
	margin-bottom: 50px;
}
.intro-name-ttl {
	margin-bottom: 20px;
}
.intro-name-img {
	width: 580px;
	position: absolute;
	right: 0;
	top: -300px;
}
.intro-name-img::before {
	display: inline-block;
	content: "";
	width: 100px;
	height: 100px;
	background: rgba(255, 166, 201, .5);
	position: absolute;
	top: -10px;
	left: -145px;
	z-index: 2;
	z-index: 2;
}
.intro-name-img::after {
	display: inline-block;
	content: "";
	width: 170px;
	height: 170px;
	background: rgba(245, 216, 228, .6);
	position: absolute;
	top: 40px;
	left: -80px;
	z-index: 2;
}
.intro-name-ttl {
	font-size: 18px;
	font-family: 'Zen Maru Gothic', sans-serif;
}
.intro-name-ttl  span {
	font-size: 16px;
	margin-left: 10px;
}
.intro-name-detail,
.intro-detail-year {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 0;
}
.intro-name-detail dt { width: 85px; }
.intro-name-detail dd { width: calc(100% - 85px); }
.intro-detail-list {
	display: flex;
	gap: 40px;
}
.intro-detail-item { flex: 1; }
.intro-detail-ttl {
	display: flex;
  align-items: center;
  gap: 1em;
	margin-bottom: 20px;
  font-size: 16px;
	color: #d65077;
  font-weight: bold;
  position: relative;
}
.intro-detail-ttl::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #fbd7e0; 
}
.intro-detail-year  {
	margin-top: 10px;
	padding-left: 15px;
	position: relative;
}
.intro-detail-year::before {
	content: "";
	width: 3px;
	height: 100%;
	border-radius: 2px;
	background: #eb6fa2;
	position: absolute;
	left: 0;
}
.intro-detail-year dt { width: 70px; }
.intro-detail-year dd { width: calc(100% - 70px); }
.intro-detail-content-list li {
	padding-left: 25px;
	position: relative;
	margin-bottom: 5px;
}
.intro-detail-content-list li::before {
	content: "";
	background: url(../img/intro-heart.webp) no-repeat center center / cover;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
}

/* ご挨拶 */
.mess-wrap {
	display: flex;
	align-items: end;
	justify-content: space-between;
	padding: 30px;
	background: #fafafa;
	position: relative;
}
.mess-text-en {
	width: 350px;
	transform: rotate(-4deg);
	position: absolute;
	left: 0;
	top: -55px;
}
.mess-wrap-img img { width: 320px; }
.mess-text-ttl {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: bold;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #eb6fa2;
	position: relative;
	z-index: 1;
}
.mess-text p { margin-bottom: 20px; }

/* note */
.note-link a {
	display: flex;
	justify-content: space-between;
	width: 660px;
	margin: 0 auto;
	padding: 30px;
	background: #faf3f6;
}
.noto-link-img img {
	width: 200px;
	height: 47px;
}
.note-link-text { text-align: right; }
.note-link-text span { font-weight: bold; }
.note-link a:hover .note-link-text span {
	text-decoration: underline;
	color: #d65077;
}

@media screen and (max-width: 1199px) {
	.intro { padding-top: 200px; }
	.intro-name-ttl { font-size: 16px; }
	.intro-name-ttl span { font-size: 14px; }
	.intro-name-img {
    width: 410px;
		top: -200px;
	}
	.intro-name-img::after {
    width: 140px;
    height: 140px;
	}
	.intro-name-img::before {
    width: 80px;
    height: 80px;
    top: 5px;
    left: -120px;
	}
	.intro-detail-ttl { font-size: 15px; }
	.mess-text-ttl { font-size: 16px; }
	.mess-wrap-img img { width: 260px; }
}
@media screen and (max-width: 979px) {
	.intro { padding-top: 40px; }
	.intro-name {
		align-items: end;
		margin-bottom: 40px;
	}
	.intro-name-img {
		width: 400px;
		top: 0;
		position: relative;
	}
	.intro-name-img::after {
		width: 75px;
		height: 75px;
		left: -40px;
	}
	.intro-name-img::before {
		width: 45px;
		height: 45px;
		top: 15px;
		left: -70px;
	}
}

@media screen and (max-width: 796px) {
	.intro-wrap { padding: 20px; }
  .intro-name { flex-direction: column; }
	.intro-name-img { margin: 20px auto 0; }
	.intro-detail-list {
    flex-direction: column;
		gap: 30px;
	}
	.intro-detail-ttl { font-size: 14px; }
	.mess-wrap {
    flex-direction: column;
		padding: 20px;
	}
	.mess-wrap-img { margin: auto; }
	.note-link a { width: 100%; }
	.intro-detail-year dd { font-size: 12px; }
	.intro-detail-content-list li { font-size: 12px; }
}

@media screen and (max-width: 599px) {
	.intro { padding-top: 20px; }
	.intro-name-ttl { font-size: 15px; }
	.intro-name-ttl span {
		display: block;
		font-size: 13px;
		margin-left: 0;
  }
	.intro-name-img { width: 100%; }
	.intro-name-img::after,
	.intro-name-img::before { content: none; }
	.intro-detail-ttl { margin-bottom: 15px; }
	.mess-text-en { width: 220px; }
	.mess-text-ttl span { display: block;}
	.noto-link-img img { width: 140px; height: auto; }
  .note-link a {
		flex-direction: column;
		gap: 10px;
  }
}

/* =======================================================================================
	メールフォーム
======================================================================================= */
.content-text {
	margin-bottom: 20px;
	font-size: 18px;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #d65077;
}
.mailform {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 80px 60px;
	background: #f9eef2;
	border-radius: 10px;
}
.mailform dt {
	padding: 10px 20px 0;
	width: 100%;
}
.mailform dd {
	padding: 10px 20px;
	width: 100%;
}
.mailform dd input,
.mailform dd textarea {
	width: 100%;
	padding: 10px;
	background: #fff;
	font-size: 16px;
}
.mailform dd textarea  {
	width: 100% !important;
	height: 300px !important;
}
.mailform dd input.check { width: auto; margin-right: 10px;}
.must {
	padding: 0;
	margin: 0;
	color: #ba5151;
	border-radius: 5px;
	font-size: 20px;
}
.must.diff {
	background: #cccbcb;
	color: #333;
}
form#mailformpro label.mfp_checked {
	padding: 0;
	font-size: 16px;
}
form#mailformpro label { font-size: 16px; font-weight: bold; }
.confirm-text {font-weight: bold;}
.form-en { font-size: 13px; font-weight: normal;}
.submit_buttons {
	width: 50%;
	margin-top: 20px;
	padding: 15px 0;
	background: #d65077;
	border-radius: 50px;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
}
#mfp_button_send {
		width: 200px;
    padding: 5px 0;
    text-align: center;
    background: #d65077;
    color: #fff;
    border-radius: 50px;
}
#mfp_button_cancel {
	width: 200px;
	padding: 5px 0;
	text-align: center;
	background: #d3d3d3;
	border-radius: 50px;
}
div.mfp_buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.check-text { margin-top: 5px;text-align: center;}
.form-privacy {
  height: 200px;
	padding: 20px;
	margin-bottom: 10px;
  overflow-y: auto;
  background-color: #fff;
}
.form-privacy-read { margin-bottom: 20px; }
.form-privacy p { font-size: 14px; } 
.form-privacy-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
/* thanksページ */
div.mfp_thanks { background: #fff4f8; }
.thk-text {margin-bottom: 20px;}

/* 確認画面 */
div#mfp_overlay_inner h4 {
    text-align: center;
    color: #d65077;
}

@media screen and (max-width: 959px) {
	.mailform { padding: 50px 40px; }
	.content-text { font-size: 14px; }
	.form-privacy p { font-size: 12px; }
	.form-privacy-list { gap: 10px; }
	table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {display: block; }
	table#mfp_confirm_table tr th {
		white-space: normal;
		width: 100%;
		padding: 15px 10px 0;
	}
}

@media screen and (max-width: 839px) {
		.mailform { padding: 20px 20px; }
		.mailform dt { width: 100%; }
		.mailform dd { width: 100%; }
		form#mailformpro label {
			font-size: 13px;
			line-height: 1.6;
		}
		.mfp.confirm-text {
			font-size: 13px;
			line-height: 1.6;
		}
		form#mailformpro label.mfp_checked { font-size: 13px; }
		div.mfp_buttons { gap: 5px; }
		.form-en { display: block; font-size: 12px; }
}