@charset "utf-8";

:root {
  --main-color: #26b7bc;
  --sub-color: #fef4e8;
  --bg-beige: #fff5e7;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #3c3c3c;
}
.wrapper {
  margin: 0 auto;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 750px) {
  .mt24-sp {
    margin-top: 24px;
  }
}

/**************************
リセット
***************************/

html,
body,
h1,
h2,
p,
ul,
li {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #3c3c3c;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}

/**************************
フォント
***************************/

.font-mincho-pro {
  font-family: 'Hiragino Mincho Pro', 'Noto Serif JP', serif;
}
.font-garamond {
  font-family: 'Cormorant Garamond', serif;
}

/*******************************************************************************

メインページ

********************************************************************************/

/***************************
ヘッダー
***************************/

.header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  height: 60px;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 10000;
}
.logo {
  display: flex;
  margin-left: 6%;
}
.logo-title {
  font-size: 1px;
}
.logo .logo-title {
  width: 130px;
}
.logo img {
  vertical-align: middle;
}

/***************************
ナビゲーション
***************************/

.g-nav {
  height: 60px;
  width: 100%;
  margin-right: 6%;
}
.g-nav ul {
  display: flex;
  justify-content: flex-end;
}
.g-nav li {
  padding: 0 10px;
  line-height: 60px;
}
.g-nav li > a {
  font-size: 12px;
}
@media (max-width: 750px) {
  .g-nav li > a {
    font-size: 16px;
  }
}
.g-nav.clone-nav {
  position: fixed;
  top: -100px;
  left: 0;
  transition: all 1s;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.g-nav.clone-nav.is-fixed-nav {
  top: 0;
}

/***************
ハンバーガー
****************/

.hamburger-box {
  cursor: pointer;
  height: 40px;
  position: relative;
  width: 30px;
  display: none;
}
.hamburger-box span {
  background: var(--main-color);
  height: 1px;
  position: absolute;
  width: 100%;
  transition: transform 0.5s, opacity 0.5s;
  display: block;
}
.hamburger-box span:nth-of-type(1) {
  top: 10px;
}
.hamburger-box span:nth-of-type(2) {
  top: 50%;
}
.hamburger-box span:nth-of-type(3) {
  bottom: 10px;
}

.hamburger-box.show span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.hamburger-box.show span:nth-of-type(2) {
  opacity: 0;
}
.hamburger-box.show span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}

/**************************
キービジュアル
***************************/

.key-visual {
  position: relative;
  margin: 60px 0 70px;
  height: 100%;
}
.key-visual img {
  width: 100%;
}
.key-visual-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 21pt;
  font-size: 30px;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 0.2em;
  line-height: calc(67 / 30);
  text-align: center;
}
.sub-title {
  width: 60%;
  font-size: 20px;
  text-align: center;
  margin: 0 auto 104px;
  line-height: 1.74;
}
.lead-txt-01,
.lead-txt-02 {
  margin-bottom: 34px;
}

/**************************
ポイント部分
***************************/

