* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
body p {
  font-size: min(3.6vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #2C3E50;
  line-height: 2;
}
h1, h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #37638F;
}
body h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #37638F;
  font-size: min(4.6vw, 20px);
  line-height: 2;
}
body h4 {
  color: #37638F;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: min(4.4vw, 20px);
}

/*-----------------
 ヘッダー
------------------*/
header {
  height: 80px;
  padding: 1rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  height: 40px;
  width: auto;
}
.header-nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 6rem;
  transform: translateX(100%); 
  background-color: #fff;
  transition: ease .4s;
}
/* ハンバーガーメニュー */
.header-hamburger {
  width: 50px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
.hamburger span {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: #2C3E50;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 0.4rem 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.header-nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 7%;
  left: -40%;
  transform: translateY(620%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 0;
  left: -40%;
  transform: translateY(5%) rotate(-45deg);
}
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}
.nav-items-item a {
  color: #2C3E50;
  width: 100%;
  display: block;
}
.pc-nav-item a:hover, .nav-items-item a:hover {
  opacity: 0.6;
}
#js-nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
}
.subnav {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10;
}
.subnav:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    text-align: left;
}
.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}
/* header レスポンシブ */
@media screen and (min-width: 769px) {
  .pc-header-nav {
    width: 70%;
  }
  .pc-nav {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-between;
  }
  .pc-nav-item {
    margin: auto 1rem;
  }
  .pc-nav-item > a {
    color: #2C3E50;
    font-size: 16px;
  }
  .header-nav, .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc-nav {
    display: none;
  }
  #header {
    height: 60px;
    padding: 0 .5rem;
  }
  .dropdown-menu {
    opacity: 1;
    position: unset;
    visibility: unset;
    box-shadow: none;
  }
  .dropdown-menu li a {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .nav-items-item {
    width: 60%;
    margin: 0 auto;
    padding: 2rem 0.6rem 1rem;
    border-bottom: 1px solid #2C3E50;
  }
  .nav-items-item a {
    font-size: min(4.8vw, 18px);
  }
  .nav-items-item  {
    font-size: min(4.8vw, 18px);
  }
  .nav-items-item:last-child {
    border-bottom: none; 
    margin: 2rem auto;
  }
  .header-nav {
    padding: 4rem 1rem;
  }
}

