@charset "utf-8";
/*--------------------

	ＴＯＰページ
	
--------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  line-height: 1.8em;
  color: #232323;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background: #ffffff;
  letter-spacing: 0em;
}
#WRAPPER {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}
.f_14px {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6em;
}
.f_15px {
  font-size: 15px;
}
.f_17px {
  font-size: 17px;
}
.f_23px {
  font-size: 23px;
  line-height: 1.4em;
  letter-spacing: 0.1em;
}
.f_56px {
  font-size: 56px;
  line-height: 1em;
  letter-spacing: 0.08em;
}
.bold {
  font-weight: 700;
}
.sm-bold {
  font-weight: 600;
}
.pc_br {
  display: block;
}
.sp_br {
  display: none;
}
.mon{
  font-family: "Montserrat", sans-serif;
}
/*======
 ヘッダー
==========*/

.site-header {
  width: 100%;
  background-color: #fff;
  padding: 16px 20px 16px 68px;
  box-sizing: border-box;
  border-bottom: 1px solid #E3E5E3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
/*
.site-header-top {
  width: 100%;
  margin-bottom: 15px;
}
*/
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.site-header-meta {
  font-size: 11px;
  font-weight: 500;
  color: #014F84;
  letter-spacing: 0;
}

.site-header-logo-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
}

.site-header-logo {
  font-size: 32px;
  font-weight: 500;
  color: #014F84;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.site-header-sublogo {
  font-size: 14px;
  font-weight: 500;
  color: #014F84;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.site-header-nav {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  align-self: flex-start;
  padding-top: 9px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.site-header-nav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  align-items: center;
}

.main-nav {
  line-height: 1;
  letter-spacing: 0.1em;
}

.secondary-nav {
  margin-bottom: 0;
  gap: 8px;
}

.site-header-nav-list li a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5em;
  display: inline-block;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

.site-header-nav-list li a:hover {
  opacity: 1;
  color: #0299FF;
}

.secondary-nav li a {
  color: #0299FF;
  border: 1px solid #DFDDD2;
  border-radius: 50px;
  padding: 4px 16px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  height: 28px;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
/*20251208田形追加*/
.secondary-nav li a:hover{
  border: 1px solid #0299FF;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}

.drop-menu .drop-menu-list {
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.drop-menu:hover .drop-menu-list {
  visibility: visible; /* 下層メニューを表示 */
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.drop-menu-list {
  left: -12px;
  position: absolute;
  top: 100%;
  visibility: hidden; 
  z-index: 1;
  width: 240px;
  flex-wrap: wrap;
  flex-direction: column;
  border-radius: 10px;
  padding: 12px 10px 0 10px
  /*box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);*/
}

.drop-menu-list .drop-menu-item {
  width: 100% !important;
  height: inherit !important;
  line-height: 60px;
  -webkit-transition: 0s !important;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s !important;
  position: relative;
  background-color: #0299FF;
  border-bottom: 1px solid #64BAED;
}

.drop-menu-list .drop-menu-item:hover {
  background-color: #058CD6;
}

.drop-menu-list .drop-menu-item:first-child {
  border-radius: 8px 8px 0 0;
}

.drop-menu-list .drop-menu-item:last-child {
  border-radius: 0 0 8px 8px;
  border-bottom: 0;
}

.drop-menu-list .drop-menu-item:first-of-type {
  position: relative;
}

.drop-menu-list .drop-menu-item:first-of-type ::before {
  position: absolute;
  top: -12px;
  left: 30px;
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #0299FF;
  -webkit-transition: 0s !important;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s !important;
}

.drop-menu-list .drop-menu-item a {
  color: #fff;
  height: inherit !important;
  -webkit-transition: 0s !important;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s !important;
  position: relative;
  font-size: 14px;
  padding: 16px 0 17px 19px;
  display: flex;
}

.drop-menu-list .drop-menu-item a:hover{
  color: #fff;
  -webkit-transition: 0s !important;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s !important;
}

.drop-menu-list .drop-menu-item a:after {
  content: "";
  position: absolute;
  right: 10px;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon/button_yazirushi.svg);
  background-size: 6px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0s !important;
  -moz-transition: 0s;
  -o-transition: 0s;
  transition: 0s !important;
}

.btn-contact {
  background-color: #E57547;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #fff;
  letter-spacing: normal;
  transition: 0.3s;/*20251208田形追加*/
}

/*20251208田形追加*/
.btn-contact:hover{
  opacity: 1;
  background-color: #41B2FF;
}

.btn-contact:link, .btn-contact:visited {
  color: #fff;
}

.btn-contact .icon-envelope {
  background-image: url('../images/header/mail.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0;
}

.hamburger-menu {
  display: none;
}

p#pagetop {
  position: fixed;
  right: 40px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  z-index: 998;
  line-height: 1em;
}
p#pagetop a {
  display: block;
  border-radius: 30px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
  background: #014F84;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1em;
  bottom: 30px;
}
p#pagetop a:before {
  content: "";
  position: absolute;
  font-size: 24px;
  height: 1em;
  line-height: 1em;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  margin: auto;
  background-image: url(../images/icon/button_yazirushi.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(270deg);
}

/*======
 メインビジュアル
==========*/

.fV{
  width: 100%;
  height: 100vh;
  max-height: 650px;
  border-radius: 0 0 100px 100px;
  /*background-image: url(../images/top/FV.webp);*/
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
}

div.FV{
  width: 100%;
  position: relative;
  z-index: 0;
}

div.FV::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, rgb(2 54 113 / 40%), /* 一番下（青・透過） */ rgba(0, 120, 255, 0) /* 上に向かって透明 */);
  pointer-events: none;
  border-radius: 0 0 100px 100px;
  z-index: 1;
}

.fV .slick-slide > div {
  height: 650px;
}

.slide.sp_br {
  display: none!important;
}

.slide.pc_br {
  display: block!important;
}

.fV li.item {
  height: 100%;
}

.fV .slick-slide img{
  border-radius:  0 0 100px 100px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1600px){
  .fV{
    /*max-height: 700px;*/
  }
}

.fV-inner {
  width: 100%;
  height: 100%;
  /*max-width: 1200px;*/
  margin: 0 auto;
  /*padding: 0 40px;*/
  position: absolute;
  z-index: 5;
}

.fV-text {
  position: absolute;
  left: 68px;
  bottom: 18%;
  color: #fff;
  z-index: 5;
}

.fV-lead {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.6em;
  margin-bottom: 20px;
  text-shadow: 0px 0px 8px #002238e3;
}

.fV-sub {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  text-shadow: 0px 0px 8px #002238e3;
}

.fV > .fV-news {
  position: absolute;
  right: 20px;
  bottom: 9%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.fV-news a:hover {
  opacity: 1;
}

/* PC用：.fV 直後にある SP 向け複製ブロックは非表示 */
.fV + .fV-news {
  display: none;
}

.fV-news a .fV-news-main{
  transition: 0.3s;
}

.fV-news a:hover .fV-news-main{
  opacity: 0.8;
}

.fV-news-item {
  background: #fff;
  border-radius: 10px;
  padding: 14px 24px 14px 32px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 400px;
  max-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
  transition: 0.3s;/*20251208田形追加*/
}

/*20251208田形追加*/
.fV-news-item:hover{
  padding: 14px 16px 14px 32px;
}
/*20251208田形追加*/
.fV-news-item:hover .fV-news-meta,.fV-news-item:hover .fV-news-title{
  opacity: 0.6;
}

.fV-news-meta {
  display: flex;
  margin-bottom: 3px;
}

.fV-news-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 4px 16px 5px;
  border-radius: 20px;
  background-color: #0299FF;
  letter-spacing: 0.05em   ;
  margin-right: 8px;
}

.fV-news-date {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
  padding: 4px 0 0 0;
}

.fV-news-title p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}

.fV-news-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fV-news-arrow-icon {
  width: 6px;
  height: 12px;
}


.scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.scroll-down-text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.scroll-down::after {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background-color: #fff;
  transform-origin: top;
  animation: scrollDown 1.5s ease-in-out infinite;
}

.concept {
  max-width: 1366px;
  background-color: #fff;
  padding: 100px 0 45px;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
}

.concept-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 68px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  column-gap: 84px;
  text-align: left;
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 69px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section-label .concept-line {
  display: inline-block;
  width: 60px; 
  height: 2px; 
  background: url('../images/h-line.svg') no-repeat center;
  background-size: contain;
  margin-left: 14px;
  vertical-align: middle;
}

.concept-copy {
  font-size: 34px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.054em;
  line-height: 1.647em;
}

.accent-blue {
  color: #0299FF;
  letter-spacing: 0.054em;
  line-height: 1.647em;
}

.concept-right {
  flex: 1;
  padding-top: 5px;
}

.concept-text {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  margin-bottom: 25px;
}

.concept-text:last-child {
  margin-bottom: 0;
}

.concept-footer-text {
  font-size: 77px;
  color: #0299FF;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 71px auto 0;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:300;
  font-style: normal;
  text-align: left;
  white-space: nowrap;
}

@media screen and (min-width: 1400px) {
  .concept-footer-text {
    /*margin-left: 0px;*/
    text-align: center;
  }
}
@media screen and (max-width: 1300px){
  .concept-footer-text{
    font-size: 70px;
  }
}
/* ========================================
   共通セクションスタイル
======================================== */
.section-heading-en-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -27px;
}