.point {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* .point-inner {
  margin-inline: auto;
} */
.point-bg {
  background: var(--bg-beige);
  height: 100%;
  left: 0;
  margin: 0 auto 48px;
  padding: 36px 0;
  /* position: absolute; */
  right: 0;
  top: -36px;
  max-width: 818px;
  /* width: 70%; */
  z-index: -1;
}
.main-logo {
  font-size: 42px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.service .main-logo {
  justify-content: flex-end;
}
.main-logo::before {
  content: '';
  width: 39px;
  height: 41px;
  display: inline-block;
  background: url(../img/main_logo.png) no-repeat center center/contain;
  margin-right: 10px;
}

/*******
ボタン
*******/

.more,
.view-all {
  display: inline-block;
  position: relative;
}
.btn {
  position: relative;
  display: block;
}
.btn .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .btn:hover .active {
    opacity: 1;
  }
}

.backORcloseBtn a {
  width: 120px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: block;
  z-index: 0;
  color: #fff;
  transition: 0.4s;
  position: relative;
  border: 1px solid var(--main-color);
}
.backORcloseBtn a {
  display: inline-block;
  font-size: 10pt;
}
.backORcloseBtn a::before {
  content: '';
  background: linear-gradient(to right, #6faff4, #53b972);
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  transition: 0.4s;
}
.backORcloseBtn a:hover::before {
  opacity: 0;
}
.backORcloseBtn a:hover {
  color: var(--main-color);
  background: #fff;
}

/***************
ポリシー
***************/
.policy {
  margin: 0 auto 44px;
  /* overflow: hidden; */
  clear: both;
  display: flex;
  align-items: center;
}
.policy-img {
  margin: 0 36px 0 10%;
  margin: 0 36px 0 -132px;
  overflow: hidden;
  width: 500px;
}
.policy-img img {
  display: block;
  /* transition: 0.5s; */
}
/* .policy-img img:hover {
  transform: scale(1.06, 1.06);
} */
.policy-txt-outer {
  position: relative;
  /* padding-top: 60px; */
}
.policy-txt,
.service-txt {
  margin-bottom: 19px;
  font-size: 16px;
  line-height: 16pt;
  line-height: calc(26 / 16);
}

/****************
サービス
*****************/

.service {
  /* clear: both;
  overflow: hidden; */
  flex-direction: row-reverse;
  margin: 0 auto 84px;
  display: flex;
  align-items: center;
}
.service-img {
  margin: 0 10% 0 36px;
  margin: 0 -132px 0 36px;
  overflow: hidden;
  text-align: right;
  width: 500px;
}
.service-img img {
  display: block;
  /* transition: 0.5s; */
}
/* .service-img img:hover {
  transform: scale(1.06, 1.06);
} */
.service-txt-outer {
  position: relative;
  display: inline-block;
  text-align: right;
  /* padding-top: 60px; */
}
.consulting {
  clear: both;
  margin-bottom: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.consulting .img {
  float: left;
  margin-right: 30px;
}
.consulting .txt-outer {
  position: relative;
  width: 100%;
}
.consulting .txt {
  float: left;
}

/******************  
カウンセリング
*******************/

.counseling {
  clear: both;
  overflow: hidden;
  margin-bottom: 165px;
}
.counseling-pc {
  background: url(../img/counseling_bg.png) no-repeat center center/cover;
  width: 100%;
}
.counseling-txt {
  text-align: center;
}

/************************************** 
コラム 
***************************************/

.column {
  display: flex;
  justify-content: space-evenly;
  position: relative;
}
.column-img {
  width: 38%;
  height: 100%;
  margin-top: 110px;
}
.column-bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 60%;
  background: #ceeae7;
  z-index: -1;
}
.column-img img {
  width: 100%;
}
.column-box {
  margin-top: 60px;
  width: 40%;
  text-align: right;
}
.column-box h2 {
  text-align: center;
  font-size: 38pt;
  margin-bottom: 30px;
}
.column-txt {
  margin-bottom: 44px;
}

/********************************
CMS埋め込み部分
*********************************/

/* clearfix */
.clearfix:after {
  content: '.';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}

/* for macIE \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}

ul#newsList {
  margin: 0 0 15px;
  padding: 0;
  position: relative;
}
ul#newsList a {
  font-size: 12pt;
  margin: 0;
  padding: 15px 25px;
  background-color: #fff;
  line-height: 18pt;
  display: flex;
  position: relative;
}
ul#newsList a::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 1px solid #3c3c3c;
  border-right: 1px solid #3c3c3c;
  transform: rotate(45deg);
  right: 3%;
  bottom: 44%;
}
ul#newsList a:hover::before {
  animation: arrow 0.4s;
}

@keyframes arrow {
  50% {
    right: 15px;
  }
  100% {
    right: 25px;
  }
}

ul#newsList a:nth-child(odd) {
  background-color: #ceeae7;
}
ul#newsList a:nth-child(even) {
  background-color: #fff;
}
.column-article-ttl {
  align-items: center;
  display: flex;
  margin: 0 10px;
  text-align: left;
}
.post-id {
  font-size: 20px;
  margin-right: 20px;
}
.title {
  display: inline-block;
}
.comment {
  display: block;
  padding: 3px 0;
  float: left;
  overflow: hidden;
  width: 80%; /* 本文部分の幅。ここは特に設置ページ合わせて変更下さい */
  margin-top: 15px;
}
.thumbNailWrap {
  display: block;
  width: 110px;
  float: left;
  height: 110px;
  overflow: hidden;
  margin: 15px 15px 0 0;
}

/**************************
コンサルティング
***************************/

.consulting-performance {
  width: 70%;
  margin: 0 auto 210px;
}
.consulting-performance h2 {
  text-align: center;
  margin-bottom: 52px;
  font-size: 32px;
  line-height: 1;
  font-weight: normal;
}
.consulting-performance img {
  width: 100%;
}

/**************************
相談ボックス
***************************/

.consulting-box {
  background: var(--bg-beige);
  height: 100%;
  padding: 100px 0 110px;
  position: relative;
  text-align: center;
}
@media (max-width: 750px) {
  .consulting-box {
    padding: 35px 0 40px;
  }
}
.consulting-box h2 {
  font-weight: normal;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 44px;
}
.consulting-box-img {
  width: 80%;
  margin: 0 auto;
}

/**************************
コンタクト
***************************/

.contact-pc {
  background: url(../img/contact_bg.png) no-repeat center center/cover;
  width: 100%;
}
.contact-txt {
  text-align: center;
}

/**************************
インフォメーション
***************************/

.information {
  padding: 0 20px;
  display: flex;
  justify-content: space-evenly;
  height: 100%;
}
.info-box {
  /* width: 85%; */
  max-width: 955px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
  gap: 52px;
}
.company-info {
  /* width: 30%; */
  min-width: 290px;
}
.company-info h2 {
  margin-bottom: 44px;
  font-size: 42px;
  line-height: 1;
}
.company {
  margin-bottom: 30px;
}
.company-license {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1;
}
.company-name {
  font-size: 26px;
  line-height: 1;
}
.address {
  font-size: 18px;
  line-height: calc(24 / 18);
}
.ceo-info-box {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: flex-end;
}
.ceo-img {
  width: 210px;
  /* width: 40%;
  height: 100%; */
}
.ceo-img img {
  margin: 0 auto;
}
.ceo-info-txt {
  margin-left: 20px;
  width: 352px;
}
.bar {
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, var(--main-color), #44a383);
  margin: 32px 0;
}
.ceo {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
}
.license {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 42px;
}
.biography {
  font-size: 10px;
  line-height: calc(16 / 10);
}

/**************************
フッター
***************************/

footer {
  background: var(--main-color);
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #fff;
}
footer a {
  color: #fff;
}

.contact h2 {
  margin-bottom: 40px;
  font-size: 40pt;
}
.box1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.mail {
  margin-bottom: 10px;
}
.mail > span,
.tel > span {
  margin-right: 10px;
}
.line-box {
  border-left: 1px solid #ddd;
  margin: 0 0 0 30px;
  padding: 10px 0;
}
.line {
  margin-left: 30px;
}
.copyright {
  font-size: 12px;
}

/*******************************************************************************

policyページ

*******************************************************************************/

.common-inner {
  text-align: center;
  padding: 134px 0 74px;
}
.common-main-logo {
  margin-bottom: 10px;
  font-size: 38pt;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.common-main-logo::before {
  content: '';
  width: 39px;
  height: 41px;
  display: inline-block;
  background: url(../img/main_logo.png) no-repeat center center/contain;
  margin-right: 8px;
}
.common-sub-title {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 80px;
}
.common-inner h2 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 1;
}
.common-txt-box {
  font-size: 16px;
  line-height: 1.84;
}
.common-txt-margin {
  margin-bottom: 24px;
}
.common-bar {
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, var(--main-color), rgb(68, 163, 131));
  margin: 76px auto 70px;
}
.common-bar-service {
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, var(--main-color), rgb(68, 163, 131));
  margin: 124px auto;
}
@media (max-width: 750px) {
  .common-bar-service {
    margin: 98px auto;
  }
}
.policy-img-box {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  width: 100%;
}
.policy-img01,
.policy-img02,
.policy-img03 {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin: 0 33px 20px;
}
@media (any-hover: hover) {
  .policy-img01:hover .hover-mask,
  .policy-img02:hover .hover-mask,
  .policy-img03:hover .hover-mask {
    opacity: 1;
    /* transition: all 0.4s; */
    padding-top: 50%;
  }
}