/*-------------------------
ボタン
-------------------------*/
.btn {
  width: min(80%, 200px);
  padding: .6rem;
  text-align: center;
  background-color: #2C3E50;
  border-radius: 3px;
  color: #fff;
  transition: 
  background-color 0.3s ease, 
  transform 0.2s ease, 
  color 0.3s ease;
  font-size: min(3.8vw, 16px);
}
.btn > a {
  color: #fff;
}
.btn:hover {
  background-color: #fff;
  border: 2px solid #2C3E50;
  color: #2C3E50;
}
.btn:hover > a {
  color: #2C3E50;
  opacity: 1;
}
.white-btn {
  display: flex;
  align-items: center;    /* 文字を上下中央に */
  justify-content: center;
  position: relative;
  background-color: #fff;
  border: 1px solid #2C3E50;
  color: #2C3E50;
  font-weight: bold;
  padding-right: 20px;
  width: 100%;
  height: 65px;
  transition: 
  background-color 0.3s ease, 
  transform 0.2s ease, 
  color 0.3s ease;
}
.service-btn {
  position: relative;
  width: min(100%, 600px);
  height: 67px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.white-btn::before, .service-btn::before {
	position: absolute;
	right: 18px;
  bottom: 24px;
	width: 16px;
	height: 1px;
	background: #2C3E50;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.white-btn::after, .service-btn::after {
  position: absolute;
	margin: auto;
	content: "";
	vertical-align: middle;
  right: 18px;
  bottom: 27px;
	width: 8px;
	border-top: 1px solid #2C3E50;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  transition: 
  border-top 0.3s ease, 
  transform 0.2s ease;
}
.service-btn::before {
  background: #fff;
  bottom: 26px;
  height: 2px;
  transition: 
  background-color 0.3s ease, 
  transform 0.2s ease;
}
.service-btn::after {
  border-top: 2px solid #fff;
  right: 17px;
  bottom: 29px;
 }
.white-btn:hover {
  opacity: 0.6;
}
.service-btn:hover::before {
  background: #2C3E50;
}
.service-btn:hover::after {
  border-top: 2px solid #2C3E50;
}

/*-------------------------
共通
-------------------------*/
img {
  width: 100%;
  border-radius: 5px;
}
.gold-border {
  border: none;
  background-color: #DAB24D;
  width: 90%;
  max-width: 1280px;
  height: 2px;
  margin: 0 auto;
}
.bold {
  font-weight: bold;
}
.gold {
  color: #DAB24D;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
section {
  padding: min(7vw, 6rem) 0;
}
.section-title1 {
  font-size: min(6vw, 48px);
  margin-bottom: min(8vw, 4rem);
}
.section-title2box {
  text-align: center;
  margin: 3rem auto;
  padding-bottom: 3rem;
}
.section-title2 {
  font-size: min(6.2vw, 52px);
  position: relative;
  padding-bottom: 1rem;
  display: inline-block;
  margin-bottom: 3rem;
  text-align: center;
}
.section-title2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #37638F;
}
.section-title2box p {
  font-size: min(4vw, 24px);
}
.bg-gray {
  background-color: #F4F4F4;
}
.bg-blue {
  background-color: #F0F7FF;
}
.shadow-img {
  box-shadow: min(2vw, 2rem) min(2vw, 2rem) 0px 0px rgba(217, 217, 217, 0.5);
}
.reverse-shadow-img {
  box-shadow: min(-1.5vw, -1.5rem) min(2vw, 2rem) 0px 0px rgba(217, 217, 217, 0.5);
}
/*-------------------------
MV
-------------------------*/
#mv {
  max-width: 1280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  margin: 80px auto 3rem;
  gap: 1rem;
}
.mv-textbox, .mv-img {
  width: 45%;
}
.mv-textbox h1 {
  font-size: min(4vw, 48px);
}
.mv-textbox p {
  font-size: min(2vw, 24px);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #37638F;
  margin: 1rem 0;
}

/*-------------------------
About Us, Blog
-------------------------*/
#aboutus{
  width: 90%;
  max-width: 1280px;
  margin: 4rem auto;
  padding: 0 2rem 2rem;
}
.topics, .blog  {
  width: 60%;
  max-width: 1280px;
  margin: 4rem auto 0;
  border: 1px solid #37638F;
  border-radius: 5px
}
.topics-title {
  background-color: #37638F;
  color: #fff;
  font-size: min(4vw, 20px);
  border-radius: 5px 5px 0 0;
  padding: .6rem 2rem;
}
.topics-list li {
  margin-bottom: 1rem;
}
.topics-content {
  padding: 1.6rem 2rem .6rem;
  display: flex;
  flex-direction: column;
}
.topics-content-title {
  color: #37638F;
  margin: .6rem auto .6rem 1rem;
  font-size: min(3.6vw,  16px);
}
.topics-date {
  font-size: min(3.2vw, 14px);
}
.partner, .message {
  width: 90%;
  max-width: 1280px;
  padding: 0 2rem 4rem;
  margin: 0 auto;
}
.partner-box {
  background-color: #fff;
  padding: 4rem 0;
  flex-wrap: wrap;
}
.partner-box figure {
  width: 24%;
}
.aboutus-img {
  object-fit: cover;
  width: 400px;
  height: 400px;
}
.message-textbox {
  max-width: 910px;
  margin: 0 auto;
  background-color: #F0F7FF;
  padding: 4rem;
  box-shadow: 5px 7px 7px rgba(0, 0, 0, 0.25);
}
.ceo-name {
  text-align: right;
  margin: 4rem 0 0;
}
#blog {
  padding-bottom: 0 !important;
}
#blog .section-title2box {
  margin: 0 auto;
  padding-bottom: 0;
}
#blog-archive .section-title2box {
  margin: 2rem auto 0;
  padding-bottom: 0;
}
#blog-archive .section-title2 {
  margin-bottom: 0;
}
.blog-white-btn {
  width: 30%;
  margin: 2rem 1rem 1rem auto;
}
.blog  {
  border: none;
}
.blog-btn {
	margin: 2rem auto;
}
.blog-contentbox {
	flex-wrap: wrap;
	align-items: flex-start;
}
#blog-archive .blog-contentbox {
  justify-content: flex-start;
}
.category-content {
	width: 30%;
}
.category-img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pagination .nav-links .page-numbers.current {
  border: 2px solid #37638F;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.nav-links a {
  color: #37638F;
}
.news-title a {
  color: #37638F;
}
/*-------------------------
MMV
-------------------------*/
.mmv-content {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
}
.mmv-box {
  background-color: #F0F7FF;
  width: 60%;
  margin: 4rem auto;
}
.mmv-textbox {
  width: 70%;
  max-width: 500px;
  margin: 4rem 6rem 4rem auto;
  position: relative;
  z-index: 1;
}
.mmv-reverse.mmv-textbox {
  margin: 4rem auto 4rem 6rem;
}
.mmv-textbox h3 {
  margin-bottom: 1rem;
}
.mmv-num {
  font-size: min(5.8vw, 40px);
}
.mmv-bg-text {
  font-size: min(70vw, 330px);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  line-height: 1;
  position: absolute;
  bottom: -15%;
  right: -10%;
  z-index: -1;
  pointer-events: none;
}
.mmv-content figure {
    flex: 1;
    margin-left: -50px;
    z-index: 2;
}
.mmv-reverse {
  flex-direction: row-reverse;
}
.mmv-reverse figure {
  margin-left: auto;
  margin-right: 0;
  max-width: 400px;
}
.mmv-img {
  object-fit: cover;
  width: 500px;
  height: 400px;
}
.mmv-value-text {
  padding-left: 1rem;
  margin-bottom: .6rem;
}
@media screen and (max-width:1150px) {
  .mmv-reverse figure {
    margin-right: 20px;
}
}