.section-heading-en {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top:10px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.section-heading-line { height: 80px; display: flex; align-items: center; }
.vertical-line { transform: rotate(90deg); width: 130px; height: 5px; }
.section-heading-line-r {
  display: flex;
  align-items: center;
}
.section-heading-line-r .vertical-line {
  transform: rotate(90deg);
  width: 50px;
  height: 2px;
}

.section-heading-line-2{ width: 40px; height: 5px; margin-top: 10px; }

.section-heading-vertical {display: flex; align-items: flex-start;}
.section-heading-ja { font-size: 34px; font-weight: 500; color: #333; writing-mode: vertical-rl; text-orientation: mixed; line-height: 1.5; margin: 10px 7px 0 0;}
.section-heading-ja .pill { display: inline-block; background: #fff; color: #333; padding: 30px 3px; border-radius: 5px; /*box-shadow: 0 2px 8px rgba(0,0,0,0.08);*/ text-align: center; text-align-last: center; line-height: 1.17; font-size: 34px; letter-spacing:0.2em; font-weight: 500;}
.section-heading-ja .pill:first-child { margin-left: 5px; }
.section-heading-ja .num { writing-mode: horizontal-tb; text-orientation: mixed; display: inline-block; margin-top: -10px; margin-bottom: -5px; letter-spacing: -1px; font-weight: 500; }
.section-heading-sub {
  font-size: 18px;
  color: #333;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 70px;
  margin-right: 10px;
  line-height: 1.6;
}


.section-heading-vertical-r .section-heading-vertical-r-wrapper {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-right: -25px;
}

.section-heading-vertical-r .section-heading-ja {
  order: 2;
}

.section-heading-vertical-r .section-heading-sub {
  order: 1;
}

.section-heading-vertical-r .section-heading-sub {
  order: 1;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  line-height: 1.6;
}

.section-heading-vertical-r .section-heading-ja {
  order: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 34px;
  font-weight: 700;
  margin: 25px 10px 0 0;
}

.section-heading-vertical-r .section-heading-en-wrap {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-heading-vertical-r .section-heading-en {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-top: 0;
}
.section-heading-vertical-r .section-heading-line {
  height: 40px;
  display: flex;
  align-items: center;
}

.section-heading-vertical-r .vertical-line {
  transform: rotate(90deg);
  width: 50px;
  height: 2px;
  margin-top: 10px;
}

.section-heading-vertical-r .section-heading-sub {
  grid-column: 1;
  grid-row: 1 / span 3;
  font-size: 18px;
  color: #333;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 70px;
  margin-right: 10px;
  line-height: 1.6;
}

.news .section-heading-vertical,
.faq .section-heading-vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 38px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.news .section-heading-en-wrap,
.faq .section-heading-en-wrap {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: -6px;
}

.news .section-heading-en,
.faq .section-heading-en {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  margin-top: 0;
  letter-spacing: 0.2em;
}

.news .section-heading-line,
.faq  .section-heading-line {
  margin-top: 4px; 
}

.news .vertical-line,
.faq  .vertical-line {
  transform: none;
  width: 40px;
  height: 2px;
  margin-left: 8px;
}

.news .section-heading-ja,
.faq  .section-heading-ja {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 34px;
  margin-left: 20px;
  margin-top: 0px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #333;
}

/* ========================================
   Reasonセクション
======================================== */



.reason {
  background-color: #f0f8ff;
  padding: 0 0 120px 0;
  border-radius: 80px;
  position: relative;
  z-index: 1;
}

/* SP版を非表示 */
.reason-sp {
  display: none;
}

.reason-top-image {
  position: relative;
  top: -390px;
  margin-top: 450px;
  margin-bottom: -350px;
}

.reason-top-image img {
  width: 100%;
  max-width: none;
  display: block;
  height: auto;
}

.reason-inner {
  margin: 0 auto;
  position: relative;
  background: transparent;
  padding: 0 58px;
  top: 25px;
}

.reason-heading-section{
  margin-top: -52px;
}

.reason-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 1235px;
  margin: 0 auto;
}


.reason-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 16px;
  margin-bottom: 64px;
  position: relative;
  left: -10px;
}

.reason-item:nth-child(1) { grid-column: 1 / span 2; }
.reason-item:nth-child(2) { grid-column: 3 / span 2; }
.reason-item:nth-child(3) { grid-column: 5 / span 2; }
.reason-item:nth-child(4) { grid-column: 2 / span 2; }
.reason-item:nth-child(5) { grid-column: 4 / span 2; }

/* 4・5番目だけ少し左に寄せる */
.reason-item:nth-child(4),
.reason-item:nth-child(5) {
  margin-left: -10px;
}

.reason-item {
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 337px;
  min-height: 295px;
  padding-top: 35px;
  box-sizing: border-box;
}

.reason-text { text-align: center; }

.reason-num { 
  writing-mode: horizontal-tb; 
  transform: none; 
  text-align: center; 
  font-size: 32px;
  color: #0299FF;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;
}

.reason-icon {
  margin-bottom: 15px;
  margin-top: 10px;
}

.reason-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.reason-text {
  font-size: 22px;
  font-weight: 700;
  color: #0299FF;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  margin-top: -4px;
}

.space{
  letter-spacing: 0.15em;
}

.space{
  letter-spacing: 0.1em;
}

.reason-btn-wrap {
  text-align: center;
}

/* スライダー要素はPC表示では非表示 */
.reason-slider-next {
  display: none;
}

.reason-slider-dots {
  display: none;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  background-color: #0299FF;
  padding: 12px 48px 12px 31px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 284px;
  position: relative;
  box-sizing: border-box;
  margin-left: -10px;
}

.btn-text {
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.news-btn-wrap .btn-text {
  margin-left: 0;
}

.btn-arrow {
  display: flex;
  align-items: center;
  flex-direction: row;
  white-space: nowrap;
  gap: 0;
  width: 40px;
  flex-shrink: 0;
  overflow: hidden;
  justify-content: flex-start;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-dash {
  display: inline-block;
  width: 12px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #fff 0px,
    #fff 3px,
    transparent 3px,
    transparent 6px
  );
  flex-shrink: 0;
}

.arrow-line {
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
  flex-shrink: 0;
  position: relative;
  margin-left: 0;
}

.arrow-head {
  display: inline-block;
  width: 8px;
  height: 8px;
  transition: transform 0.3s ease;
  margin-left: -4px;
  filter: brightness(0) invert(1);
}

.btn-more:hover .arrow-line {
  width: 25px;
}

.btn-form:hover .arrow-line {
  width: 25px;
}

.service {
  background-color: #F0F0F0;
  padding: 160px 0 88px;
  margin: -74px auto 0;
}

.service-inner {
  margin: 0 auto;
  position: relative;
  width: 1230px;
}

.service-content {
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.service-items {
  flex: 1;
}

.service-heading-lead { display: none; }

.staggered-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.staggered-5 > *:nth-child(1) { grid-column: 1 / span 2; }
.staggered-5 > *:nth-child(2) { grid-column: 3 / span 2; }
.staggered-5 > *:nth-child(3) { grid-column: 5 / span 2; }
.staggered-5 > *:nth-child(4) { grid-column: 2 / span 2; }
.staggered-5 > *:nth-child(5) { grid-column: 4 / span 2; }


.service-item {
  background-color: #fff;
  background-image: url('../images/top/dot_bk.jpg');
  background-repeat: repeat;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0px 9px rgba(0,0,0,0.03);/*20251208田形修正*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  max-width: 331px;
  height: 353px;
  margin: 12px;
}

.service-item > img {
  width: 100%;
  height: 189px;
  object-fit: cover;
  display: block;
  border-radius: 0px 12px 0 0;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.05em;
  padding: 20px 10px 0;
}

.service-item .btn-more {
  background-color: #0299FF;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 44px 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 284px;
  align-self: center;
  margin: 20px 20px auto;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-item .btn-more:hover {
  background-color: #0056b3;
}

.service-heading-lead {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 12px 0 0;
}

.service-heading-lead {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 12px 0 0;
}

.service-heading-lead {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 12px 0 0;
}

.office-pc {
  background-image: linear-gradient(0deg, #ffffff, #ffffff 45%, #f0f8ff 50% 100%);
  padding: 100px 0 0 ;
}

.office-sp {
  display: none;
}


.office-pc .office-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
}

.office-pc .section-heading-vertical {
  position: absolute;
  left: calc(37px + 3%);
  top: -23px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}

.office-pc .office-image {
  width: 100%;
  margin-left: auto;
  position: relative;
  padding-left: 0;
  border-radius: 0 12px 0 0;
  overflow: hidden;
}

.office-pc .office-image img {
  width: calc(90% - 100px);
  margin-left: calc(118px + 10%);
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.office-pc .office-image picture {
  display: block;
}

.office-pc .circle-link-area {
  --circle-size: 120px;
}

.circle-link-area {
  padding: 64px 100px 60px 0;
  text-align: center;
  background-color: #fff;
  position: relative;
  margin-top: -50px;
  margin-left: -40px;
  margin-right: 68px;
  padding-left: 40px;
  z-index: 1;
  border-radius: 12px 12px 0 0;
}

.office-pc .circle-link-list {
  margin: 0 0 40px 240px;
  grid-template-columns: repeat(4, 268px);
  justify-content: center;
  gap: 20px 0;
}

.circle-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  justify-items: center;
}

.circle-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-link-item::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 20px auto 0;
  border-bottom: 1px solid #E0DFD4;
}

.circle-link-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 243px;
}

.circle-thumb {
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.circle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}


.circle-label-en {
  font-size: 13px;
  font-weight: 500;
  color: #0299FF;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;
}

.circle-label-ja {
  font-size: 21px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  width: fit-content;
  max-width: 200px;
  white-space: nowrap;
  margin-left: -26px;
}

.circle-label-ja::before {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0299FF;
  transition: transform 0.3s ease;
}

.circle-link-item:hover .circle-label-ja::before {
  transform: translateY(-50%) scale(1.2);
}

.circle-link-item:hover .circle-label-ja::after {
  transform: translateY(-50%) scale(1.2);
}

.circle-label-ja::after {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../images/icon/button_yazirushi.svg');
  background-size: 6px;
  background-repeat: no-repeat;
  background-position: center;
}

.circle-link-btn .btn-more {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #0299FF;
  border-radius: 30px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  top: 20px;
  left: 110px;
}

.news {
  background-color: #fff;
  padding: 100px 40px 110px;
}

.news-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 123px;
  position: relative;
}



.news-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.news-filter-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0;
}

.news-filter-list {
  list-style: none;
}

.news-filter-list li {
  margin-bottom: 20px;
}

.news-filter-list a {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.05em;
}

.news-filter-list a:hover{
  color: #0299FF;
  opacity: 1;
}

.news-filter-list a.active {
  color: #0299FF;
  font-weight: 700;
}

.news-btn-wrap {
  position: absolute;
  left: 5px;
  bottom: -10px;
  margin-top: 0;
}

.news-list {
  width: 690px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
  margin-left: -20px;
}

@media screen and (min-width: 1201px) {
  .news-list {
    min-height: 480px; 
  }
}

.news-item {
  border-bottom: 1px solid #E7E5DD;
  padding-bottom: 32px;
}

.news-item a:hover {
  opacity: 1;
}

.news-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  background-color: #0299FF;
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  margin-right: 8px;
  letter-spacing: 0.05em;
}

.news-date {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}

.news-title {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-top: 16px;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  transform: 0.3s;
}

.news-item a:hover .news-title {
  color: #0299FF;
}

.faq {
  background-color: #f0f8ff;
  padding: 100px 40px;
  border-radius: 80px 80px 0 0;
}

.faq-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.faq-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq-item {
  background-color: #fff;
  background-image: url('../images/top/dot_bk.jpg');
  background-repeat: repeat;
  border-radius: 60px;
  padding: 0;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 30px 30px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 25px;
  cursor: pointer;
}

.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q-icon-img {
  width: 29px;
  height: 29px;
}

.faq-question-text {
  flex: 1;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.faq-question:hover .faq-question-text{
  color: #0299FF;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0299FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  margin-left: auto;
}

.faq-toggle-icon-img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.faq-item.open .faq-toggle-icon-img {
  transform: rotate(270deg); 
}

.faq-answer {
  font-size: 18px;
  color: #333;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  padding: 0 30px 0px 30px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out, padding 0.6s ease-in-out;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 30px 20px 30px;
  transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out, padding 0.6s ease-in-out;
}

.faq-answer a{
  text-decoration: underline;
}

.faq-btn-wrap {
  text-align: center;
  margin-top: 64px;
  width: 100%;
  box-sizing: border-box;
}



/*======
  ページトップボタン
==========*/
.page-top-btn {
  position: absolute;
  left: 25px;
  bottom: 290px;
  width: auto;
  height: auto;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  text-decoration: none;
  z-index: 100;
  transition: all 0.3s ease;
}

.page-top-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.1em;
}

.page-top-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
  position: relative;
  width: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.arrow-head-top {
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
  filter: brightness(0);
  margin-bottom: 0;
  flex-shrink: 0;
}

.arrow-head-top-sp {
  display: none;
}

.arrow-line-vertical {
  display: block;
  width: 2px;
  height: 15px;
  background-color: #333;
  transition: height 0.3s ease;
  flex-shrink: 0;
  position: relative;
  margin-top: -4px;
  margin-bottom: 0;
}

.page-top-btn:hover .arrow-line-vertical {
  height: 25px;
}

.arrow-dash-vertical {
  display: block;
  width: 2px;
  height: 12px;
  background: repeating-linear-gradient(
    to bottom,
    #333 0px,
    #333 3px,
    transparent 3px,
    transparent 6px
  );
  flex-shrink: 0;
  margin-top: 0;
}

/*======
  フッター
==========*/
.footer-contact {
  background-color: #fff;
  padding-top: 80px;
  position: relative;
}

.footer-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 320px;
  bottom: 0;
  background-image: url('../images/footer/footer_pc.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.footer-panel {
  position: relative;
  z-index: 1;
  max-width: 1230px;
  margin: 110px auto 60px;
  background: #f2f2f2;
  border-radius: 80px;
  padding: 60px 0 40px;
}

.footer-contact-inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 108px 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-contact .section-heading-vertical {
  flex-shrink: 0;
  margin-top: -120px;
}

.contact-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 75px;
  position: relative;
}

.contact-tel {
  min-width: 280px;
  text-align: left;
}

.contact-tel-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.contact-tel-icon {
  width: 50px;
  flex-shrink: 0;
  margin-left: 4px;
  margin-top: 0;      
  position: relative;
  top: 0;   
}

.contact-label-ja {
  font-size: 18px;
  font-weight: 700;
  /*margin: -13px 0 0 6px; */
  letter-spacing: 0.05em;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-label-en {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  text-align: left;
  margin-top: 0;
  position: relative;
  top: -8px;   
  left: 0; 
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.contact-number {
  margin: 24px 0 16px;
  display: block;
  position: relative;
} 

.contact-hours {
  font-size: 17px;
  color: #333;
  text-align: left;
  letter-spacing: 0.05em;
  margin: 0;
  position: relative;
  top: -10px;
  font-weight: 500;
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  flex: 1;
  min-width: 444px;
  min-height: 285px;
  box-sizing: border-box;
  position: relative;
}

.contact-form-icon {
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-form-text {
  font-size: 20px;
  color: #333;
  line-height: 1.4em;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-form-label {
  font-size: 16px;
  color: #aaa;
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
}

.btn-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #E57547;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  text-decoration: none;
  max-width: 284px;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
}

a.btn-form:hover{
  opacity: 1;
  background-color: #0299FF;
}

.btn-form:link,
.btn-form:visited,
.btn-form {
  color: #fff;
}

.btn-form-text { 
  display: inline-block; 
  color: #fff; 
  font-size: 17px;
  font-weight: 700;
}

.btn-form-arrow {
  width: 10px;
  height: 10px;
}

.footer-bottom {
  background: transparent;
  padding: 60px 0 0;
  border-top: 1px solid #DADADA;
  position: relative;
  z-index: -1;
  top: -15px;
}

.footer-bottom-inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 966px;
}

.footer-left {
  flex: 0 0 220px;
  min-width: 200px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.footer-sublogo {
  font-size: 10px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.footer-address {
  color: #333;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer-address-full {
  color: #333;
  margin-bottom: 38px;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 500;
}

.map-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  top: 4px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: #333;
}

/*20251208田形追加*/
.map-link:hover{
  color: #0299FF;
  opacity: 1;
}

.map-icon {
  width: 18px;
  height: 18px;
}

.privacy-link {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #333;
  text-decoration: underline;
  font-weight: 500;
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  text-align: left;
  max-width: 706px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin-left: -10px;
  margin-top: -5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
  row-gap: 24px;
}

.footer-nav li:first-child {
  margin-left: -3px;
}

.footer-nav li:nth-child(3),
.footer-nav li:nth-child(4),
.footer-nav li:nth-child(6),
.footer-nav li:nth-child(7) {
  position: relative;
  left: -18px;
}

.footer-nav li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-nav li a::before {
  content: "・";
  font-size: 30px;    
  color: #c5c5c5;
  line-height: 1;       
  align-self: flex-start;  
  margin-top: -2px; 
  position: absolute;
  left: 0;     
}

.footer-nav li a:hover:before{
  color: #0299FF;
}

.footer-nav li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.footer-nav li:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.footer-nav li:nth-child(7) {
  grid-column: 4;
  grid-row: 2;
}

.footer-nav li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 17px;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
}

.footer-nav li a:hover{
  opacity: 1;
}

.footer-nav li a span {
  margin-top: 5px;
  font-size: 12px;
  color: #a1a1a1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  white-space: nowrap; 
}

.footer-nav li a:hover span{
  color: #0299FF;
}


.footer-cert-contact-wrap {
  display: flex;
  align-items: center;
}

.footer-cert-section {
  display: flex;
  flex-direction: column;
  min-width: 100px;
  position: relative;
  top: -8px;
  left: 1px;
  gap: 2px;
}

.footer-cert-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.footer-cert-logo img {
  display: block;
  height: 32px;
}

.footer-cert {
  font-size: 10px;
  color: #333;
  margin: 0;
}

.footer-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 530px;
  max-height: 38px;
  padding: 10px 73px;
  background-color: #dedede;
  border-radius: 999px;
  text-align: left;
  box-sizing: border-box;
  margin-left: 40px;
}

.footer-hours {
  margin: 0;
  font-size: 14px;
  color: #333;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer-telnote {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.footer-telnote span, .footer-hours span {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.footer-hours span.f_14px{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(51,51,51,0.6);
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
}

.footer-contact-info {
  display: none;
}

/* SP用プライバシーポリシーをPC版では非表示 */
.privacy-link-sp {
  display: none;
}

.sp-fixed-footer {
  display: none;
}

.nav-footer {
  display: none;
}

/* SP用ナビゲーションをPC版では非表示 */
.site-header-nav-sp {
  display: none;
}

.service-heading-lead {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 12px 0 0;
}

.section-heading-lead {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 12px 0 0;
}


/*--------------------

	サブページ
	
--------------------*/

/*-------- サブページ共通 --------*/
.gray_bg{
  background: rgba(232,232,232,0.4);
}
.blue_bg{
  background: rgba(2,153,255,0.2);
}
.skyblue_bg{
  background: #EFF8FF;
}
.pailgray_bg{
  background: #FAFAFA;
}
.dot-bg{
  background-image: url(../images/succession/dot-bg.svg);
  background-color: rgba(245, 245, 245, 0.1);
  border:1px solid rgba(112,112,112,0.1);
}
.txt-strong{
  background: linear-gradient(transparent 60%, rgba(65,178,255,0.4) 40%);
  display: inline;
}
.txt_center{
  text-align: center;
}

/*アコーディオンメニュー*/
.page-menu ul{
  display: flex;
}
.page-menu li{
  margin-right: 32px;
  height: 54px;
}
.page-menu li:last-of-type{
  margin-right: 0;
}
.page-menu li a{
  background: #0299FF;
  border-radius: 5px;
  padding: 14px 16px 13px;
  color: #fff;
  transition: 0.3s;
  font-size: 19px;
  letter-spacing: 0.05em;
}
.page-menu li a:hover{
  position: relative;
  top: 3px;
  transition: 0.3s;
}
.page-menu li a img{
  margin-left: 15px;
}

/*H2鉛筆タイトル*/
.sub_page h2{
  font-size: 38px;
  letter-spacing: 0.1em;
  padding: 0 17px 8px 15px;
  border-bottom: 2px solid #333333;
  position: relative;
  left: -25px;
  width: fit-content;
  margin: 0 auto;
}
.sub_page h2::after{
  content: '';
  background: url(../images/info/enpitsu.svg)no-repeat;
  width: 25px;
  height: 40px;
  background-size: contain;
  right: -25px;
  bottom: 0;
  position: absolute;
}

/*吹き出し線タイトル*/
.double-line-ttl{
  font-size: 24px;
  line-height: 35px;
  padding: 0 4px;
  position: relative;
  letter-spacing: 0em;
  width: fit-content;
  margin: 0 auto;
}
.double-line-ttl::after{
  position: absolute;
  background: url(../images/succession/double-line.svg)no-repeat;
  width: 16px;
  height: 26px;
  left: -16px;
  bottom: 0;
  content: '';
}
.double-line-ttl::before{
  position: absolute;
  background: url(../images/succession/double-line.svg)no-repeat;
  width: 16px;
  height: 26px;
  right: -16px;
  bottom: 0;
  content: '';
  transform: rotate(50deg);
}

/*青線タイトル*/
.under-line-ttl{
  font-size: 26px;
  padding-bottom: 5px;
  border-bottom: 6px solid #41B2FF;
  margin: 0 auto;
  width: fit-content;
}

/*チェックリスト*/
.check-list{
  padding-left: 40px;
  width: fit-content;
  margin: 0 auto;
}
.check-list li{
  position: relative;
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.check-list li:last-of-type{
  margin-bottom: 0;
}
.check-list li::before{
  content: '';
  position: absolute;
  left: -30px;
  top: 13px;
  width: 23px;
  height: 13px;
  background: url(../images/opening/check-icon.svg)no-repeat;
}

/*左に青線タイトル*/
.left-blue-ttl{
  font-size: 24px;
  letter-spacing: 0.05em;
  padding-left: 16px;
  position: relative;
  line-height: 1.4em;
}
.left-blue-ttl::after{
  position: absolute;
  content: '';
  background: #41B2FF;
  width: 6px;
  height: calc(100% - 5px);
  left: 0;
  top:4px;
}

/*-------- 経営支援 --------*/
.sub-top {
  width: 100%;
  height: 100vh;
  max-height: 400px;
  border-radius: 0;
  background-image: url(../images/service/service-title-bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 109px;
}

.title-block {
  width: fit-content;
  height: 80px;
  padding: 15px 60px 20px;
  text-align: center;
  position: absolute;
  top: 203px;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  border-radius: 6px;
}

.title-block > p {
  font-size: 14px;
  font-weight: 700;
  color: #0299FF;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-bottom: 8px;
}

.title-block > span {
  display: block;
  width: 40px;
  height: 4px;
  margin: 0 auto 11px auto;
  background-color: #F0F0F0;
}

.title-block > h1 {
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1em;
}

/*パンくずリスト*/
.sub-top .breadcrumbs {
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  border-radius: 100px 100px 0 0;
}

.sub-top .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 0 103px;
}
.sub-top .breadcrumbs ol li {
  display: flex;
  line-height: 1em;
}

.sub-top .breadcrumbs ol li::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  margin: 2px 20px 0 20px;
  background-image: url(../images/icon/angle_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sub-top .breadcrumbs ol li:last-child::after {
  display: none;
}

.sub-top .breadcrumbs ol li a {
  line-height: 1em;
}

.sub-top .breadcrumbs ol li a:hover {
  color: #0299FF;
}


section.service_cont1_wrap {
  display: flex;
  justify-content: flex-end;
}
.service_cont1_inner {
  width: calc(1160px + ((100% - 1160px) / 2));
}
.service_cont1_wrap .page-intro {
  display: flex;
  justify-content: space-between;
}
.service_cont1_wrap .page-intro .page-intro-text{
  width: calc(100% - 38px - 669px);
}
.service_cont1_wrap .page-intro h3 {
  font-size: 34px;
  line-height: 1.7em;
  margin-bottom: 50px;
}
.service_cont1_wrap .page-intro p{
  font-size: 18px;
  line-height: 1.9em;
  opacity: 0.8;
}
.service_cont2_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
.service_cont2_inner{
  width: 1160px;
  padding: 70px 20px;
  margin: 0 auto;
}
section.service_cont1_wrap .page-intro-img img {
  border-radius: 72px 0 0 72px;
}
/*1366px以上の対応*/
@media only screen and (min-width: 1367px) {
  section.service_cont1_wrap .page-intro-img img {
    border-radius: 72px;
  }
}
/*ページ内リンクボタン*/
.page-menu {
  margin: 0 0 75px 0;
  padding: 0;/*2025-1223:岡口*/
}
.page-menu ul {
  margin: 0 auto 75px auto;
  max-width: 1160px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
/*1200px以下の対応*/
@media only screen and (max-width: 1250px) and ( min-width: 375px) {
  .page-menu ul {
    flex-wrap: wrap;
    justify-content: start;
  }
  .page-menu ul li {
    margin: 0 32px 20px 0;
  }
  .page-menu ul li:last-child {
    margin: 0 0 20px 0;
  }
}

.manage-area {
  margin-bottom: 100px;
}
.manage-area .manage-title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 80px;
}
.manage-area .manage-content .content-wrap-1 {
  margin-bottom: 100px;
}
.manage-area .manage-content .content-wrap-2 {
  margin-bottom: 100px;
}
.manage-area .manage-content .content-wrap-3 {
  margin-bottom: 160px;
}
.manage-area .manage-content .content-wrap-4 {
  margin-bottom: 120px;
}
.manage-area .manage-content .content-title {
  background-color:rgba(65,178,255,0.35);
  padding: 45px 0 45px 104px;
  margin-bottom: 30px;
}
.manage-area .manage-content .content-title h3 {
  display: inline-block;
  background-color: #fff;
  padding: 6px 24px;
  border-radius: 4px;
  font-size: 34px;
  margin-bottom: 18px;
}
.manage-area .manage-content .content-title h3 br {
  display: none;
}
.manage-area .manage-content .content-title h3 span {
  font-size: 28px;
}
.manage-area .manage-content .content-title p {
  font-size: 22px;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.manage-area .manage-content .content-wrap-3 .content-title,
.manage-area .manage-content .content-wrap-4 .content-title  {
  margin-bottom: 60px;
}

/*経営力評価*/
.manage-area .manage-content .content-1 {
  max-width: 1366px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.content-1.flow-about {
  display: flex;
  margin-bottom: 50px;
}
.content-1.flow-about figure {
  position: relative;
  z-index: 1;
}
.content-1.flow-about figure img {
  border-radius: 0 72px 72px 0;
}
.content-1.flow-about figcaption {
  background: rgba(65,178,255,0.6);
  border-radius: 72px 0 0 72px;
  padding: 50px 38px;
  min-width: 577px;
  width: calc(100% - 770px);
  margin-top: 60px;
  margin-left: -52px;
  position: relative;
  z-index: 5;
}
.content-1.flow-about figcaption::after{
  display: none;
}
.content-1.flow-about figcaption .flow-list-ttl {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 780px;
  padding: 6px 0;
  margin: 0 auto 30px;
}
/*1366px以上の対応*/
@media only screen and (min-width: 1367px) {
  .content-1.flow-about figure img,
  .content-1.flow-about figcaption {
    border-radius: 72px;
  }
}
.content-1.flow-about .flow-list{
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.content-1.flow-about .flow-list li{
  background: #fff;
  border-radius: 10px;
  border: 2px solid #41B2FF;
  padding: 16px 20px 17px 24px;
  margin-bottom: 15px;
}
.content-1.flow-about .flow-list li{
  margin-bottom: 16px;
}
.content-1.flow-about .flow-list li:last-of-type{
  margin-bottom: 0;
}
.content-1.flow-about .flow-list li dl{
  display: flex;
}
.content-1.flow-about .flow-list li dl dt{
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #41B2FF;
  padding: 6px 24px 6px 0;
  border-right: 2px solid #41B2FF;
  margin-right: 19px;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}
.content-1.flow-about .flow-list li dl dd{
  font-size: 22px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1600px) {
  .content-1.flow-about figure{
    width: 50%;
  }
  .content-1.flow-about figure img{
    width: 100%;
  }
  .content-1.flow-about figcaption{
    width: calc(50% + 52px);
  }
}


.manage-area .manage-content .content-2 {
  max-width: 1366px;
  margin: 0 auto 0 auto;
  position: relative;
  padding-right: 30px;
}
.content-2-element {
  background-color:rgba(232,232,232,0.4);
  border-radius: 0 72px 72px 0;
  padding: 60px 52px 60px 83px;
}
.content-2 .element-title {
  width: 208px;
  text-align: center;
  margin: 0 auto 60px auto;
}
.content-2 .element-title p {
  font-size: 28px;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.content-2 .element-title span {
  display: block;
  height: 6px;
  background-color: #41B2FF;
}
.content-2 .element-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-2 .element-block li {
  width: calc((100% - 60px) / 4);
  background-color: #fff;
  text-align: center;
  border-radius: 72px 10px 10px 10px;
  padding: 60px 0;
  margin-bottom: 20px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.05);
}
.content-2 .element-block li .element-box {
  margin-bottom: 30px;
}
.content-2 .element-block li .element-box span {
  display: block;
  margin-bottom: 10px;
}
.content-2 .element-block li .element-box p {
  font-size: 18px;
  color: #0299FF;
  line-height: 1em;
  letter-spacing: 0.05em;
}
.content-2 .element-block li .element-text {
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.05em;
}
/*1366px以上の対応*/
@media only screen and (min-width: 1367px) {
  .manage-area .manage-content .content-2 {
    padding-left: 30px;
  }
  .content-2-element {
    border-radius: 72px;
    padding: 60px 68px;
  }
}

/*経営計画の策定支援*/
.manage-area .manage-content .content-3 {
  max-width: 1366px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.content-3.flow-about {
  display: flex;
  margin-bottom: 50px;
}
.content-3.flow-about figure {
  position: relative;
  z-index: 1;
}
.content-3.flow-about figure img {
  border-radius: 0 72px 72px 0;
}
.content-3.flow-about figcaption {
  background: rgba(65,178,255,0.6);
  border-radius: 72px 0 0 72px;
  padding: 50px 38px;
  min-width: 577px;
  width: calc(100% - 770px);
  margin-top: 60px;
  margin-left: -52px;
  position: relative;
  z-index: 5;
}
.content-3.flow-about figcaption::after{
  display: none;
}
.content-3.flow-about figcaption .flow-list-ttl {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 780px;
  padding: 6px 0;
  margin: 0 auto 30px;
}
/*1366px以上の対応*/
@media only screen and (min-width: 1367px) {
  .content-3.flow-about figure img,
  .content-3.flow-about figcaption {
    border-radius: 72px;
  }
}
.content-3.flow-about .flow-list {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.content-3.flow-about .flow-list li {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #41B2FF;
  padding: 16px 20px 17px 24px;
  margin-bottom: 15px;
}
.content-3.flow-about .flow-list li {
  margin-bottom: 16px;
}
.content-3.flow-about .flow-list li:last-of-type {
  margin-bottom: 0;
}
.content-3.flow-about .flow-list li dl {
  display: flex;
}
.content-3.flow-about .flow-list li dl dt {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #41B2FF;
  padding: 6px 24px 6px 0;
  border-right: 2px solid #41B2FF;
  margin-right: 19px;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}
.content-3.flow-about .flow-list li dl dd {
  font-size: 22px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1600px) {
  .content-3.flow-about figure {
    width: 50%;
  }
  .content-3.flow-about figure img {
    width: 100%;
  }
  .content-3.flow-about figcaption {
    width: calc(50% + 52px);
  }
}
.manage-area .manage-content .content-4 {
  max-width: 1366px;
  margin: 0 auto 0 auto;
  position: relative;
  padding-right: 30px;
}
.content-4-step {
  background-color:rgba(232,232,232,0.4);
  border-radius: 0 72px 72px 0;
  padding: 60px 52px 60px 83px;
}

.content-4 .step-title {
  width: 180px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.content-4 .step-title p {
  font-size: 28px;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.content-4 .step-title span {
  display: block;
  height: 6px;
  background-color: #41B2FF;
}
.content-4 .step-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-4 .step-block ul::before {
  content: "";
  position: absolute;
  top: 55%;
  width: calc(100% - 195px);
  border-bottom: 3px dotted #0299FF;
}
.content-4 .step-block li {
  width: calc((100% - 60px) / 4);
  background-color: #fff;
  text-align: center;
  border-radius: 40px;
  padding: 60px 0;
  margin-bottom: 20px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.content-4 .step-block li .step-label {
  margin-bottom: 40px;
}
.content-4 .step-block li .step-label span {
  padding: 2px 16px;
  background-color: #41B2FF;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 20px;
}
.content-4 .step-block li .step-box {
  margin-bottom: 20px;
}
.content-4 .step-block li .step-box span {
  display: block;
  margin-bottom: 40px;
}
.content-4 .step-block li .step-box p {
  font-size: 22px;
  color: #0299FF;
  line-height: 1.4em;
  letter-spacing: 0.05em;
}
.content-4 .step-block li .step-text {
  font-size: 17px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  text-align: left;
  width: 198px;
  margin: auto;
}
/*1366px以上の対応*/
@media only screen and (min-width: 1367px) {
  .manage-area .manage-content .content-4 {
    padding-left: 30px;
  }
  .content-4-step {
    border-radius: 72px;
    padding: 60px 68px;
  }
}

/*情報提供サービス*/
.manage-area .manage-content .content-5 {
  max-width: 1366px;
  margin: 0 auto 0 auto;
  position: relative;
  padding-left: 30px;
}
.content-5-detail {
  background-color:rgba(232,232,232,0.4);
  border-radius: 72px 0 0 72px;
  padding: 60px 83px 60px 53px;
}
.content-5 .detail-title {
  width: 180px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.content-5 .detail-title p {
  font-size: 28px;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.content-5 .detail-title span {
  display: block;
  height: 6px;
  background-color: #41B2FF;
}
.content-5 .detail-block {
  border-radius: 10px;
  padding: 30px 30px 0 30px;
  background-color: #fff;
}
.content-5 .detail-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-5 .detail-block li {
  width: calc((100% - 30px) / 2);
  border-radius: 40px;
  margin-bottom: 30px;
}

.content-5 .detail-block li .detail-label {
  margin-bottom: 10px;
}
.content-5 .detail-block li .detail-label span {
  font-size: 24px;
  letter-spacing: 0.05em;
  padding-left: 16px;
  position: relative;
  font-weight: 500;
  display: block;
}
.content-5 .detail-block li .detail-label span::after {
  position: absolute;
  left: 0;
  top: 4px;
  content: '';
  background: #41B2FF;
  width: 6px;
  height: calc(100% - 5px);
}
.content-5 .detail-block li .detail-text {
  text-align: left;
  background-color:rgba(65,178,255,0.1);
  border-radius: 10px;
  padding: 40px 30px;
  background-repeat: no-repeat;
  background-position: bottom 30px right 30px;
  min-height: 120px;
}
.content-5 .detail-block li .detail-text.icon-bg1 {
  background-image: url(../images/service/info-bg_icon1.svg);
}
.content-5 .detail-block li .detail-text.icon-bg2 {
  background-image: url(../images/service/info-bg_icon2.svg);
}
.content-5 .detail-block li .detail-text.icon-bg3 {
  background-image: url(../images/service/info-bg_icon3.svg);
}
.content-5 .detail-block li .detail-text.icon-bg4 {
  background-image: url(../images/service/info-bg_icon4.svg);
}
.content-5 .detail-block li .detail-text span p {
  font-size: 17px;
  line-height: 1.7em;
  letter-spacing: 0.05em;
  padding-left: 12px;
}
.content-5 .detail-block li .detail-text span p::after {
  position: absolute;
  left: 0;
  top: 4px;
  content: '';
  background: rgba(2,153,255,0.4);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 7px;
}
/*1366px以上の対応*/
@media only screen and (min-width: 1367px) {
  .manage-area .manage-content .content-5 {
    padding-left: 0;
  }
  .content-5-detail {
    border-radius: 72px;
    padding: 60px 68px;
  }
}

/*総合支援・外部連携*/
.manage-area .manage-content .content-6 {
  max-width: 1366px;
  margin: 0 auto 0 auto;
  position: relative;
  padding-right: 30px;
}
.content-6-detail {
  background-color:rgba(232,232,232,0.4);
  border-radius: 0 72px 72px 0;
  padding: 60px 52px 60px 83px;
}
.content-6 .detail-title {
  width: 180px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.content-6 .detail-title p {
  font-size: 28px;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.content-6 .detail-title span {
  display: block;
  height: 6px;
  background-color: #41B2FF;
}
.content-6 .detail-block {
  margin: 40px 0;
  background: #fff;
  border-radius: 20px;
  padding: 60px 20px;
  display: flex;
}
.content-6 .detail-block dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 4px) / 3);
}
.content-6 .detail-block dl:nth-of-type(2) {
  border-left: 2px solid #E8E8E8;
  border-right: 2px solid #E8E8E8;
}
.content-6 .detail-block dl dt {
  font-size: 22px;
  text-align: center;
}
.content-6 .detail-block dl dd figure {
  text-align: center;
  margin: 10px auto 15px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-6 .detail-block dl dd figure img {
  margin: 0 auto;
  width: fit-content;
}
.content-6 .detail-block dl dd figcaption ul {
  padding-left: 19px;
}
.content-6 .detail-block dl dd figcaption ul li {
  position: relative;
  line-height: 1.2em;
  font-size: 17px;
  padding: 5px 0;
  letter-spacing: 0em;
}
.content-6 .detail-block dl dd figcaption ul li::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: -14px;
  top: 12px;
  content: '';
  background: rgba(2,79,132,0.4);
}
.content-6 .detail-btn {
  text-align: center;
}
.content-6 .detail-btn .btn-more .bizup-icon,
.content-6 .detail-btn .btn-more .btn-text {
  margin-right: 10px;
}
/*1366px以上の対応*/
@media only screen and (min-width: 1367px) {
  .manage-area .manage-content .content-6 {
    padding-left: 30px;
  }
  .content-6-detail {
    border-radius: 72px;
    padding: 60px 68px;
  }
}

/*他社との違い*/
.difference-area .difference-title {
  margin-bottom: 80px;
}
.difference-content {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  margin-bottom: 120px;
}
.difference-content .content-wrap {
  max-width: 1366px;
}
.difference-content .content-wrap ul li {
  display: flex;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 60px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.05);
}
.difference-content .content-wrap ul li:last-child {
  margin-bottom: 0;
}
.difference-content .content-wrap ul li .image-box1,
.difference-content .content-wrap ul li .image-box2,
.difference-content .content-wrap ul li .image-box3 {
  border-radius: 10px 90px 90px 10px;
  width: 559px;
  height: 445px;
  background-position: 50%;
}
.difference-content .content-wrap ul li .image-box1 {
  background-image: url(../images/service/difference-img1.webp); 
}
.difference-content .content-wrap ul li .image-box2 {
  background-image: url(../images/service/difference-img2.webp); 
}
.difference-content .content-wrap ul li .image-box3 {
  background-image: url(../images/service/difference-img3.webp); 
}
.difference-content .content-wrap ul li .text-box {
  padding: 40px 80px 0 80px;
  width: calc(100% - 559px);
}
.difference-content .content-wrap ul li .text-box h3 {
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 1.7em;
}
.difference-content .content-wrap ul li .text-box h3.txt-strong {
  background: linear-gradient(transparent 80%, rgba(65, 178, 255, 0.4) 20%);
}
.difference-content .content-wrap ul li .text-box p {
  font-size: 17px;
  letter-spacing: 0.05em;
  margin-top: 40px;
}
/*
.massage-area,
.massage-content {
  position: relative;
}
.massage-content .content-wrap {
  display: flex;
  position: relative;
  padding-bottom: 70px;
}
.massage-content .content-wrap .text-box {
  padding: 50px 530px 74px 104px;
  background-color: rgba(232,232,232,0.4);
  border-radius: 0 72px 72px 0;
  margin-right: 31px;
  min-height: 353px;
}
.massage-content .content-wrap .text-box h3.blue-line-ttl {
  font-size: 34px;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  background: linear-gradient(transparent 75%, rgba(65,178,255,0.4) 75%, rgba(65,178,255,0.4) 90%, transparent 90%);
}
.massage-content .content-wrap .text-box h3.txt-strong {
  background: linear-gradient(transparent 80%, rgba(65, 178, 255, 0.4) 20%);
}
.massage-content .content-wrap .text-box p.end-txt {
  font-size: 19px;
  letter-spacing: 0.1em;
  margin-top: 48px;
}
.massage-content .content-wrap .image-box {
  width: 540px;
  height: auto;
  margin-top: 97px;
  position: absolute;
  right:0;
  z-index: 1;
}
.massage-content .content-wrap .image-box img {
  border-radius: 72px 0 0 72px;
  width: 100%;
  height: 100%;
}*/

.massage-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.massage-content figcaption{
  background: rgba(246,246,246,0.4);
  border-radius: 0 72px 72px 0;
  width: calc(100% - 24px - 30px);
  padding: 54px 0 50px;
}
.massage-content figcaption .figcaption-wrap{
  width: 1160px;
  margin: 0 auto;
}
.massage-content .end-txt{
  font-size: 19px;
  line-height: 1.78em;
  margin-top: 48px;
  letter-spacing: 0.1em;
  width: 52vw;
}
.massage-content figure.strength-cont-img{
  margin-top: 70px;
  margin-bottom: inherit;
}
.massage-content figcaption .figcaption-wrap{
  width: 1160px;
  margin: 0 auto;
}


/*-------- お知らせ一覧 --------*/
.info_cont .sub-top{
  background-image: url(../images/info/info-title-bg.webp);
}

.info_archive_wrap,.info_single_wrap,.contact_form_wrap,.faq_cont_wrap,.reason_cont1_wrap,.support_cont4_wrap,.flow_cont2_wrap{
  width: 100%;
  margin: 0;
  padding: 0;
}
.info_archive_inner,.info_single_inner{
  width: 1170px;
  padding: 40px 30px;
  margin: 0 auto;
}

.info_cat_list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.info_cat_list li{
  width: calc((100% - 129px)/ 4);
  height: 50px;
  margin-right: 30px;
}
.info_cat_list li:last-of-type{
  margin-right: 0;
}
.info_cat_list li a{
  background: rgba(2,153,255,0.6);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  color: #fff;
}
.info_cat_list li.active_info a{
  background: rgba(2,153,255,1);
}

.info_list_wrap{
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  margin: 40px auto;
}
.info_list_ul li{
  width: 100%;
  border-top: 2px dashed rgba(51,51,51,0.2);
}
.info_list_ul li:last-of-type{
  border-bottom: 2px dashed rgba(51,51,51,0.2);
}
.info_list_ul li a{
  padding: 30px 0;
  display: flex;
  position: relative;
}
.info_list_ul li a::after{
  position: absolute;
  right: 20px;
  top:calc(50% - 7px);
  background: url(../images/info/info_arrow.svg)no-repeat;
  width: 8px;
  height: 14px;
  content: '';
  transition: 0.3s;
}
.info_list_ul li a:hover{
  opacity: 1;
}
.info_list_ul li a:hover:after{
  right: 12px;
}
.info_list_ul li a .news-meta{
  display: flex;
  flex-direction: row-reverse;
}
.info_list_ul li a .news-meta .news-date{
  font-size: 17px;
}
.info_list_ul li a .news-meta .news-label{
  padding: 4px 23px;
  margin-right: 30px;
  margin-left: 30px;
  height: fit-content;
}
.info_list_ul li a .news-title{
  margin-top: 0;
  width: calc(100% - 330px);
}
.info_list_ul li a .news-title p{
  font-weight: 700;
}
.info_list_ul li a:hover .news-title p{
  color: #0299FF;
}

/*ページャー*/
.info_pager_wrap{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* 202512 */
}
.info_pager_wrap .pager_current,
.info_pager_wrap .pager_larger,
.info_pager_wrap .pager_nextpostslink,
.info_pager_wrap .pager_last,
.info_pager_wrap .pager_prevpostslink,
.info_pager_wrap .pager_first{
  flex: 0 0 auto; /* 20251224甲佐追加 */
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border:1px solid #0299FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0299FF;
  margin: 2px 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.info_pager_wrap .pager_current{
  background: #0299FF;
  color: #fff;
}
.info_pager_wrap .pager_extend{
  color: #0299FF;
  margin: 0 5px;
}
.info_pager_wrap .pager_nextpostslink,
.info_pager_wrap .pager_last,
.info_pager_wrap .pager_prevpostslink,
.info_pager_wrap .pager_first{
  position: relative;
}
.info_pager_wrap .pager_nextpostslink::after{
  position: absolute;
  background: url(../images/info/pagenavi_double.svg)no-repeat;
  width: 15.2px;
  height: 17px;
  content: '';
  top:calc(50% - 8.5px);
  left: calc(50% - 7.6px);
}
.info_pager_wrap .pager_last::after{
  position: absolute;
  background: url(../images/info/pagenavi_single.svg)no-repeat;
  width: 9px;
  height: 17px;
  content: '';
  top:calc(50% - 8.5px);
  left: calc(50% - 4.5px);
}

/*20251224甲佐追加*/
.info_pager_wrap .pager_prevpostslink::after{
  position: absolute;
  background: url(../images/info/pagenavi_double.svg)no-repeat;
  width: 15.2px;
  height: 17px;
  content: '';
  top:calc(50% - 8.5px);
  left: calc(50% - 7.6px);
  transform: scaleX(-1);
}
.info_pager_wrap .pager_first::after{
  position: absolute;
  background: url(../images/info/pagenavi_single.svg)no-repeat;
  width: 9px;
  height: 17px;
  content: '';
  top:calc(50% - 8.5px);
  left: calc(50% - 4.5px);
  transform: scaleX(-1);
}

/*-------- お知らせ詳細 --------*/
.title-block > p.news_single_pttl {
  font-weight: 500;
  color: #333333;
  margin-bottom: 80px;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1em;
}

.info_single_ttl_area{
  background: rgba(2,153,255,0.2);
  border: 2px solid rgba(65,178,255,0.05);
  padding: 40px;
  border-radius: 72px 72px 0 0;
}
.info_sigle_cont .news-date{
  font-size: 17px;
}
.info_sigle_cont .news-label{
  padding: 4px 23px;
  margin-right: 0;
  margin-left: 30px;
}
.info_sigle_cont .news-title{
  margin-top: 20px;
}
.info_sigle_cont .news-title h1{
  background: #fff;
  border-radius: 4px;
  padding: 6px 24px;
  line-height: 34px;
  font-size: 28px;
  font-weight: 500;
  width: fit-content;
}
.info_sigle_cont .news-title{
  line-height: inherit;
}
.info_sigle_cont .news-title h1 img{
  margin-right: 11px;
  position: relative;
  top:4px;
}
.info_single_dtl_area{
  background: #fff;
  border-radius: 0 0 72px 72px;
  padding: 40px;
}
.info_single_dtl_area p{
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.76em;
  letter-spacing: 0.01em;
}
.info_single_dtl_area h2{
  padding-left: 8px;
  border-left: 6px solid #41B2FF;
  line-height: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.03em;
}
.info_single_dtl_area ol,.info_single_dtl_area ul,.info_single_dtl_area figure{
  margin-bottom: 30px;
}
.info_single_dtl_area ol{
  counter-reset: number;
  list-style: none;
  padding-left: 0;
}
.info_single_dtl_area ol li,.info_single_dtl_area ul li{
  padding-left: 28px;
  position: relative;
  font-size: 17px;
  margin: 8px 0;
  letter-spacing: 0.01em;
}
.info_single_dtl_area ul li::after{
  position: absolute;
  content: '・';
  left: 8px;
  top:0px;
  font-size: 17px;
  display: block;
}
.info_single_dtl_area ol li::after{
  position: absolute;
  counter-increment: number;
  content: counter(number) ".";
  left: 10px;
  top:1px;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  display: block;
  color: #014F84;
  font-weight: 600;
}
.info_single_dtl_area table{
  margin: 0;
}
.info_single_dtl_area table thead{
  border-bottom: 3px solid #bbbbbb;
}
.info_single_dtl_area table th,.info_single_dtl_area table td{
  font-size: 16px;
  padding: 8px 16px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  letter-spacing: 0.03em;
}
.info_single_dtl_area table th:last-of-type,.info_single_dtl_area table td:last-of-type{
  border-right: 1px solid #ccc;
}
.info_single_dtl_area table tbody tr:last-of-type td{
  border-bottom: 1px solid #ccc;
}
.info_single_dtl_area table th{
  font-weight: 700;
}
.info_single_dtl_area table td{
  text-align: center;
}
.info_single_dtl_area img{
  width: fit-content;
  max-width: 100%;
  min-width: 280px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}
.info_single_dtl_area a{
  color: #0299FF;
  text-decoration: underline;
  letter-spacing: 0.01em;
}

.info_single_nav{
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.info_single_nav > div{
  width: 160px;
  height: 50px;
  border-radius: 25px;
  border: 2px solid #0299FF;
  background: #fff;
}
.info_single_nav > div a{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #0299FF;
  font-size: 17px;
  transition: 0.3s;
  border-radius: 25px;
}
.info_single_nav > div a:hover{
  background: #EFF8FF;
  opacity: 1;
}
.info_single_nav > div.single_nav_back a::after{
  position: absolute;
  background: url(../images/info/info_arrow.svg)no-repeat;
  transform: rotate(180deg);
  width: 8px;
  height: 14px;
  content: '';
  top:calc(50% - 7px);
  left: 20px;
}
.info_single_nav > div.single_nav_next a::after{
  position: absolute;
  background: url(../images/info/info_arrow.svg)no-repeat;
  width: 8px;
  height: 14px;
  content: '';
  top:calc(50% - 7px);
  right: 20px;
}
.info_single_nav > div.single_nav_all{
  background: #0299FF;
  width: 200px;
}
.info_single_nav > div.single_nav_all a{
  color: #fff;
}
.info_single_nav > div.single_nav_all a:hover{
  opacity: 0.6;
  background: #0299FF;
}

.info_single_nav > div.is-empty{
  border: none;
  background: transparent;
  pointer-events: none;
}

/*-------- お問い合わせ --------*/
.contact_cont .sub-top{
  background-image: url(../images/contact/contact-title-bg.webp);
}
.contact_form_inner{
  width: 860px;
  padding: 60px 20px;
  margin: 0 auto;
}
.contact_form_inner_bg{
  padding: 60px 180px 100px;
  background: #fff;
  border-radius: 72px;
}
.contact_form_inner_bg > p.txt-strong{
  letter-spacing: 0.05em;
}
.contact_form_inner form{
  padding: 60px 33px 0;
  width: calc(100% - 66px);
}
.contact_form_inner form dl{
  margin-bottom: 20px;
}
.contact_form_inner form dt{
  margin-bottom: 5px;
  width: fit-content;
  line-height: 20px;
}
.contact_form_inner form dd input:nth-of-type(n+2){
  margin-left: 42px;
}
.contact_form_inner form dd input[type="radio"]{
  appearance: none;
  border-radius: 50%;
  border: 1px solid #E8E8E8;
  vertical-align: -3px;
  outline: none;
  padding: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 5px;
}
.contact_form_inner form dd input[type="radio"]:checked::before{
  transform: translate(2px, 2px) scale(1);
}
.contact_form_inner form dd input[type="radio"]::before{
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #0299FF;
  transform: translate(3px, 3px) scale(0);
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.25, 0.25, 0.56, 2);
}
.contact_form_inner form dd input[type="text"]{
  border: 1px solid #E8E8E8;
  padding: 8px 15px;
  box-sizing: border-box;
  border-radius: 5px;
  line-height: 24px;
  font-size: 16px;
  width: 100%;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
.contact_form_inner form dl.hissu dt{
  position: relative;
}
.contact_form_inner form dl.hissu dt::after{
  content: '必須';
  background: #014F84;
  border-radius: 2px;
  padding: 4px 6px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1em;
  position: absolute;
  right: -45px;
  top:0;
}
.contact_form_inner form dl.hissu dd.area_form input:nth-of-type(4){
  margin-left: 0;
}
.contact_form_inner form dl.hissu dd.area_form input:nth-of-type(4),.contact_form_inner form dl.hissu dd.area_form input:nth-of-type(5){
  margin-top: 10px;
}
.contact_form_inner form dd.s-text-ipt input[type="text"]{
  width: 150px;
}
.contact_form_inner form dd select{
  border: 1px solid #E8E8E8;
  padding: 8px 15px;
  box-sizing: border-box;
  border-radius: 5px;
  line-height: 24px;
  font-size: 16px;
  width: 100%;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
.contact_form_inner form dd textarea{
  border: 1px solid #E8E8E8;
  padding: 8px 15px;
  box-sizing: border-box;
  border-radius: 5px;
  line-height: 1.4em;
  font-size: 16px;
  width: 100%;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
.contact-privacy-area{
  margin: 60px auto;
  width: calc(100% - 48px);
  background: #014F84;
  border-radius: 5px;
  padding: 24px;
}
.contact-privacy-area > p{
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.contact-privacy-area-inner{
  background: #fff;
  border-radius: 5px;
  padding: 20px 32px;
}
.contact-privacy-area-inner > p{
  text-align: center;
  margin-bottom: 20px;
}
.contact-privacy-area-inner > p a{
  color: #0299FF;
  text-decoration: underline;
}
.contact-privacy-check{
  letter-spacing: 0;
  font-size: 16px;
  text-align: center;
  padding-left: 47px;
}
.contact-privacy-check input[type="checkbox"]{
  border-radius: 2px;
  border: 1px solid rgba(51,51,51,0.4);
  vertical-align: -3px;
  outline: none;
  padding: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 10px;
}
.contact-privacy-check.hissu{
  position: relative;
  width: fit-content;
  margin: auto;
}
.contact-privacy-check.hissu::after{
  content: '必須';
  background: #014F84;
  border-radius: 2px;
  padding: 4px 6px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1em;
  position: absolute;
  left: 0;
  top: 3px;
}
.contact_form_inner form dl:last-of-type{
  margin: 0 auto;
  text-align: center;
}
.contact_form_inner form input[type="submit"]{
  width: 300px;
  height: 50px;
  color: #fff;
  border-radius: 25px;
  background: #0299FF;
  border: 2px solid #0299FF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
.contact_form_inner form input[type="submit"]:hover{
  opacity: 0.7;
}
.contact-privacy-area-inner .ssp_br{
  display: none;
}

/*-------- よくある質問 --------*/
.faq_cont .sub-top{
  background-image: url(../images/faq/faq-title-bg.webp);
}
.faq_cont_inner{
  width: 957px;
  padding: 80px 20px 100px;
  margin: 0 auto;
}
.faq_cont h3{
  padding-left: 16px;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
.faq_cont h3::after{
  position: absolute;
  left: 0;
  top: 4px;
  content: '';
  background: #41B2FF;
  width: 6px;
  height: calc(100% - 5px);
}
.faq_block{
  margin-bottom: 70px;
}
.faq_block:last-of-type{
  margin-bottom: 0;
}

/*-------- 選ばれる理由 --------*/
.reason_cont .sub-top{
  background-image: url(../images/reason/reason-title-bg.webp);
}
.reason_cont1_wrap{
  border-radius: 0 0 100px 100px;
}
.reason_cont_inner{
  width: 1040px;
  padding: 60px 20px 90px;
  margin: 0 auto;
}
.reason_cont_inner h2{
  margin-bottom: 56px;
}
.reason_cont_inner br.ssp_br{
  display: none;
}
dl.reason_block{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
dl.reason_block:last-of-type{
  margin-bottom: 0;
}
dl.reason_block dt{
  background: #0299FF;
  border-radius: 30px 30px 0 30px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.05);
  padding: 20px 0 48px;
  width: 300px;
  position: relative;
  z-index: 5;
  display: block;
  flex-shrink: 0;
}
.reason_sub_ttl{
  padding: 2px 16px;
  background: #41B2FF;
  border-radius: 15px;
  color: #fff;
  width: fit-content;
  margin: 0 auto 30px;
  letter-spacing: 0.05em;
}
.reason_ttl{
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8em;
  text-align: center;
  letter-spacing: 0.03em;
}
dl.reason_block dd{
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.05);
  padding: 50px 86px 50px 90px;
  width: calc(800px - 176px);
  position: relative;
  left: -60px;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.reason_catch{
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  line-height: 1.8em;
}
.reason_block figcaption > p{
  letter-spacing: 0;
  width: 435px;
  line-height: 1.76em;
}
.reason_block figure img{
  width: 100px;
  height: auto;
  object-fit: cover;
}

.reason_cont2_wrap{
  padding: 120px 0 20px;
  width: 100%;
  margin: 0;
}
.reason_other_wrap{
  display: flex;
  justify-content: space-between;
  /*height: 260px;*/
}
.reason_other_wrap:first-of-type{
  margin-bottom: 24px;
}
img.rason_other2-1{
  width: 11.2vw;
  height: auto;
}
.reason_other_dec img.rason_other2-4{
  width: 23vw;
  height: auto;
}
img.rason_other2-6{
  width: 16vw;
  height: auto;
}
.reason_other_dec{
  position: relative;
  width: 27.8vw;
  display: block;
  transition: 0.3s;
}
.reason_other_dec.reason_other3{
  width: fit-content;
}
.reason_other_dec img{
  width: 100%;
  height: auto;
}
.reason_other_dec p{
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(2,79,132,0.5);
  color: #fff;
  font-size: 18px;
  line-height: 1.6em;
  position: absolute;
  top:0;
  left: 0;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.reason_other_dec:hover p{
  display: flex;
  justify-content: center;
  align-items: center;
}
.reason_other_fukidashi{
  width: calc(27.8vw - 64px);
  margin-bottom: 13px;
  position: relative;
  padding: 32px 32px 0;
  display: inline-block;
  background: #EFF8FF;
  border-radius: 20px;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: 0.05em;
}
.reason_other_fukidashi::after{
  width: 60px;
  height: 55px;
  background: url(../images/reason/fukidashi.svg)no-repeat;
  bottom: -17px;
  left: 0;
  position: absolute;
  content: '';
}
.reason_other_wrap:last-of-type .reason_other_fukidashi::after{
  transform: rotate(180deg);
  right: 0;
  left: inherit;
}

/*-------- 事業承継支援 --------*/
.succession_cont .sub-top{
  background-image: url(../images/succession/succession-title-bg.webp);
}
section.succession_cont1_wrap,section.support_cont1_wrap,section.opening_cont1_wrap,section.flow_cont1_wrap,section.taxation_cont1_wrap {
  display: flex;
  justify-content: flex-end;
}
.succession_cont1_inner, .support_cont1_inner, .opening_cont1_inner, .flow_cont1_inner, .taxation_cont1_inner{
  width: calc(1160px + ((100% - 1160px) / 2));
}
.succession_cont1_wrap .page-intro, .support_cont1_wrap .page-intro, .opening_cont1_wrap .page-intro, .flow_cont1_wrap .page-intro, .taxation_cont1_wrap .page-intro{
  display: flex;
  justify-content: space-between;
}
.succession_cont1_wrap .page-intro .page-intro-text, .support_cont1_wrap .page-intro .page-intro-text, .opening_cont1_wrap .page-intro .page-intro-text, .flow_cont1_wrap .page-intro .page-intro-text, .taxation_cont1_wrap .page-intro .page-intro-text{
  width: calc(100% - 38px - 669px);
}
.succession_cont1_wrap .page-intro h3, .support_cont1_wrap .page-intro h3, .opening_cont1_wrap .page-intro h3, .flow_cont1_wrap .page-intro h3, .taxation_cont1_wrap .page-intro h3{
  font-size: 34px;
  line-height: 1.7em;
  margin-bottom: 50px;
}
.succession_cont1_wrap .page-intro p, .support_cont1_wrap .page-intro p, .opening_cont1_wrap .page-intro p, .flow_cont1_wrap .page-intro p, .taxation_cont1_wrap .page-intro p{
  font-size: 18px;
  line-height: 1.9em;
  opacity: 0.8;
}
.succession_cont .succession_cont2_wrap, .succession_cont .succession_cont3_wrap,.succession_cont4_wrap,.succession_cont5_wrap,section.company_cont1_wrap,.company_cont2_wrap,.company_cont3_wrap,.privacy_cont1_wrap,.support_cont2_wrap,.support_cont3_wrap,.opening_cont2_wrap,.flow_cont2_wrap,.flow_cont3_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
.succession_cont .succession_cont2_inner{
  width: 1160px;
  padding: 70px 20px;
  margin: 0 auto;
}
.succession_cont3_inner{
  width: 1160px;
  padding: 70px 20px 80px;
  margin: 0 auto;
}
.succession_cont3_inner h2{
  margin-bottom: 64px;
}
.succession_cont3_inner .ssp_br{
  display: none;
}
.succession_case{
  margin-top: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 60px 20px;
  display: flex;
}
.succession_case dl{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 4px) / 3);
}
.succession_case dl:nth-of-type(2){
  border-left: 2px solid #E8E8E8;
  border-right: 2px solid #E8E8E8;
}
.succession_case dl dt{
  font-size: 22px;
  text-align: center;
}
.succession_case dl dd figure{
  text-align: center;
  margin: 10px auto 15px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.succession_case dl dd figure img{
  margin: 0 auto;
  width: fit-content;
}
.succession_case dl dd figcaption ul{
  padding-left: 19px;
}
.succession_case dl dd figcaption ul li{
  position: relative;
  line-height: 1.2em;
  font-size: 17px;
  padding: 5px 0;
  letter-spacing: 0em;
}
.succession_case dl dd figcaption ul li::after{
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: -14px;
  top: 12px;
  content: '';
  background: rgba(2,79,132,0.4);
}
.succession_cont4_inner{
  padding: 120px 0;
}
.succession_cont4_inner h2{
  margin-bottom: 80px;
}
.flow-about{
  display: flex;
  margin-bottom: 50px;
}
.flow-about figure{
  position: relative;
  z-index: 1;
}
.flow-about figcaption{
  background: rgba(65,178,255,0.6);
  border-radius: 72px 0 0 72px;
  padding: 50px 38px;
  min-width: 577px;
  width: calc(100% - 770px);
  margin-top: 60px;
  margin-left: -52px;
  position: relative;
  z-index: 5;
}
.flow-about figcaption::after{
  background: url(../images/succession/action-arrow.png)no-repeat;
  width: 374px;
  height: 149px;
  bottom: -100px;
  right: 50%;
  content: '';
  position: absolute;
}
.flow-about figcaption .flow-list-ttl{
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 780px;
  padding: 6px 0;
  margin: 0 auto 30px;
}
.flow-list{
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.flow-list li{
  background: #fff;
  border-radius: 10px;
  border: 2px solid #41B2FF;
  padding: 16px 20px 17px 24px;
  margin-bottom: 15px;
}
.flow-list li{
  margin-bottom: 16px;
}
.flow-list li:last-of-type{
  margin-bottom: 0;
}
.flow-list li dl{
  display: flex;
}
.flow-list li dl dt{
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #41B2FF;
  padding: 6px 24px 6px 0;
  border-right: 2px solid #41B2FF;
  margin-right: 19px;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}
.flow-list li dl dd{
  font-size: 22px;
  letter-spacing: 0.05em;
}
.succession-tab-inner{
  padding: 50px 0;
  width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 1600px) {
  .flow-about figure{
    width: 50%;
  }
  .flow-about figure img{
    width: 100%;
  }
  .flow-about figcaption{
    width: calc(50% + 52px);
  }
}

/*タブの動きと装飾*/
.succession-tab-inner ul.tab{
  display: flex;
  justify-content: space-between;
}
.succession-tab-inner ul.tab li.active{
  background: #024F84!important;
}
.succession-tab-inner ul.tab li{
  width: calc((100% - 30px) / 3);
  display: block;
  background: #E8E8E8;
  padding: 27px 20px 20px;
  border-radius: 20px 20px 0 0;
  box-sizing: border-box;
}
.succession-tab-inner ul.tab li a{
  display: block;
  text-align: center;
  font-size: 22px;
}
.succession-tab-inner ul.tab li.active a{
  color: #fff;
}
.area {
  display: none !important;
  opacity: 0;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  transition: opacity 0.3s ease;
  background: #024F84;
}
.area.is-active {
  display: block !important;
  opacity: 1;
  animation: displayAnime 0.5s ease forwards;
}
.area .succession-tab-content{
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 30px 80px 60px;
}

@keyframes displayAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.area .succession-tab-content h3{
  margin-bottom: 30px;
}
.taisaku-list li{
  padding: 0 10px 15px ;
  border-bottom: 2px dashed #939393;
  margin-bottom: 20px;
  font-size: 24px;
}
.taisaku-list li:last-of-type{
  margin-bottom: 0;
}
.taisaku-list input[type="checkbox"]{
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #939393;
  margin-right: 13px;
  vertical-align: -3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
}
.taisaku-list input[type="checkbox"]:checked{
  border-color: #41B2FF;
  background: #fff;
}
.taisaku-list input[type="checkbox"]:checked::after{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 12px;
  border: 2px solid #41B2FF;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.succession_cont5_inner h2{
  margin-bottom: 80px;
}
.strength-cont{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 70px;
}
.strength-cont figcaption.strength-cont-txt_wrap{
  background: rgba(232,232,232,0.4);
  border-radius: 0 72px 72px 0;
  width: 80%;
  min-width: calc(1200px + 5%);
  padding: 60px 0 80px 5%;
}
.strength-cont-txt_inner{
  width: 1160px;
  padding: 0 0 0 30px;
  margin: 0 auto;
}
.strength-cont .under-line-ttl{
  margin-bottom: 40px;
}
.point-list{
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.point-list li{
  width: calc(((100% - 60px) / 3) - 60px);
  background: #fff;
  padding: 30px 30px 40px;
  border-radius: 40px;
}
.point-list dl{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.point-list dt{
  font-size: 17px;
  color: #fff;
  background: #41B2FF;
  border-radius: 20px;
  padding: 2px 16px;
  line-height: 25px;
  letter-spacing: 0.05em;
}
.point-list dl dd figure{
  margin: 20px auto;
  height: 167px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.point-list dl dd figcaption{
  text-align: center;
  font-size: 22px;
  color: #0299FF;
  letter-spacing: 0.05em;
}
.strength-cont-txt_inner h3.blue-line-ttl{
  font-size: 34px;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  background: linear-gradient(transparent 75%, rgba(65,178,255,0.4) 75%, rgba(65,178,255,0.4) 90%, transparent 90%);
}
.strength-cont-txt_inner .end-txt{
  font-size: 19px;
  letter-spacing: 0.1em;
  margin-top: 48px;
}
figure.strength-cont-img {
  width: 540px;
  margin-left: -510px;
  margin-bottom: -70px;
  position: relative;
  z-index: 5;
}
/*-------- 事務所案内 --------*/
.company_cont .sub-top{
  background-image: url(../images/company/company-title-bg.webp);
}

section.company_cont1_wrap .company_cont1_inner {
  padding: 16px 0 0;
  width: 1160px;
  margin: 0 auto;
}
.company_cont2_inner{
  padding-bottom: 120px;
}
.greeting-block{
  width: 880px;
  margin: 0 auto;
}
.greeting-block figcaption{
  padding: 40px 0;
  display: flex;
  width: 800px;
  justify-content: space-between;
  margin: 0 auto;
}
.greeting-block figcaption .greeting-catch{
  writing-mode: vertical-rl;
  font-size: 34px;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  margin-top: -140px;
}
.greeting-block figcaption .greeting-catch span{
  margin: 0 17px;
  line-height: 1em;
}
.greeting-block figcaption .greeting-catch span:nth-of-type(2){
  margin-top: 46px;
}
.greeting-block figcaption .greeting-catch span:nth-of-type(3){
  margin-top: 92px;
}
.greeting-block figcaption .greeting-txt{
  width: calc(100% - 75px - 180px);
}
.greeting-block figcaption .greeting-txt p.f_17px{
  letter-spacing: 0.05em;
  line-height: 1.76em;
}
.greeting-txt > p:nth-of-type(2){
  text-align: end;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
.greeting-txt > p:nth-of-type(2) .greeting-name{
  font-size: 21px;
  margin-left: 24px;
}
.greeting-profile{
  width: 800px;
  margin: 0 auto 90px;
}
.greeting-profile-name{
  color: #fff;
  background: #0299FF;
  border-radius: 6px 6px 0 0;
  padding: 6px 16px;
  font-family: "Montserrat", sans-serif;
  width: fit-content;
  line-height: 1em;
}
.greeting-profile-cont{
  padding: 32px;
  background: #EFF8FF;
  border:2px dashed #0499FF;
}
.greeting-profile-dl{
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.greeting-profile-dl dt{
  width: 84px;
  text-align: center;
  background: #fff;
  color: #024F84;
  padding: 3px 0;
  margin-right: 12px;
  margin-bottom: 12px;
}
.greeting-profile-dl dt:last-of-type, .greeting-profile-dl dd:last-of-type{
  margin-bottom: 0;
}
.greeting-profile-dl dd{
  width: calc(100% - 84px - 12px - 24px);
  background: #fff;
  color: #024F84;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.philosophy-block{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.philosophy-block figcaption{
  background:#EFF8FF;
  border-radius: 0 72px 72px 0;
  padding: 60px 140px 80px 100px;
  width: 65%;
  max-width: 910px;
}
.philosophy-list{
  margin-top: 60px;
}
.philosophy-list li{
  font-size: 17px;
  padding-bottom: 13px;
  border-bottom: 2px dashed rgba(51,51,51,0.2);
  margin-bottom: 34px;
  letter-spacing: 0;
}
.philosophy-list li:last-of-type{
  margin-bottom: 0;
}
.philosophy-block figure{
  background: rgba(65,178,255,0.6);
  margin-left: -60px;
  border-radius: 72px 0 0 72px;
  padding: 45px 64px 56px;
  width: 40%;
  max-width: 650px;
}
.philosophy-block figure img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company_cont3_inner{
  padding: 60px 20px 230px;
  width: 1160px;
  margin: 0 auto;
}
.company_cont3_inner h2{
  margin-bottom: 60px;
}
.about-block{
  display: flex;
  justify-content: space-between;
}
.about-block figcaption{
  width: calc(100% - 387px - 50px);
}
.about-list > li{
  border-top: 2px solid #fff;
  padding: 16px;
}
.about-list > li:last-of-type{
  border-bottom: 2px solid #fff;
}
.about-list li dl{
  display: flex;
}
.about-list li dl dt{
  font-size: 17px;
  color: #0299FF;
  width: 180px;
  margin-right: 32px;
}
.about-list li dl dd{
  font-size: 17px;
  width: calc(100% - 180px - 32px);
}
.about-service-list li{
  padding-left: 22px;
  position: relative;
  margin-bottom: 5px;
}
.about-service-list li:last-of-type{
  margin-bottom: 0;
}
.about-service-list li::before{
  content: '';
  position: absolute;
  left: 5px;
  top: calc(50% - 2.5px);
  width: 7px;
  height: 7px;
  background: #C5C5C5;
  border-radius: 50%;
}
.about-block figure{
  display: flex;
  flex-direction: column;
}
.about-block figure img:nth-of-type(1){
  margin-bottom: 32px;
}
span.iso-img{
  line-height: 0;
  width: fit-content;
  background: #fff;
  border-radius: 4px;
  padding: 9px 14px;
  display: block;
}
span.iso-img img{
  line-height: 0;
}
.about-group-block{
  margin: 100px auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 40px 40px 50px 60px;
  width: calc(1040px - 100px);
}
.about-group-block > dl{
  display: flex;
  align-items: center;
  height: 230px;
}
.about-group-block > dl > dt{
  font-size: 22px;
  color: #024F84;
  padding-right: 60px;
  margin-right: 40px;
  border-right: 2px solid #E8E8E8;
  height: 100%;
  line-height: 230px;
}
.about-group-block  .about-group-block-ttl.txt-strong{
  font-size: 24px;
  letter-spacing: 0.05em;
  background: linear-gradient(transparent 70%, rgba(65,178,255,0.4) 70%, rgba(65,178,255,0.4) 90%, transparent 90%);
}
.about-group-block-list{
  margin-top: 24px;
}
.about-group-block-list li{
  margin-bottom: 32px;
}
.about-group-block-list li:last-of-type{
  margin-bottom: 0;
}
.about-group-block-list li dl{
  display: flex;
}
.about-group-block-list li dl dt{
  width: 140px;
  margin-right: 22px;
  font-size: 17px;
  font-weight: 700;
  color: #024F84;
}
.about-group-block-list li dl dd{
  width: calc(100% - 140px - 22px);
  font-size: 17px;
  letter-spacing: 0.05em;
}

.company_cont4_wrap{
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}
.company_cont4_wrap::after{
  position: absolute;
  top: -100px;
  left: 0;
  background-image: url(../images/succession/dot-bg.svg);
  width: 100%;
  height: 100px;
  border-radius: 100px 100px 0 0;
  content: '';
  z-index: 0;
}
.company_cont4_inner{
  width: 1160px;
  margin: 0 auto;
  padding: 0 0 110px;
}
.company_cont4_inner h2{
  margin-top: -50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 5;
}
.map-cont{
  background: #EFF8FF;
  width: calc(100% - 60px);
  padding: 30px 30px 40px;
}
.map-iframe{
  border: 2px solid rgba(64,178,255,0.7);
  line-height: 0;
  margin-bottom: 20px;
}
.map-iframe iframe{
  width: 100%;
  height: 643px;
  line-height: 0;
}
.access-list li:not(:last-of-type){
  margin-bottom: 8px;
}
.access-list li dl{
  display: flex;
}
.access-list li dl dt{
  font-size: 22px;
  color: #0299FF;
  width: 100px;
  letter-spacing: 0.02em;
  margin-right: 22px;
}
.access-list li dl dd{
  font-size: 22px;
  letter-spacing: 0.02em;
  width: calc(100% - 100px - 22px);
}
.access-way-cont{
  margin-top: 90px;
}
.access-way-list{
  margin-top: 30px;
}
.access-way-list li{
  background: #F6F6F6;
  border-radius: 60px 10px 10px 10px;
  margin-bottom: 30px;
}
.access-way-list li:last-of-type{
  margin-bottom: 0;
}
.access-way-wrap{
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.access-way-list li figure{
  position: relative;
  height: 150px;
}
.access-way-img{
  width: 150px;
  height: 150px;
  border-radius: 75px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.access-way-ttl{
  font-size: 17px;
  background: #0299FF;
  color: #fff;
  padding: 7px 0 8px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0;
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  width: 150px;
  text-align: center;
}


/*-------- プライバシーポリシー --------*/
.privacy_cont .sub-top{
  background-image: url(../images/privacy/privacy-title-bg.webp);
}
.privacy_cont1_wrap{
  display: inline-block;
}
.privacy_cont1_inner{
  margin: 60px auto;
  width: 720px;
  padding: 60px;
  background: #fff;
  border-radius: 72px;
}
.privacy_cont1_inner h3{
  font-size: 20px;
  padding-left: 11px;
  position: relative;
  margin-bottom: 20px;
}
.privacy_cont1_inner h3::after{
  position: absolute;
  left: 0;
  top: 3px;
  content: '';
  background: #41B2FF;
  width: 6px;
  height: calc(100% - 5px);
}
.privacy_cont1_inner p{
  margin-bottom: 40px;
  letter-spacing: 0;
}
.privacy_cont1_inner h4{
  color: #0299FF;
  margin-bottom: 5px;
}
.privacy_cont1_inner p:nth-of-type(3),.privacy_cont1_inner p:nth-of-type(7){
  margin-bottom: 20px;
}
.privacy_cont1_inner ul,.privacy_cont1_inner ol{
  margin-bottom: 40px;
}
.privacy_cont1_inner ul li,.privacy_cont1_inner ol li{
  font-size: 17px;
  margin-bottom: 5px;
}
.privacy_cont1_inner ul li:last-of-type,.privacy_cont1_inner ol li:last-of-type{
  margin-bottom: 0;
}


/*-------- 確定申告・相続支援 --------*/
.support_cont .sub-top{
  background-image: url(../images/support/support-title-bg.webp);
}
.support_cont1_inner,.opening_cont1_inner,.flow_cont1_inner{
  padding-bottom: 100px;
}
.support_cont2_wrap.dot-bg{
  background: linear-gradient(rgb(246 246 246 / 40%), rgba(246, 246, 246, 0.4)), url(../images/succession/dot-bg.svg);
}
.support_cont2_inner{
  width: 840px;
  margin: 0 auto;
  padding: 60px 0;
}
.support_cont2_inner h2{
  margin-bottom: 60px;
}
.life-support-list{
  display: flex;
  justify-content: space-between;
}
.life-support-list li{
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: calc(400px - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.life-support-title{
  text-align: center;
  font-size: 22px;
  margin-top: 5px;
  color: #0299FF;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.block-list{
  margin-top: 30px;
  margin-bottom: 25px;
  width: 100%;
  height: 87px;
}
.life-support-list .block-list li{
  padding: 0 0 0 12px;
  position: relative;
  font-size: 17px;
  margin: 5px 0;
  line-height: 1.76em;;
  display: block;
  letter-spacing: 0;
}
.life-support-list .block-list li::after{
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: rgba(2,153,255,0.6);
  position: absolute;
  left: 0;
  top:12px;
  content: '';
}
.life-support-text{
  padding-top: 30px;
  position: relative;
  letter-spacing: 0;
}
.life-support-text::after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  color: #0299FF;
  background-image: url(../images/support/dot-line.svg);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 13px 3px;
  content: '';
  z-index: 1;
}
.life-support-text::before{
  width: 18px;
  height: 17px;
  background: url(../images/support/arrow-blue.svg),linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  top:-7px;
  left: calc(50% - 9px);
  position: absolute;
  z-index: 2;
  padding: 0 6px;
}
.support_cont3_inner{
  padding: 100px 0 160px;
  width: 1100px;
  margin: 0 auto;
}
.support_cont3_inner h2{
  margin-bottom: 60px;
}
.inheritance-list{
  display: flex;
  justify-content: space-between;
}
.inheritance-list li{
  background: #EFF8FF;
  border: 2px solid #0299FF;
  border-radius: 60px 10px 10px 10px;
  padding: 40px 20px;
  width: calc(((100% - 80px) / 3) - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inheritance-list li p{
  margin-top: 30px;
  letter-spacing: 0.05em;
}
.support_cont4_inner,.taxation_cont6_inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.support_cont4_inner figcaption,.taxation_cont6_inner figcaption{
  background: rgba(246,246,246,0.4);
  border-radius: 0 72px 72px 0;
  width: calc(100% - 24px - 30px);
  padding: 54px 0 50px;
}
.support_cont4_inner figcaption .figcaption-wrap,.taxation_cont6_inner figcaption .figcaption-wrap{
  width: 1160px;
  margin: 0 auto;
}
.blue-line-ttl{
  font-size: 34px;
  line-height: 1.7em;
  letter-spacing: 0.1em;
  background: linear-gradient(transparent 75%, rgba(65,178,255,0.4) 75%, rgba(65,178,255,0.4) 90%, transparent 90%);
}
.support_cont4_inner .end-txt,.taxation_cont6_inner .end-txt{
  font-size: 19px;
  line-height: 1.78em;
  margin-top: 48px;
  letter-spacing: 0.1em;
  width: 52vw;
}
.support_cont4_inner figure.strength-cont-img,.taxation_cont6_inner figure.strength-cont-img{
  margin-top: 70px;
  margin-bottom: inherit;
}
@media screen and (max-width: 1380px){
  .support_cont4_inner .end-txt,.taxation_cont6_inner .end-txt{
    /*width: 56%;*/
  }
}

/*-------- 開業支援 --------*/
.opening_cont .sub-top{
  background-image: url(../images/opening/opening-title-bg.webp);
}
.opening_cont2_inner{
  padding: 50px 0 80px;
  width: 1175px;
  margin: 0 auto;
}
.opening_cont2_inner h2{
  margin-bottom: 100px;
}
.opening_cont2_inner .opening-support-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.opening-support-list > li{
  width: calc(((100% - 50px) / 3) - 70px);
  padding: 50px 30px 30px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  background: #fff;
  margin: 0 12px;
}
.opening-support-list > li:nth-of-type(4),.opening-support-list > li:nth-of-type(5){
  margin-top: 40px;
}
.opening-support-list > li dl{
  width: 100%;
  position: relative;
}
.opening-support-list > li dl dt{
  background: #0299FF;
  border-radius: 30px 30px 0 30px;
  color: #fff;
  text-align: center;
  width: 280px;
  height: 65px;
  line-height: 65px;
  position: absolute;
  top: -65px;
  left: calc(50% - 140px);
  font-size: 22px;
}
.opening-support-list > li dl dd figure{
  height: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.opening-limeit{
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #F0F0F0;
  font-size: 17px;
  color: #024F84;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25px;
  left: 0;
  letter-spacing: 0;
  line-height: 1.4em;
}
.opening-support-list .block-list{
  margin: 0;
}
.opening-support-list .block-list li{
  position: relative;
  margin: 0;
  padding: 0 0 0 12px;
  position: relative;
  font-size: 17px;
  margin: 5px 0;
  line-height: 1.76em;;
  display: block;
  letter-spacing: 0;
}
.opening-support-list .block-list li::after{
  background: rgba(2,79,132,0.4);
  width: 7px;
  height: 7px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top:12px;
  content: '';
}
.opening_cont3_wrap{
  width: 100%;
  margin: 0;
  padding: 0;
}
.opening_cont3_bg{
  line-height: 0;
  position: relative;
  z-index: 1;
}
.opening_cont3_bg img{
  width: 100%;
}
.opening_cont3_content{
  background: #F0F0F0;
  padding-bottom: 70px;
}
.opening_cont3_content_inner{
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 56px 0;
  margin-top: -100px;
  z-index: 5;
  position: relative;
}
.opening_cont3_content_inner h3{
  font-size: 28px;
  color: #0299FF;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.opening_cont3_cta{
  background: #FAFAFA;
  width: 920px;
  margin: 50px auto 0;
  padding: 36px 0;
  border-top: 2px dashed #E8E8E8;
  border-bottom: 2px dashed #E8E8E8;
}
.opening_cont3_cta p{
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
.opening_cont3_cta .btn-contact{
  width: 284px;
  margin: 0 auto;
  font-size: 17px;
  justify-content: center;
  padding: 12px 10px 13px;
  letter-spacing: 0.05em;
}
.opening_cont3_cta br.ssp_br{
  display: none;
}


/*-------- 支援の流れ --------*/
.flow_cont .sub-top{
  background-image: url(../images/flow/flow-title-bg.webp);
}
.flow_cont2_inner{
  padding: 60px 0 100px;
  position: relative;
}
.flow_cont2_inner h2{
  margin-bottom: 80px;
}
.step-list-wrap{
  background: rgba(240,240,240,0.4);
  border-radius: 0 90px 90px 0;
  margin: 0 auto 0 0;
  width: calc(100% - ((100% - 1160px) / 2));
}
.step-list-wrap .step-list{
  padding: 90px 60px 90px 0;
  margin: 0 0 0 auto;
  width: 1100px;
  position: relative;
}
.step-list-wrap .step-list::after{
  height: calc(100% - 404px);
  width: 2px;
  background: #41B2FF;
  position: absolute;
  top: 90px;
  left: 44px;
  content: '';
  z-index: 1;
}
.step-list-wrap .step-list li{
  position: relative;
  margin-bottom: 100px;
  z-index: 2;
}
.step-list-wrap .step-list li:last-child{
  margin-bottom: 0;
}
.step-list-inner{
  display: flex;
  align-items: flex-start;
  position: relative;
}
.step-list-inner > img{
  margin-right: 40px;
  flex-shrink: 0;
}
.step-list-cont-wrap{
  display: flex;
  flex: 1;
  position: relative;
  height: 313px;
}
.step-list-cont{
  flex: 1;
  max-width: 680px;
}
.step-list-cont-wrap > figure{
  position: absolute;
  right: calc(((100vw - 1160px) / 2 * -1) - 50px);
  top: 0;
  width: auto;
  max-width: 538px;
  margin-right: 0;
}
.step-list-cont-wrap > figure img{
  width: 100%;
  height: auto;
  display: block;
}
.step-list-cont .step-list-no{
  color: #41B2FF;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.step-list-cont .step-list-ttl{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  color: #014F84;
  line-height: 1.2em;
}
.step-list-cont .step-list-txt{
  letter-spacing: 0.1em;
}
.step-cta-wrap{
  margin: 60px 0 100px auto;
  position: relative;
  width: 990px;
}
.step-cta-inner{
  background: #014F84;
  border-radius: 20px;
  padding: 40px 80px 50px;
  position: relative;
  overflow: hidden;
}
.step-cta-inner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/flow/flow-cta-bg.webp);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}
.step-cta-ttl{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.step-cta-contact-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 75px;
  position: relative;
  z-index: 1;
}
.step-contact-tel{
  width: calc(100 - 75px - 404px);
}
.step-contact-tel-header{
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.step-contact-label-ja{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-right: 15px;
}
.step-contact-tel-icon{
  width: 50px;
  height: 60px;
}
.step-contact-number{
  display: block;
  margin-bottom: 16px;
}
.step-contact-number img{
  height: 35px;
  width: auto;
}
.step-contact-hours{
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.05em;
}
.step-contact-form-box{
  flex: 1;
  background: #fff;
  border-radius: 15px;
  padding: 40px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-contact-form-icon{
  width: 50px;
  height: 35px;
  margin-bottom: 16px;
}
.step-contact-form-text{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-contact-form-box .btn-form{
  margin-top: auto;
  width: 100%;
  font-size: 17px;
}
.flow_cont3_inner{
  padding: 60px 0;
  width: 1080px;
  margin: 0 auto;
}
.flow-support-list{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.flow-support-list figure{
  position: relative;
  z-index: 0;
  width: 100%;
}
.flow-support-list figure img{
  width: 100%;
}
.flow-support-list figcaption{
  background: #EFF8FF;
  border-radius: 0 60px 0 60px;
  padding: 32px 20px;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.6em;
  text-align: center;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.flow_cont4_wrap{
  background: url(../images/flow/sec4-1.webp) no-repeat center center;
  height: 547px;
  width: 100%;
  background-size: cover;
  margin-top: 100px;
}
.flow_cont4_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
.flow-end-txt{
  background: rgba(255,255,255,0.6);
  padding: 30px 0;
  width: 100%;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.flow-end-cta{
  width: 620px;
  border-radius: 90px 0 0 90px;
  background: rgba(255,255,255,0.9);
}
.flow-end-cta .flow-end-cta-ttl{
  background: #014F84;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 30px 0;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  border-radius: 90px 0 0 0;
}
.flow-end-cta-cont{
  padding: 40px 0;
}
.flow-end-cta-txt{
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
.flow-end-cta-btn{
  font-family: "Montserrat", sans-serif;
  margin: 0 auto 10px;
  display: block;
  width: fit-content;
  font-size: 34px;
  color: #014F84!important;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.flow-end-cta-btn span{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #41B2FF;
  margin-right: 8px;
}
.flow-end-cta-cont .btn-form{
  max-width: 320px;
  padding: 22px 30px;
  font-size: 17px;
  border-radius: 35px;
}
.flow-end-cta-txt2{
  color: #014F84;
  margin-top: 20px;
  text-align: center;
}
.flow-end-cta-txt2 span.bold{
  margin-right: 8px;
}
.step-list-wrap br.ssp_br{
  display: none;
}
.flow_cont4_wrap .ssp_br{
  display: none;
}
@media screen and (max-width: 1540px){
  .step-list-cont .step-list-txt{
    width: 75%;
  }
}


/*-------- 決算・税務申告 --------*/
.taxation_cont .sub-top{
  background-image: url(../images/taxation/taxation-title-bg.webp);
}
.taxation_cont2_wrap,.taxation_cont3_wrap,.taxation_cont4_wrap,.taxation_cont5_wrap{
  width: 100%;
  padding: 0;
  margin: 0;
}
.taxation_cont2_inner{
  width: 1160px;
  margin: 0 auto;
  padding: 70px 0 100px;
}
.taxation_cont3_inner{
  width: 1160px;
  margin: 0 auto;
  padding: 0 0 50px;
}
.taxation_cont3_inner h2{
  margin-bottom: 100px;
}
.service-content-block{
  padding-bottom: 60px;
  border-bottom: 2px dashed rgba(51,51,51,0.2);
  margin-bottom: 60px;
}
.service-content-block:nth-of-type(4){
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.service-content-block p{
  margin-top: 24px;
  letter-spacing: 0.1em;
  line-height: 2em;
}
.service-content-block:nth-of-type(4) p:last-of-type{
  margin-top: 0;
}
.service-content-block-strong{
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  color: #0299FF;
}
.service-content-diagnosis{
  width: 895px;
  margin: 40px auto 0;
  background: #F6F6F6;
  border-radius: 10px;
  padding: 40px 60px 60px;
}
.service-content-diagnosis-flex{
  display: flex;
  margin-top: 40px;
}
.taxation_cont .opening_cont3_content_inner h3{
  margin-bottom: 24px;
}
.taxation_cont .opening_cont3_content_inner .double-line-ttl{
  margin: 30px auto 35px;
}
.taxation-diagnosis-list{
  margin: 0 auto;
  width: 1125px;
  display: flex;
  justify-content: space-between;
}
.taxation-diagnosis-list li{
  background: #EFF8FF;
  width: calc((100% - 45px) / 4);
  padding: 30px 0;
  position: relative;
}
.taxation-diagnosis-list li::after{
  position: absolute;
  background: url(../images/taxation/memo-hasi.svg)no-repeat;
  width: 19px;
  height: 19px;
  right: 0;
  bottom: 0;
  content: '';
}
.taxation-diagnosis-list li dl dt{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0299FF;
  margin-bottom: 20px;
}
.taxation-diagnosis-list li dl dd{
  letter-spacing: 0;
  opacity: 0.8;
  line-height: 1.7em;
}
.taxation_cont5_inner{
  padding: 120px 0;
}
.taxation_cont5_inner h2{
  margin-bottom: 80px;
}
.taxation_cont5_content{
  padding: 60px 0;
}
.difference-list{
  display: flex;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  margin-bottom: 60px;
}
.difference-list:last-of-type{
  margin-bottom: 0;
}
.difference-list figcaption{
  width: calc(100% - 560px - 80px - ((100% - 1200px) / 2));
  margin-left: 80px;
  padding-top: 40px;
  padding-right: calc((100% - 1200px) / 2);
}
.difference-ttl{
  font-size: 34px;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  background: linear-gradient(transparent 75%, rgba(65,178,255,0.4) 75%, rgba(65,178,255,0.4) 90%, transparent 90%)
}
.difference-list figcaption dl dd{
  letter-spacing: 0.05em;
  line-height: 1.7em;
  margin-top: 40px;
  opacity: 0.8;
}