.hover-mask {
  background: linear-gradient(to right, rgb(38, 181, 186, 0.4), rgb(68, 163, 131, 0.4));
  bottom: 0;
  color: #fff;
  font-size: 14px;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  width: 100%;
}
.profession-ttl {
  font-size: 16px;
}
.professional-name {
  font-size: 20px;
}

/********
モーダル
********/
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal-bg {
  background: linear-gradient(to right, rgb(38, 181, 186, 0.4), rgb(68, 163, 131, 0.4));
  height: 100vh;
  position: absolute;
  width: 100%;
  cursor: pointer;
}
.modal-inner {
  align-items: center;
  background: #fff;
  display: flex;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: auto;
}
.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 28px;
  color: #3c3c3c;
  cursor: pointer;
}
.modal-professional-box {
  margin: 0 auto;
  text-align: center;
  width: 80%;
}
@media (max-width: 750px) {
  .modal-professional-box {
    width: 100%;
  }
}
.modal-profession-ttl {
  font-size: 20px;
  margin-bottom: 38px;
}
@media (max-width: 750px) {
  .modal-profession-ttl {
    font-size: 18px;
  }
}
.modal-belongs {
  font-size: 18px;
  margin-bottom: 14px;
}
@media (max-width: 750px) {
  .modal-belongs {
    font-size: 16px;
  }
}
.modal-professional-name {
  font-size: 26px;
  margin-bottom: 42px;
}
@media (max-width: 750px) {
  .modal-professional-name {
    font-size: 24px;
  }
}
.modal-introduction {
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 750px) {
  .modal-introduction {
    font-size: 14px;
  }
}