/*-------------------------
Our Service
-------------------------*/
#our-service {
  padding-bottom: 0;
}
.service-contentbox {
  padding: 4rem 0;
}
.service-content {
  background-color: #fff;
  padding: 4rem;
  margin: 0 auto;
  width: 90%;
  max-width: 910px;
}
.service-content h4 {
  font-weight: bold;
  font-size: min(4.8vw, 36px);
  color: #37638F;
  text-align: center;
  margin-bottom: 3rem;
}
.service-img {
  object-fit: cover;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.service-grid {
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; 
}
.grid-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: auto;
}
.service-content-details {
  border: 1px solid #2C3E50;
  border-radius: 0 0 3px 3px;
  padding: 1rem;
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
}
.service-title {
  background-color: #37638F;
  color: #fff;
  font-size: min(3.8vw, 20px);
  font-weight: bold;
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  height: 70px;
}
.service-title2 {
  font-weight: bold;
  font-size: min(3.8vw, 20px);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.service-title-small {
  font-size: min(3.6vw, 16px);
}
.service-smalltext {
  font-size: 12px;
}
.service-content-details p {
  margin-bottom: 1rem;
}
.service-lineheight {
  line-height: 1.2;
}
.service-smalltext2 {
  font-size: min(2.8vw, 13px);
  letter-spacing: -1.5px;
}
.certificate {
  width: 70%;
  margin: 0 auto;
}
/*-------------------------
Compnay, Contact, Another
-------------------------*/
.company-content {
  max-width: 910px;
  margin: 0 auto;
}
.company-title {
  width: 20%;
  padding: 1rem 0;
}
.company-text {
  padding: 1rem 0 1rem 2rem;
  border-left: 1px solid #D9D9D9;
  width: 55%;
}
.Form {
  max-width: 660px;
  margin: 0 auto;
}
.form-content {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto;
}
.required {
  color: #fff;
  font-size: 9px;
  background-color: #FE3030;
  border-radius: 3px;
  padding: 1px 3px;
}
.wpcf7-form-control-wrap {
  width: 60%;
}
.wpcf7-text {
  width: 100%;
  height: 3rem;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  padding: .5rem 1rem;
  margin: 1rem;
}
.wpcf7-textarea {
  width: 100%;
  height: 10rem;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  padding: .5rem 1rem;
  margin: 1rem;
}
.privacy-box {
  display: block;
  text-align: center;
  text-decoration: underline;
  color: #2C3E50;
  cursor: pointer;
}
.privacy-box > span {
  border-bottom: 1px solid #2C3E50;
}
.privacy-box:hover {
  opacity: 0.6;
}
.privacy-form {
  justify-content: center;
  width: 83%;
}
.wpcf7-list-item-label {
  color: #2C3E50;
}
.wpcf7-list-item  {
  margin: 0;
}
.button-wrap {
  display: flex;
  justify-content: center;
}
.wpcf7-spinner {
	display: none;
}

/*-------------------------
プライバシーポリシー
-------------------------*/
/* モーダル自体のスタイル */
dialog {
  border: none;
  border-radius: 8px;
  padding: 20px;
  width: 90%;
  max-width: 910px;
}
/* 背景（暗幕）のスタイル */
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
/* 中身の微調整 */
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-content h2 {
  font-size: 20px;
}

/*-------------------------
footer
-------------------------*/
#footer a {
  color: #2C3E50;
}
#footer {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 1rem auto;
  padding: 2rem 0;
}
.footer-content {
  align-items: baseline;
}
.footer-logo {
  width: auto;
  height: 50px;
}
.footer-colmun {
  line-height: 1.7;
}
.footer-nav-title {
  font-size: 18px;
  padding-top: 6px;
}
.footer-nav {
  padding-left: 2rem;
  font-size: 12px;
  text-indent: -10px;
}
.footer-nav::before {
  content: "-";
  font-size: 18px;
  padding-right: 4px;
}
.footer-nav-small {
  font-size: 12px;
  padding-top: 6px;
}
.copyright {
  font-size: 9px;
  text-align: center;
  color: #2C3E50;
  margin-bottom: 1rem;
}
.footer-nav-title:hover, .footer-nav:hover, .footer-nav-small:hover {
  opacity: 0.6;
}
.nohover:hover {
  opacity: 1;
}
/*-------------------------
アニメーション
-------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(30px); /* 30px下に下げておく */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 出現後のスタイル（JSでこのクラスを付与する） */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mv-copy span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

/* JSで付与するクラス */
.mv-copy.is-active span {
  opacity: 1;
  transform: translateY(0);
}


/*-------------------------
canvaスライド
-------------------------*/
.canva-embed-wrapper {
  max-width: 1000px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #f9f9f9;
}
.canva-text {
  display: block;
  text-align: right;
  color: #2C3E50;
}
.canva-inner {
  max-width: 910px;
  margin: 6rem auto 0;
}

/*-------------------------
下層ページ
-------------------------*/
.inner {
  max-width: 1280px;
  margin: 3rem auto 6rem;
  padding: 0 1rem;
}
.width910 {
  max-width: 910px;
  margin: 0 auto;
}
.margin2 {
  margin-bottom: 2rem;
}
.margin1 {
  margin-bottom: 1rem;
}
.page-mv {
  background-image: url("../images/img4.jpg");
  height: 500px;
  margin-top: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
#creative-business .page-mv {
  background-image: url(../images/img11.png);
  background-size: 260%;
}
#social .page-mv {
  background-image: url(../images/img13.jpg);
}
.page-mv > h1 {
  color: #fff;
  font-size: min(7vw, 56px);
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.5;
}
.page-mv > h1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 25%;
  height: 2px;
  background-color: #fff;
}
.page-mv > h1 span {
  font-size: min(5.3vw, 32px);
  line-height: 1.7;
}
.page-read {
  font-size: min(5.1vw, 32px);
}
.page-subtitle {
  font-size: min(5vw, 28px);
  font-family: revert;
  padding: 2rem 0 0;
  white-space: nowrap;
}
.border {
  border-bottom: 2px solid #37638F;
}
.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
}
.page-flex {
  display: flex;
  gap: 3rem;
}
.page-textbox {
  margin-top: 2rem;
}
.page-number {
  font-size: min(17vw, 94px);
  opacity: 0.1;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.list-style {
  position: relative;
  padding-left: 1rem;
}
.list-style::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-size: min(3.6vw, 16px);
}
.list-style-big, .list-style-not, .list-style-check, .list-style-maru {
  position: relative;
  padding-left: 1.5rem;
  font-family: unset;
}
.list-style-big::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: min(3.6vw, 16px);
}
.list-style-maru::before {
  content: "◎";
  color: #9e1908;
  position: absolute;
  left: 0;
  top: 0;
  font-size: min(3.6vw, 16px);
}
.list-style-not::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 2px;
  background-color: #2C3E50;
  transform: translateY(-50%) rotate(45deg);
}
.list-style-not::after {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 2px;
  background-color: #2C3E50;
  transform: translateY(-50%) rotate(-45deg);
}
.list-style-check {
  padding-left: 40px;
}
.list-style-check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border: 1px solid #2C3E50;
  background-color: transparent;
  border-radius: 2px;
}
.list-style-check::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 1px;
  width: 8px;
  height: 18px;
  border-right: 2px solid #2C3E50;
  border-bottom: 2px solid #2C3E50;
  transform: rotate(45deg);
}
.backoffice-img {
  object-fit: cover;
  width: 280px;
  height: 280px;
}
.backoffice-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.backoffice-content {
  text-align: left;
}
.backoffice-content .border {
  border: 1px solid #2C3E50;
  border-radius: 3px;
  padding: .3rem 1rem;
  margin-bottom: .6rem;
} 
.service-title {
  text-align: center;
}
.arrow-down {
  width: 16px;
  height: 16px;
  border-right: 2px solid #37638F;
  border-bottom: 2px solid #37638F;
  transform: rotate(-45deg);
  margin: auto;
}
#dx-support .arrow-down {
  transform: rotate(45deg);
  margin: 1rem 2rem 2rem;
}
.page-footer {
  margin-top: 3rem;
}
.pdf {
  width: 35%;
  height: auto;
}
.pdf a {
  color: #2C3E50;
  display: block;
  text-align: center;
}
.smilerflex {
  justify-content: flex-start;
  align-items: start;
}
.phase {
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.phase span {
  font-size: 16px;
}
.smalltext {
  line-height: 1.2;
}
.font12 {
  font-size: min(3vw, 12px);
  line-height: 1.4;
}
#it .service-content-details {
  width: 50%;
  justify-content: start;
  border: none;
}
#it .service-content-details > p {
  line-height: 1.5;
  padding: 0 1rem;
}
.it-flex {
  justify-content: center;
}
#it .price-table {
  min-width: 400px;
  margin: 1rem auto;
}
.it-section {
  margin-bottom: 2rem;
}
.it-tablebox {
  margin-bottom: 2rem;
}
.phase-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 30%;
}
.flow-box2 {
  align-items: first baseline;
}
.link {
  color: #37638F;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: min(4vw, 16px);
  margin-top: 1rem;
  display: block;
}
.link:hover {
  opacity: 0.6;
}
.social-text {
	width: 55%;
}
/*-------------------------
table
-------------------------*/
.price-table {
  border-collapse: collapse;
  font-size: min(3.6vw, 16px);
  line-height: 1.6;
  color: #2C3E50;
  margin: 2rem auto;
}
.price-table th, 
.price-table td {
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  background-color: #eee;
  /*border: 1px solid #fff;*/
  border-bottom: 1px solid #fff; 
}
.price-table th {
  color: #fff;
}
.price-table thead th {
  background-color: #37638F;
  text-align: left;
  font-weight: bold;
  padding: 20px;
}
.price-table tbody td:first-child {
  background-color: #D9D9D9;
}
.note {
  font-size: 12px;
  margin-top: 4px;
}
#it .price-table thead th {
  background-color: #D0E2F4;
  color: #2C3E50;
}
#it .price-table tbody td:first-child {
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .price-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/*-------------------------
レスポンシブ
-------------------------*/
@media screen and (min-width: 769px) {
  .sp-br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc-br {
	display: none;
  }
  figure {
    text-align: center;
  }
  .partner-box figure {
    width: 100%;
  }
  .pc {
    display: none;
  }
  #mv {
    flex-direction: column-reverse;
    padding: 0;
  }
  .mv-textbox, .mv-img {
    width: 90%;
  }
  .mv-textbox h1 {
    font-size: 6vw;
  }
  .mv-textbox p {
    font-size: 4vw;
  }
  .section-title2 {
	margin-bottom: 2rem;
  }
  .section-title2box {
    padding-bottom: 0;
	margin: 1rem auto 0;
  }
  .section-title2box p {
    padding: 0 1rem 2rem;
    white-space: nowrap;
  }
  .flex, .mmv-content {
    flex-direction: column;
  }
  .partner, .message {
	padding: 2rem 0 4rem;
  }
  .partner-img {
    width: 70%;
  }
  .ceo-name {
	margin-top: 2rem;
  }
  .mmv-box, .mmv-textbox  {
    width: 100%;
  }
  .mmv-box {
    padding: min(10vw, 4rem) 2rem 7rem;
  }
  .mmv-box-first  {
    margin-top: 0;
  }
  .mmv-textbox, .mmv-reverse.mmv-textbox {
    margin: 0 auto;
  }
  .mmv-content figure {
    margin: -8rem auto 0;
    max-width: none;
  }
  .mmv-img {
    width: 80%;
    height: auto;
  }
  .reverse-shadow-img {
  box-shadow: min(2vw, 2rem) min(2vw, 2rem) 0px 0px rgba(217, 217, 217, 0.5);
  }
  .service-grid, .backoffice-grid {
    grid-template-columns: 1fr; /* 1列にする */
    gap: 1.5rem; /* スマホでは隙間を少し狭くすると綺麗です */
    padding: 0; /* 左右に少し余白を作る */
  }
  .grid-content {
    width: 100%; /* 幅をいっぱいにする */
  }
  .company-content {
    width: 70%;
    margin: 0 auto;
  }
  .company-content > .flex {
    gap: 0;
  }
  .company-title {
    padding: 1rem 0 0;
    width: 100%;
  }
  .company-text {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 0 0 1rem;
  }
  .form-content {
    flex-direction: column;
    margin: 1rem;
  }
  .wpcf7-form-control-wrap {
    width: 90%;
  }
  .privacy-form  {
    width: 100%;
  }
  .footer-logo {
    height: 40px;
  }
  #footer {
    width: 70%;
  }
  .canva-inner {
    margin: 3rem auto 0;
  }
  .page-mv {
    height: 300px;
  }
  .arrow-down {
    transform: rotate(45deg);
  }
  .page-content {
    padding: 3rem 1rem 4rem;
  }
  .page-subtitle {
    padding: 0;
    line-height: 1.5;
  }
  .page-flex {
    align-items: end;
    justify-content: center;
    gap: 1rem;
  }
  .list-style-check::before {
    left: 10px;
    top: 5px;
    width: 15px;
    height: 16px;
  }
  .list-style-check::after {
    left: 19px;
    top: 1px;
    width: 5px;
    height: 15px;
  }
  .pdf {
    width: 100%;
  }
  .it-flex, .sp-block {
    display: block;
  }
  #it .service-content-details {
    width: 100%;
  }
  #it .price-table {
    min-width: auto;
  }
  #it .service-title2 {
    margin: 2rem auto 0;
  }
  .it-section {
    margin-bottom: 1rem;
  }
  .phase-content {
    width: 100%;
  }
  footer .flex {
    gap: 0;
  }
  .topics {
	width: 100%;
	margin-top: 2rem;
  }
  .topics-content {
	padding: .6rem 1rem;
  }
  .blog {
 	margin-top: 0; 
  }
  .blog {
    width: 80%;
  }
  .blog-white-btn {
	width: 100%;
  }
  .category-content {
    width: 100%;
  }
	.social-text {
		width: 100%;
	}
}
@media screen and (max-width: 500px) {
  .sp-br {
    display: block;
  }
  p {
    line-height: 1.7;
  }
  #aboutus, #partner, #message {
    padding: 0;
  }
  .aboutus-img {
    width: 100%;
  }
  .message-textbox {
    padding: 2rem 1rem;
  }
  .service-content {
    padding: 1rem;
  }
  .white-btn::before {
    right: 14px;
  }
  .white-btn::after {
    right: 13px;
  }
  .aboutus-img, .service-img {
    width: 200px;
    height: 200px;
  }
  .btn-grid {
    grid-template-columns: 1fr;
  }
  .service-content h4 {
    margin-bottom: 1rem;
  }
  .service-title {
    height: 50px;
  }
  .company-content {
    width: 90%;
  }
  #footer {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }
  #footer > figure {
    text-align: justify;
  }
  .page-mv {
    height: 200px;
  }
}