/**********************************************************************************

Serviceページ

***********************************************************************************/

.service-index-box {
  font-size: 30px;
  /* line-height: calc(76/30); */
  margin-bottom: 220px;
}
.index-title {
  margin-bottom: 40px;
}
.index-link {
  transition: all 0.3s;
}
.index-link,
.g-nav-link,
.to-top > a,
.next-link > a,
.prev-link > a {
  position: relative;
  display: inline-block;
}
@media (any-hover: hover) {
  .index-link:hover {
    color: var(--main-color);
  }
}

.index-link::after,
.g-nav-link::after,
.to-top > a::after,
.next-link > a::after,
.prev-link > a::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.index-link::after,
.to-top > a::after,
.next-link > a::after,
.prev-link > a::after {
  bottom: 0;
}
@media (any-hover: hover) {
  .index-link:hover::after,
  .g-nav-link:hover::after,
  .to-top > a:hover::after,
  .next-link > a:hover::after,
  .prev-link > a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
#common-management .figure {
  max-width: 558px;
  margin-inline: auto;
}
#common-work-space .figure {
  max-width: 562px;
  margin-inline: auto;
}
#common-inheritance .figure {
  max-width: 632px;
  margin-inline: auto;
}

/********************
セカンドオピニオンサービス
*********************/

.marker-letter {
  margin: 52px 0 62px;
  font-size: 20px;
  line-height: 50pt;
  line-height: calc(50 / 20);
}
.marker {
  background: linear-gradient(rgba(255, 255, 255, 0) 60%, var(--main-color) 100%);
  background: -moz-linear-gradient(rgba(255, 255, 255, 0) 60%, var(--main-color) 100%);
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 60%, var(--main-color) 100%);
}

.link-box {
  width: 65%;
  margin: 0 auto;
  /* display: flex; */
}
.end {
  justify-content: flex-end;
}
.to-top {
  width: 100%;
}
.next-link,
.prev-link {
  position: relative;
  width: 43%;
}
.next-link::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  right: 0;
}
.prev-link::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--main-color);
  border-left: 2px solid var(--main-color);
  transform: rotate(-45deg);
  position: absolute;
  top: 6px;
  left: 0;
}

/**************
資産管理サービス
***************/

.figure {
  margin: 62px 0;
}

/******************************************************************************

newsページ

*******************************************************************************/

.news-inner {
  width: 80%;
  margin: 0 auto;
}
.catName {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 11px;
  line-height: 100%;
  margin: 0 2px;
}

/* Pager style（外部化可） */
.pager {
  text-align: right;
  padding: 10px;
  clear: both;
}

/*ページャーボタン*/
.pager a {
  border: 1px solid #999;
  border-radius: 5px 5px 5px 5px;
  color: #333;
  font-size: 12px;
  padding: 3px 7px 2px;
  text-decoration: none;
  margin: 0 1px;
}

/*現在のページのボタン*/
.pager a.current {
  background: #999;
  border: 1px solid #999;
  border-radius: 5px 5px 5px 5px;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px 2px;
  margin: 0 1px;
  text-decoration: none;
}

@media (any-hover: hover) {
  .pager a:hover {
    background: #999;
    color: #fff;
  }
}
.overPagerPattern {
  padding: 0 2px;
}

/*****************************************************************************

news-detailページ

********************************************************************************/

.detail-inner {
  width: 60%;
  margin: 0 auto;
  padding: 20px 0;
}
.detail-inner h2 {
  text-align: center;
  font-size: 30pt;
  margin-bottom: 20px;
}
#up_ymd {
  text-align: right;
  font-size: 13px;
  margin: 5px 10px;
}
.detailText {
  font-size: 12pt !important;
  line-height: 24px;
}
.detailUpfile {
  margin: 25px 0 35px;
  text-align: center;
  color: #3c3c3c !important;
}
.backORcloseBtn {
  text-align: center;
  line-height: 100%;
  margin-top: 15px;
}

.detailUpfile img {
  max-width: 100%;
  height: auto;
}
.pNav {
  font-size: 11px;
  margin-bottom: 15px;
}

/*******************************************************************************

タブレット max-width:959px

********************************************************************************/

@media (max-width: 959px) {
  .header {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    display: block;
    width: 100%;
    opacity: 1;
  }
  .logo {
    justify-content: space-between;
    margin-left: 0;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 10001;
  }
  .logo .logo-title {
    height: 40px;
    line-height: 40px;
    margin-left: 5%;
    width: 120px;
  }
  .hamburger-box {
    display: block;
    margin-right: 5%;
  }
  .g-nav {
    background: #fff;
    height: 100vh;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    padding: 100px 0;
    position: fixed;
    display: block;
    visibility: hidden;
    z-index: 10000;
  }
  .g-nav.show {
    visibility: visible;
    opacity: 1;
  }
  .g-nav ul {
    display: block;
  }
  .g-nav li {
    line-height: 60px;
  }

  .key-visual {
    height: 100%;
    margin: 0 0 70px;
  }
  .key-visual-txt {
    font-size: 24px;
    width: 100%;
  }
  .sub-title {
    font-size: 16px;
    width: 90%;
    line-height: 1.9;
    margin: 0 auto 112px;
  }
  .lead-txt-01,
  .lead-txt-02 {
    margin-bottom: 22px;
  }
  .point-bg {
    /* height: 100%; */
    margin: 0 0 37px 8%;
    margin: 0 auto;
    padding: 46px 0;
    max-width: none;
    /* width: 92%; */
  }
  .policy {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .policy-img {
    float: none;
    margin: 0 0 30px;
    width: 500px;
    min-width: 270px;
  }
  .policy-txt-outer {
    padding-top: 0;
    text-align: center;
  }
  .policy-txt-inner {
    margin: 0 0 56px 25%;
    margin: 0 0 56px 0;
  }
  .main-logo,
  .service .main-logo {
    /* font-size: 30pt;
    margin-bottom: 14px; */
    justify-content: center;
  }
  /* .main-logo::before {
    width: 36px;
    height: 36px;
  } */
  .service {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .service-txt-outer {
    display: block;
    padding-top: 0;
    text-align: center;
  }
  .service-txt-inner {
    /* float: none; */
    margin: 0 0 93px 25%;
    margin: 0 0 93px 0;
    margin: 0;
  }
  .service-img {
    float: none;
    margin: 0 0 30px 0;
    width: 500px;
    min-width: 270px;
  }
  .counseling {
    margin-bottom: 0;
  }
  .counseling-box {
    margin-bottom: 56px;
  }

  .column-box {
    margin: 0 auto 78px;
    width: 80%;
  }
  .column-box h2 {
    font-size: 30pt;
    margin-bottom: 39px;
  }
  .column-bg-box,
  .column-img {
    display: none;
  }

  .consulting-performance {
    margin: 0 auto 74px;
    width: 90%;
  }
  .consulting-performance h2,
  .consulting-box h2 {
    font-size: 24px;
    margin-bottom: 31px;
  }
  .consulting-box-img {
    width: 90%;
  }
  .contact-box {
    margin-bottom: 56px;
  }

  .information {
    padding: 0 20px;
    margin-bottom: 78px;
  }
  .info-box {
    display: block;
    margin: 0;
    width: 100%;
  }
  .company-info {
    margin: 0 auto 56px;
    text-align: center;
    width: 76%;
  }
  .company-info h2 {
    margin-bottom: 42px;
  }
  .company {
    margin-bottom: 32px;
  }
  .company-name {
    font-size: 24px;
  }
  .address {
    font-size: 16px;
  }
  .ceo-info-box {
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
    /* width: 75%; */
  }
  .ceo-img {
    margin: 0 20px 0 0;
  }
  .ceo-info-txt {
    margin: 0 auto;
  }
  .biography {
    line-height: 16pt;
  }

  /*******************************
    タブレット/policyページ
    *******************************/
  .modal-inner {
    width: 65%;
    padding: 30px;
  }

  /****************************
    タブレット・serviceページ
    *****************************/

  .link-box {
    width: 100%;
  }
  .next-link::after,
  .prev-link::after {
    right: 6%;
  }
  .prev-link::after {
    left: 6%;
  }

  /*****************************
    タブレット・newsページ
    *****************************/
  .comment {
    width: 70%;
  }

  /*****************************
    タブレット・news-detailページ
    *****************************/
  .detail-inner {
    width: 80%;
  }
}

/*******************************************************************************

スマホ max-width750px

********************************************************************************/

@media (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

  .wrapper {
    margin: 0 auto;
    max-width: 750px;
  }
  .logo .logo-title {
    width: 110px;
  }
  .key-visual {
    margin-bottom: 56px;
  }
  .key-visual-txt {
    font-size: 21px;
    line-height: calc(44 / 21);
    letter-spacing: 0.1em;
  }
  .sub-title {
    font-size: 14px;
    width: 85%;
    line-height: 1.9;
    margin-bottom: 54px;
  }
  .main-logo {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .main-logo::before {
    width: 26px;
    height: 28px;
    margin-right: 3px;
  }
  .policy-img,
  .service-img {
    width: 78%;
    max-width: 380px;
  }
  .policy-txt,
  .service-txt {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: calc(22 / 14);
  }
  .column-box h2 {
    font-size: 26pt;
  }
  .consulting-performance h2,
  .consulting-box h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .consulting-box-img-sp {
    margin: 0 auto;
    width: 90%;
  }
  .consulting-box-img-sp .bx-wrapper {
    margin-bottom: 0;
  }
  .info-box {
    max-width: 375px;
  }
  .company-info {
    width: 100%;
    margin-bottom: 24px;
  }
  .company-info h2 {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .company {
    margin-bottom: 20px;
  }
  .company-license {
    font-size: 11px;
  }
  .company-name {
    font-size: 16px;
  }
  .address {
    font-size: 11px;
    line-height: calc(16 / 11);
  }
  .ceo-info-box {
    display: block;
    text-align: center;
    width: 100%;
  }
  .ceo-img {
    margin: 0 auto 26px;
    width: 140px;
  }
  .ceo-info-txt {
    text-align: center;
    width: 100%;
  }
  .ceo {
    font-size: 16px;
    margin-bottom: 0;
  }
  .license {
    font-size: 11px;
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
  }
  .bar.sp {
    margin: 32px auto;
  }
  .biography {
    display: inline-block;
    text-align: left;
    font-size: 11px;
    line-height: calc(18 / 11);
  }
  .copyright {
    font-size: 10px;
  }
  /*******************************
    スマホ/policyページ
    *******************************/

  .common-main-logo {
    font-size: 30pt;
  }
  .common-main-logo::before {
    width: 30px;
    height: 30px;
  }
  .common-sub-title {
    font-size: 10pt;
    margin-bottom: 40px;
  }
  .common-inner h2 {
    font-size: 18px;
    margin: 0 auto 28px;
    width: 96%;
  }
  .common-txt-box {
    font-size: 12px;
    margin: 0 auto;
    width: 90%;
  }
  .policy-img-box {
    flex-wrap: wrap;
    max-width: 390px;
  }
  .policy-img-box::after {
    content: '';
    display: block;
    width: 40%;
  }
  .policy-img-box01,
  .policy-img-box02,
  .policy-img-box03 {
    margin-bottom: 50px;
    width: 40%;
  }
  .policy-img-box03 {
    margin-bottom: 0;
  }
  .policy-img01,
  .policy-img02,
  .policy-img03 {
    margin: 0 10px 10px;
  }
  .profession-ttl {
    font-size: 13px;
  }
  .professional-name {
    font-size: 16px;
  }

  /*********
    モーダル
    *********/

  .modal-inner {
    padding: 30px 20px;
    width: 76%;
  }
  .close-btn {
    font-size: 24px;
    height: 30px;
    line-height: 30px;
    width: 30px;
  }
  .professional-box {
    width: 96%;
  }

  /*******************************
    スマホ/serviceページ
    *******************************/

  .service-index-box {
    font-size: 18px;
    margin: 0 auto 90px;
    width: 96%;
    line-height: calc(42 / 18);
  }
  .index-title {
    margin-bottom: 0;
  }

  /*
    セカンドオピニオン
    */

  .marker-letter {
    margin: 52px auto 62px;
    font-size: 14px;
    /* line-height: 28pt; */
    line-height: 1.6;
    width: 90%;
  }
  .link-box {
    width: 96%;
    font-size: 9pt;
  }
  .next-link {
    padding-right: 10px;
  }
  .prev-link {
    padding-left: 10px;
  }
  .next-link::after,
  .prev-link::after {
    height: 8px;
    right: 2%;
    top: 4px;
    width: 8px;
  }
  .prev-link::after {
    left: 2%;
  }

  /*
    資産管理サービス
    */

  .figure {
    margin: 62px auto;
    width: 90%;
  }

  /***************
    スマホ/NEWSページ
    ****************/

  .news-inner {
    width: 100%;
  }
  ul#newsList a {
    padding: 12px 14px;
  }
  ul#newsList a::before {
    bottom: 50%;
    transform: translate(0, 50%) rotate(45deg);
  }
  .comment {
    width: 90%;
  }

  /*********************
    スマホ/NEWS-detailページ
    **********************/

  .detail-inner {
    width: 80%;
  }
  .detail-inner h2 {
    font-size: 20pt;
  }
  .backORcloseBtn a {
    width: 90px;
    height: 34px;
    line-height: 34px;
  }
}
