@charset "UTF-8";
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
* {
  font-family: lato, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #222;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

main {
  margin-top: 100px;
}

/* ヘッダー **************************************** */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  background: #fff;
  opacity: 1;
}
header #header-wrap {
  padding: 20px 8.58% 20px 5.58%;
  display: flex;
  justify-content: space-between;
	align-items:center;
}
header #header-wrap h1 {
  width: 193px;
  height: auto;
  position: relative;
  z-index: 2;
}
header #header-wrap h1 a {
  display: block;
  height: auto;
  width: 100%;
}
header #header-wrap nav {
  position: absolute;
  left: 4px;
  right: 0;
  top: 41px;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}
header #header-wrap nav ul {
  display: flex;
  justify-content: space-between;
}
header #header-wrap nav ul li a {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-right: 62px;
  transition: 0.5s;
  position: relative;
}
header #header-wrap nav ul li a:nth-child(4) {
  margin-right: 0;
}
header #header-wrap nav ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #006b67;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s;
  opacity: 0;
}
header #header-wrap nav ul li a:hover {
  transition: 0.5s;
  color: #006b67;
}
header #header-wrap nav ul li a:hover::after {
  opacity: 1;
  transition: 0.5s;
}
header #header-wrap nav ul li:nth-child(4) a {
  margin-right: 0;
}

.top_header {
  opacity: 1;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
#nav-wrapper {
  width: 100px;
  height: 100px;
  background: #006b67;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.hamburger {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 32px;
  height: 1px;
  right: 0;
  background-color: #fff;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 2px;
}

.hamburger__line--2 {
  top: 8px;
}

.hamburger__line--3 {
  top: 14px;
  width: 20px;
}

.hamburger__text {
  position: absolute;
  bottom: 1px;
  left: 3px;
  font-size: 10px;
  color: #fff;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-20deg);
  top: 8px;
}

.open .hamburger__line--2 {
  transform: rotate(20deg);
  top: 8px;
}

.open .hamburger__line--3 {
  opacity: 0;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 80.6%;
  /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #006b67;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  padding: 147px 8% 120px 8%;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

.sp-nav div ul li {
  margin-bottom: 30px;
}
.sp-nav div ul li a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.039em;
  color: #fff;
}
.sp-nav div ul li:nth-child(1) {
  margin-bottom: 38px;
}
.sp-nav div ul li:nth-child(1) a {
  font-size: 24px;
  font-weight: bold;
}
.sp-nav .nav-top {
  margin-bottom: 76px;
}
.sp-nav .nav-mid {
  display: flex;
  margin-bottom: 63px;
}
.sp-nav .nav-mid ul:nth-child(1) {
  width: 32.4%;
}
.sp-nav .nav-mid ul:nth-child(2) {
  width: 42.7%;
}
.sp-nav .nav-mid ul:nth-child(3) {
  width: 24.9%;
}
.sp-nav .nav-btm ul {
  display: flex;
  justify-content: space-between;
  padding-right: 13%;
}
.sp-nav .nav-btm ul li a {
  font-size: 24px;
  font-weight: bold;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

.hdr-lang_btn {
  position: absolute;
  top: 37px;
  right: calc(100px + 6.95%);
  z-index: 2;
  cursor: pointer;
}
.hdr-lang_btn p {
  display: flex;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.09em;
  padding: 4px 12px;
}
.hdr-lang_btn p img:nth-child(1) {
  width: 14px;
  height: auto;
  margin-right: 5px;
}
.hdr-lang_btn p img:nth-child(2) {
  width: 7px;
  height: auto;
  margin-top: 7px;
  margin-left: 5px;
}
.hdr-lang_btn div {
  opacity: 0;
  transition: 0.3s;
  margin-top: 4px;
  pointer-events: none;
  height: 0px;
}
.hdr-lang_btn div a {
  display: block;
  border: solid 2px #006b67;
  background: #fff;
  padding: 4px 12px;
  text-align: center;
}
.hdr-lang_btn div a:nth-child(2) {
  border-top: none;
}

.hdr-lang_btn.show div {
  opacity: 1;
  transition: 0.3s;
  height: auto;
  pointer-events: all;
}

.link_service-diagnosis {
  position: fixed;
  top: 132px;
  right: 34px;
  width: 174px;
  height: auto;
  padding: 11px 0 13px 23px;
  color: #006b67;
  background: #fff;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  transition: 0.5s;
  box-shadow: 0 0 5px rgba(50, 50, 50, 0.09), 0 0 5px rgba(50, 50, 50, 0.09), 0 0 5px rgba(50, 50, 50, 0.09);
}
.link_service-diagnosis img {
  width: 13px;
  margin-right: 11px;
  position: absolute;
  left: 30px;
}
.link_service-diagnosis img:nth-child(1) {
  opacity: 1;
  transition: 0.5s;
}
.link_service-diagnosis img:nth-child(2) {
  opacity: 0;
  transition: 0.5s;
}
.link_service-diagnosis:hover {
  background: #006b67;
  color: #fff;
  transition: 0.5s;
}
.link_service-diagnosis:hover img:nth-child(1) {
  opacity: 0;
  transition: 0.5s;
}
.link_service-diagnosis:hover img:nth-child(2) {
  opacity: 1;
  transition: 0.5s;
}

/* フッター **************************************** */
#footer-wrap {
  padding: 116px 0 0 0;
  position: relative;
  background: #ededed;
}
#footer-wrap ul {
  display: flex;
  justify-content: space-between;
}
#footer-wrap ul:nth-child(1) {
  max-width: 915px;
  margin: 0 auto;
  margin-bottom: 34px;
}
#footer-wrap ul:nth-child(1) li a {
  font-size: 16px;
  letter-spacing: 0.039em;
  font-weight: bold;
}
#footer-wrap ul:nth-child(2) {
  max-width: 554px;
  margin: 0 auto;
  margin-bottom: 114px;
  transform: translateX(6px);
}
#footer-wrap ul:nth-child(2) li a {
  font-size: 12px;
  font-weight: bold;
  color: #4d4d4d;
  letter-spacing: 0.039em;
}
#footer-wrap ul a {
  position: relative;
}
#footer-wrap ul a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #006b67;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s;
  opacity: 0;
}
#footer-wrap ul a:hover {
  transition: 0.5s;
  color: #006b67;
}
#footer-wrap ul a:hover::after {
  opacity: 1;
  transition: 0.5s;
}
#footer-wrap div {
  position: absolute;
  right: 5.58%;
  bottom: 64px;
}
#footer-wrap div img {
  width: 52px;
  height: 52px;
}
#footer-wrap small {
  display: block;
  width: 100%;
  height: auto;
  background: #006d68;
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 32px;
  font-weight: bold;
  letter-spacing: 0.16em;
  padding-right: 8px;
}

/* パンくずリスト **************************************** */
#breadcrumb {
  width: 100%;
  height: 50px;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
}
#breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1336px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  margin-top: -2px;
}
#breadcrumb ul li {
  margin-right: 10.8px;
}
#breadcrumb ul li a span {
  font-size: 14px;
  color: #cbcbcb;
  display: inline-block;
  padding-right: 12px;
}
#breadcrumb ul li a i {
  font-size: 10px;
  transform: scale(0.64);
  color: #cbcbcb;
}
#breadcrumb ul li span {
  font-size: 14px;
  color: #333;
}

/* 下層fv **************************************** */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

#under_fv {
  position: relative;
  width: 100%;
  height: 480px;
  z-index: 1;
}
#under_fv img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
#under_fv h1 {
  position: absolute;
  top: 40%;
  left: 42.2%;
  z-index: 5;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 52px;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
#under_fv h1 span {
  display: block;
  font-size: 24px;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 25px;
  color: #fff;
}
#under_fv::before {
  position: absolute;
  z-index: 3;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 109, 104) 0%, rgb(255, 255, 255) 83.93%);
  opacity: 0.4;
}
#under_fv::after {
  position: absolute;
  z-index: 4;
  content: "";
  width: 28.91%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: url(../image/common/under-fv_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

/* footer ctaセクション **************************************** */
#footer_cta {
  width: 100%;
  height: 480px;
}
#footer_cta ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer_cta ul li {
  width: 41.66%;
  height: 100%;
}
#footer_cta ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 151px 9.76% 30px 9.76%;
  z-index: 0;
  overflow: hidden;
}
#footer_cta ul li a::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url(../image/common/cta_img.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s;
}
#footer_cta ul li a:hover::after {
  transform: scale(1.1);
  transition: 0.3s;
}
#footer_cta ul li a:hover span .footer-wrap_cta_arrow span::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}
#footer_cta ul li a span {
  position: relative;
  z-index: 3;
  display: inline-block;
}
#footer_cta ul li a span h2 {
  font-size: 44px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
#footer_cta ul li a span p {
  color: #fff;
  font-size: 18px;
  line-height: 1.66;
  margin-bottom: 61px;
}
#footer_cta ul li a span .footer-wrap_cta_arrow {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
#footer_cta ul li a span .footer-wrap_cta_arrow span {
  position: relative;
  color: #fff;
}
#footer_cta ul li a span .footer-wrap_cta_arrow span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  transition-delay: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
#footer_cta ul li a span .footer-wrap_cta_arrow figure {
  margin-left: 15px;
  width: 40px;
}
#footer_cta ul li a span .footer-wrap_cta_arrow figure img {
  width: 100%;
  object-fit: cover;
}
#footer_cta ul li:nth-of-type(2) {
  width: 58.34%;
  height: 100%;
}
#footer_cta ul li:nth-of-type(2) a {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 151px 9.76% 30px 9.76%;
  box-sizing: border-box;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  background-color: #006b67;
}
#footer_cta ul li:nth-of-type(2) a::after {
  display: none;
}
#footer_cta ul li:nth-of-type(2) a span h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 21px;
}
#footer_cta ul li:nth-of-type(2) a span p {
  color: #fff;
  font-size: 18px;
  line-height: 1.66;
  margin-bottom: 30px;
}
#footer_cta ul li:nth-of-type(2) a span .footer-wrap_cta_arrow {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
#footer_cta ul li:nth-of-type(2) a span .footer-wrap_cta_arrow span {
  position: relative;
  z-index: 3;
  display: inline-block;
}
#footer_cta ul li:nth-of-type(2) a span .footer-wrap_cta_arrow span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 100%;
  height: 2px;
  background: #006b67;
  transition: all 0.3s;
  transition-delay: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
#footer_cta ul li:nth-of-type(2) a span .footer-wrap_cta_arrow .hover_on {
  margin-left: 15px;
  width: 40px;
}
#footer_cta ul li:nth-of-type(2) a span .footer-wrap_cta_arrow .hover_on img {
  width: 100%;
  object-fit: cover;
}
#footer_cta ul li:nth-of-type(2) a span .footer-wrap_cta_arrow .hover_off {
  display: none;
}
#footer_cta ul li:nth-of-type(2) a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
#footer_cta ul li:nth-of-type(2) a:hover span h2 {
  color: #006b67;
}
#footer_cta ul li:nth-of-type(2) a:hover span p {
  color: #006b67;
}
#footer_cta ul li:nth-of-type(2) a:hover span .footer-wrap_cta_arrow {
  color: #006b67;
}
#footer_cta ul li:nth-of-type(2) a:hover span .footer-wrap_cta_arrow span {
  color: #006b67;
}
#footer_cta ul li:nth-of-type(2) a:hover span .footer-wrap_cta_arrow span::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}
#footer_cta ul li:nth-of-type(2) a:hover span .footer-wrap_cta_arrow .hover_on {
  display: none;
}
#footer_cta ul li:nth-of-type(2) a:hover span .footer-wrap_cta_arrow .hover_off {
  display: block;
  width: 40px;
  margin-left: 15px;
}
#footer_cta ul li:nth-of-type(2) a:hover span .footer-wrap_cta_arrow .hover_off img {
  width: 100%;
  object-fit: cover;
}
#footer_cta ul li:nth-of-type(2) a::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s linear 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
#footer_cta ul li:nth-of-type(2) a span {
  position: relative;
  z-index: 3;
  color: #fff;
}
#footer_cta ul li:nth-of-type(2) a span h2 {
  color: #fff;
}
#footer_cta ul li:nth-of-type(2) a span p {
  color: #fff;
}
#footer_cta ul li:nth-of-type(2) a span .footer-wrap_cta_arrow {
  color: #fff;
  display: flex;
}

.fadein {
  transform: translateY(40px);
  opacity: 0;
}

.fadein.active {
  opacity: 1;
  transition: 0.5s;
  transform: translateY(0px);
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

.loading_wrap {
  background-color: #006b67;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #006b67;
  z-index: 100;
}
.loading_wrap .spin_wrap {
  position: relative;
  z-index: 10002;
  width: 120px;
  height: 120px;
}
.loading_wrap .spin_wrap .box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10003;
}
.loading_wrap.loaded {
  display: none;
}
.loading_wrap.loading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead_text {
  position: absolute;
  top: 448px;
  left: 8.3%;
  color: #fff;
}
.lead_text h2 {
  font-size: 56px;
  letter-spacing: 0.08em;
  visibility: hidden;
  margin-bottom: 55px;
  text-shadow: 0px 0px 4px rgba(34, 34, 34, 0.72);
  font-weight: 600;
  color: #fff;
}
.lead_text p {
  font-size: 18px;
  line-height: 1.882em;
  letter-spacing: 0.12em;
  visibility: hidden;
  text-shadow: 0px 0px 4px rgba(34, 34, 34, 0.72);
  font-weight: 600;
  color: #fff;
  margin-top: -16px;
  padding-left: 6px;
}
.lead_text.loaded {
  z-index: 90;
}
.lead_text.loaded h2 {
  visibility: visible;
}
.lead_text.loaded p {
  visibility: visible;
}

.tri_wrap {
  width: 100vw;
  height: 100vh;
  max-height: 766px;
  position: absolute;
  margin-top: auto;
  z-index: 10;
}

.tri_wrap li {
  position: absolute;
}

.tri_wrap li:nth-child(odd) {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  bottom: 0;
  background: #006b67;
}

.tri_wrap li:nth-child(1) {
  left: 0px;
  opacity: 0.6;
  width: 328px;
  height: 764px;
}

.tri_wrap li:nth-child(3) {
  opacity: 0.4;
  width: 480px;
  height: 1118px;
}

.tri_wrap li:nth-child(5) {
  width: 623px;
  height: 1453px;
  opacity: 0.2;
}

.tri_wrap li:nth-child(even) {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  top: 0;
  background: #666565;
  height: 100%;
}

.tri_wrap li:nth-child(2) {
  left: 0;
  opacity: 0.4;
  width: 328px;
  height: 764px;
}

.tri_wrap li:nth-child(4) {
  opacity: 0.2;
  width: 480px;
  height: 1118px;
}

.tri_wrap li:nth-child(6) {
  opacity: 0.1;
  width: 623px;
  height: 1453px;
}

#top-page {
  margin-top: 0;
}

#top-page_mv {
  overflow: hidden;
  height: 100vh;
  max-height: 766px;
  position: relative;
  z-index: 10;
}

#top-page_mv .mv_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#top-page_mv .mv_bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#top-page_mv .mv_bg video {
  width: 100%;
  height: auto;
}

#top-page_mv .mv_mask {
  z-index: 9;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
}

#top-page_news {
  padding: 157px 0 118px 0;
  background: #fcfcfc;
}
#top-page_news h2 {
  font-size: 48px;
  letter-spacing: 0.039em;
  color: #006b67;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 116px;
}
#top-page_news h2::before {
  content: "NEWS";
  font-size: 160px;
  letter-spacing: 0.16em;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgba(0, 107, 104, 0.2);
  text-stroke: 2px rgba(0, 107, 104, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: -133%;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
#top-page_news ul {
	width:98%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 79px;
}
#top-page_news ul li {
  width: 33.33%;
}
#top-page_news ul li a {
  display: block;
  padding: 49px 45px 48px 33px;
  transition: 0.5s;
}
#top-page_news ul li a .date {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #666666;
  margin-bottom: 31px;
}
#top-page_news ul li a h3 {
  font-size: 18px;
  margin-bottom: 13px;
  line-height: 1.75em;
  font-weight: bold;
  letter-spacing: 0.039em;
}
#top-page_news ul li a p {
  display: flex;
  font-size: 16px;
  color: #006b67;
  font-weight: bold;
  letter-spacing: 0.039em;
  padding-left: 2px;
}
#top-page_news ul li a p img {
  width: 72px;
  height: auto;
  margin-top: 1px;
  margin-left: 11px;
}
#top-page_news ul li a:hover {
  box-shadow: 0 0 5px rgba(50, 50, 50, 0.0862745098), 0 0 5px rgba(50, 50, 50, 0.0862745098), 0 0 5px rgba(50, 50, 50, 0.0862745098);
  transition: 0.5s;
}

#top-page_about {
  position: relative;
  padding-top: 259px;
  padding-bottom: 48px;
}
#top-page_about::before {
  content: "";
  display: block;
  width: 90%;
  height: 71%;
  background: #f1f1f1;
  position: absolute;
  right: 0;
  top: 274px;
  z-index: -1;
}
#top-page_about::after {
  content: "ABOUT US";
  font-size: 160px;
  letter-spacing: 0.16em;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgba(0, 107, 104, 0.2);
  text-stroke: 2px rgba(0, 107, 104, 0.2);
  display: inline-block;
  position: absolute;
  right: -27.6%;
  top: 43%;
  margin: auto;
  z-index: 1;
  transform: rotate(90deg);
}
#top-page_about .top-page_about_titile_wrap {
  padding-left: 5.58%;
  margin-bottom: 139px;
}
#top-page_about .top-page_about_titile_wrap h2 {
  font-size: 44px;
  color: #006b67;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 70px;
}
#top-page_about .top-page_about_titile_wrap p {
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 1.875em;
  font-weight: bold;
}
#top-page_about .top-page_about_detail {
  display: flex;
  justify-content: space-between;
}
#top-page_about .top-page_about_detail figure {
  width: 45%;
  height: auto;
  max-width: 640px;
  transform: translate(-100px, 0);
  opacity: 0;
}
#top-page_about .top-page_about_detail p {
  width: 50.2%;
  padding-left: 5.2%;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.039em;
  margin-top: -7px;
  padding-right: 9.9%;
}
#top-page_about .top-page_about_detail p .btn_view-all {
  margin-left: 2px;
  margin-top: 187px;
  padding: 7px 25px 8px 32px;
}

#top-page_service {
  position: relative;
  padding: 112px 0 78px 0;
}
#top-page_service::before {
  content: "";
  display: block;
  width: 88.8%;
  height: 89.7%;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  top: 202px;
  z-index: -1;
}
#top-page_service .top-page_service_text_wrap {
  padding: 0px 5.58%;
  position: relative;
}
#top-page_service .top-page_service_text_wrap h2 {
  font-size: 44px;
  color: #006b67;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 73px;
}
#top-page_service .top-page_service_text_wrap p {
  font-size: 20px;
  letter-spacing: 0.039em;
  line-height: 30px;
  font-weight: bold;
}
#top-page_service .top-page_service_text_wrap p span {
  display: block;
  margin-top: 36px;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2;
  font-weight: 500;
}
#top-page_service .top-page_service_text_wrap::after {
  content: "SERVICES";
  font-size: 160px;
  letter-spacing: 0.16em;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgba(0, 107, 104, 0.2);
  text-stroke: 2px rgba(0, 107, 104, 0.2);
  display: inline-block;
  position: absolute;
  right: 1%;
  top: -28px;
  margin: auto;
  z-index: 1;
  transform-origin: 0 0;
}
#top-page_service ul {
  padding: 93px 19% 0 12.5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top-page_service ul li {
  width: 400px;
  height: 520px;
  margin-bottom: 49px;
  position: relative;
  transform: translate(-100px, 0px);
  opacity: 0;
}
#top-page_service ul li h4 {
  position: absolute;
  left: -21.7%;
  top: 56px;
  transform: rotate(90deg);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #006b67;
  display: flex;
  align-items: center;
  font-family: bree, sans-serif;
  font-weight: 200;
  font-style: normal;
}
#top-page_service ul li h4 span {
  display: block;
  width: 28px;
  height: 1px;
  background: #006b67;
  margin-left: 21px;
}
#top-page_service ul li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#top-page_service ul li a img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
#top-page_service ul li a:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
#top-page_service ul li::after {
  content: "少額短期保険";
  position: absolute;
  bottom: -26px;
  left: 0;
  background: #006b67;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.039em;
  padding: 13px 16% 15px 15.5%;
}
#top-page_service ul li:nth-child(2) {
  margin-top: 71px;
}
#top-page_service ul li:nth-child(2)::after {
  content: "キャプティブ";
  padding: 13px 16% 15px 16.1%;
}
#top-page_service ul li:nth-child(3)::after {
  content: "共済・事業協同組合";
  padding: 13px 4.4% 15px 5.2%;
}
#top-page_service ul li:nth-child(4) {
  margin-top: 71px;
  margin-bottom: 0;
}
#top-page_service ul li:nth-child(4)::after {
  content: "再保険・企業保険";
  padding: 13px 8.4% 15px 8.1%;
}
#top-page_service .btn_view-all {
  margin: auto;
  margin-left: 12.5%;
  margin-top: 25px;
  padding: 7px 25px 8px 32px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

#top-page_success {
  position: relative;
  padding: 162px 5.58% 0 5.58%;
}
#top-page_success h2 {
  font-size: 44px;
  color: #006b67;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
}
#top-page_success h2 span {
  font-size: 20px;
  letter-spacing: 0.039em;
  line-height: 30px;
  font-weight: bold;
  padding-left: 5.4%;
  padding-top: 2px;
}
#top-page_success p {
  margin-top: 36px;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2em;
  font-weight: 500;
}
#top-page_success .slider {
  width: 106vw;
  margin-top: 80px;
  margin-left: -9.7%;
  margin-bottom: 80px;
}
#top-page_success .slider li {
  margin: 0 16px;
}
#top-page_success .slider li a {
  display: block;
  width: 100%;
  height: 100%;
}
#top-page_success .slider li a figure {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.619/1;
}
#top-page_success .slider li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-page_success .slider li a figure::after {
  content: "";
  display: block;
  width: 94%;
  height: 100%;
  position: absolute;
  left: 3%;
  top: 9px;
  z-index: -1;
  background: #000;
  opacity: 0.15;
  filter: blur(6px);
}
#top-page_success .slider li a h3 {
  display: flex;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 30px;
  font-weight: bold;
  margin-top: 18px;
  position: relative;
  padding-right: 36px;
}
#top-page_success .slider li a h3 .anime_btn {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 6px;
}
#top-page_success .slider li a h3 .anime_btn div {
  width: 24px;
  height: 24px;
}
#top-page_success .slider li a h3 .anime_btn div .circle_wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#top-page_success .slider li a h3 .anime_btn div .circle_wrap svg .circle_front {
  fill: none;
  stroke: #f1f1f1;
  stroke-miterlimit: 10;
  overflow: hidden;
  opacity: 0.5;
  position: relative;
  stroke-width: 2;
}
#top-page_success .slider li a h3 .anime_btn div .circle_wrap svg .circle_back {
  fill: none;
  stroke: #006b67;
  stroke-miterlimit: 10;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  position: absolute;
  stroke-width: 1;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 1.4s;
  transform-origin: center;
}
#top-page_success .slider li a h3 .anime_btn div i {
  color: #006b67;
  font-size: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  text-align: center;
  margin: auto;
}
#top-page_success .slider li a p {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.039em;
  font-weight: bold;
  background: #f1f1f1;
  line-height: 1;
  padding: 9px 20px 9px 19px;
  margin-top: 18px;
}
#top-page_success .slider li a:hover .anime_btn div .circle_wrap svg .circle_back {
  stroke-dashoffset: 480;
  transform: rotate(270deg);
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1), transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
}
#top-page_success .slider .slick-arrow {
  left: unset;
  right: 100px;
  top: -228px;
  z-index: 3;
  transform: unset;
  background: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 5px 5px 14px 0px rgba(0, 0, 0, 0.16);
}
#top-page_success .slider .slick-prev {
  right: 12.9%;
  transition: 0.5s;
}
#top-page_success .slider .slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  color: #006b67;
  text-align: center;
  opacity: 1;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#top-page_success .slider .slick-prev:hover {
  background: #006b67;
  transition: 0.5s;
}
#top-page_success .slider .slick-prev:hover::before {
  color: #fff;
  transition: 0.5s;
}
#top-page_success .slider .slick-next {
  right: 8.05%;
  transition: 0.5s;
}
#top-page_success .slider .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  color: #006b67;
  opacity: 1;
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#top-page_success .slider .slick-next:hover {
  background: #006b67;
  transition: 0.5s;
}
#top-page_success .slider .slick-next:hover::before {
  color: #fff;
  transition: 0.5s;
}
#top-page_success .btn_view-all {
  margin: 0;
  padding: 7px 25px 8px 32px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

#top-page_media {
  padding: 200px 5.58% 40px 5.58%;
  margin-bottom: 140px;
  position: relative;
}
#top-page_media::before {
  content: "";
  display: block;
  width: 80.4%;
  height: 71%;
  position: absolute;
  left: 0;
  top: 200px;
  background: #f1f1f1;
  z-index: -1;
}
#top-page_media::after {
  content: "MEDIA";
  font-size: 160px;
  letter-spacing: 0.16em;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgba(0, 107, 104, 0.2);
  text-stroke: 2px rgba(0, 107, 104, 0.2);
  display: inline-block;
  position: absolute;
  left: -2%;
  top: 76%;
  margin: auto;
  z-index: -1;
  transform: rotate(-90deg);
  transform-origin: 0 0;
}
#top-page_media h2 {
  font-size: 44px;
  color: #006b67;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-top: 136px;
}
#top-page_media .btn_view-all {
  position: absolute;
  right: 5.58%;
  top: 336px;
  padding: 7px 25px 8px 32px;
}
#top-page_media ul {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
#top-page_media ul li {
  width: 31.3%;
}
#top-page_media ul li div {
  margin-top: -11px;
  position: relative;
  z-index: 2;
}
#top-page_media ul li div .cate_day {
  display: inline-block;
  background: #006b67;
  padding: 7px 26px 7px 23px;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 27px;
}
#top-page_media ul li div .cate_day span {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.039em;
  color: #fff;
}
#top-page_media ul li div .cate_day span:nth-child(1) {
  padding-right: 9px;
}
#top-page_media ul li div .cate_day span:nth-child(2) {
  padding-left: 7px;
}
#top-page_media ul li div .cate_day span .tag {
  display: inline;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.039em;
  color: #fff;
}
#top-page_media ul li div h3 {
  font-size: 24px;
  line-height: 1.75em;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 14px;
}
#top-page_media ul li div p {
  font-size: 18px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 0.039em;
}
#top-page_media ul li a figure {
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 1.619/1;
}
#top-page_media ul li a figure img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
#top-page_media ul li a:hover figure img {
  transform: scale(1.1);
  transition: 0.5s;
}

#news-single-page {
  width: 100%;
  margin-bottom: 168px;
}
#news-single-page #news-single_content {
  width: 100%;
  margin-top: 112px;
}
#news-single-page #news-single_content .news-single_content_inner {
  max-width: 1056px;
  width: 95%;
  margin: 0 auto 54px auto;
}
#news-single-page #news-single_content .news-single_content_inner h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.039em;
  line-height: 1.5;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 18px;
  padding-bottom: 18px;
}
#news-single-page #news-single_content .news-single_content_inner .date {
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 72px;
  letter-spacing: 0.08em;
  color: #d6d6d6;
}
#news-single-page #news-single_content .news-single_content_inner p {
  font-size: 18px;
  line-height: 1.72em;
  letter-spacing: 0.132em;
  padding-bottom: 28px;
}
#news-single-page #news-single_content .news-single_content_inner img {
  width: 100%;
  object-fit: contain;
  padding: 22px 0 44px;
}
#news-single-page #news-single_content .news-single_content_inner h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.039em;
  padding: 15px 0 14px 0;
}
#news-single-page #news-single_content .news-single_content_inner a {
  text-decoration: underline;
  color: #006b67;
  font-weight: 700;
}
#news-single-page #news-single_content .news-single_content_inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
}
#news-single-page #news-single_content .news-single_pagenation {
  width: 70%;
  max-width: 395.123px;
  margin: 0 auto;
  height: 35.5263px;
}
#news-single-page #news-single_content .news-single_pagenation ul {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#news-single-page #news-single_content .news-single_pagenation ul li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}
#news-single-page #news-single_content .news-single_pagenation ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
#news-single-page #news-single_content .news-single_pagenation ul li a img {
  width: 100%;
  object-fit: cover;
}
#news-single-page #news-single_content .news-single_pagenation ul .prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: -2px;
}
#news-single-page #news-single_content .news-single_pagenation ul .prev a {
  position: relative;
  font-size: 22px;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
  color: #006d68;
  font-weight: 700;
  padding-left: 33px;
}
#news-single-page #news-single_content .news-single_pagenation ul .prev a::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 13.492px;
  height: 13.1052px;
  background: url(../image/news/single_arrow_prev_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#news-single-page #news-single_content .news-single_pagenation ul .next {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: -2px;
}
#news-single-page #news-single_content .news-single_pagenation ul .next a {
  font-size: 22px;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
  color: #006d68;
  font-weight: 700;
  padding-right: 33px;
}
#news-single-page #news-single_content .news-single_pagenation ul .next a::before {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 13.492px;
  height: 13.1052px;
  background: url(../image/news/single_arrow_next_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#media-page .archive-media_fv h1 span {
  margin-top: 22px;
}
#media-page #recommended-articles {
  width: 100%;
  background-color: #f1f1f1;
  margin-bottom: 120px;
}
#media-page #recommended-articles .recommended-articles_inner {
  width: 100%;
  padding: 120px 0 102px 0;
}
#media-page #recommended-articles .recommended-articles_inner h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 82px;
}
#media-page #recommended-articles .recommended-articles_inner h2 span {
  display: block;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #006b67;
  margin-top: 19px;
  letter-spacing: 0.08em;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick {
  width: 100%;
  display: none;
  justify-content: space-between;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick.slick-initialized {
  display: flex;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list {
  width: 100%;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide {
  width: 33.3333333333%;
  aspect-ratio: 1.619/1;
  height: auto;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a:hover .thumbnail {
  overflow: hidden;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a:hover .thumbnail img {
  transform: scale(1.1);
  transition: 0.5s;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .recommended-articles_text {
  position: absolute;
  bottom: 15px;
  width: calc(100% - 50px);
  background: rgba(0, 107, 104, 0.7490196078);
  left: 0;
  padding: 12px 40px 8px 40px;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .recommended-articles_text dl {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 14px;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .recommended-articles_text dl dd {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .recommended-articles_text dl .category {
  position: relative;
  margin-right: 20px;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .recommended-articles_text dl .category::before {
  position: absolute;
  content: "|";
  top: 50%;
  transform: translateY(-50%);
  right: -13px;
  font-size: 16px;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .recommended-articles_text dl .category .tags_list .tag_slick {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.039em;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-track .slick-slide a .recommended-articles_text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  line-height: 1.66;
  letter-spacing: 0.039em;
  margin-bottom: 0;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-dots {
  bottom: -44px;
  width: 82px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}
#media-page #recommended-articles .recommended-articles_inner #recommended-articles_slick .slick-list .slick-dots li button::before {
  width: 10px;
  height: 10px;
  padding: 0;
}
#media-page #news-and-topics {
  width: 100%;
  margin-bottom: 161px;
}
#media-page #news-and-topics .news-and-topics_inner {
  max-width: 1287.91px;
  width: 90%;
  margin: 0 auto;
}
#media-page #news-and-topics .news-and-topics_inner h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 82px;
}
#media-page #news-and-topics .news-and-topics_inner h2 span {
  display: block;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #006b67;
  margin-top: 17px;
  letter-spacing: 0.08em;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li {
  width: 31.27%;
  margin-bottom: 58px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) {
  margin-left: 4px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) {
  margin-right: -4px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(3) {
  margin-left: 4px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(6) {
  margin-left: 4px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1), #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) {
  width: 48.75%;
  margin-bottom: 63px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 47px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo figure, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo figure {
  position: relative;
  width: 98.73%;
  aspect-ratio: 1.619/1;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo figure img, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo figure img {
  width: 100%;
  height: 100%;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo dl, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo dl {
  position: absolute;
  z-index: 3;
  height: 40px;
  background-color: #006b67;
  bottom: -19px;
  display: flex;
  padding: 0 24px 0 24px;
  box-sizing: border-box;
  align-items: center;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo dl::after, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo dl::after {
  position: absolute;
  z-index: -2;
  left: -30px;
  top: -23px;
  content: "";
  display: block;
  width: 244px;
  height: 101px;
  background: url(../image/media/media_shadow_img01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo dl dd, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo dl dd {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.039em;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo dl .category, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo dl .category {
  position: relative;
  margin-right: 20px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo dl .category::before, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo dl .category::before {
  position: absolute;
  content: "|";
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a .news-and-topics_photo dl .category .tags_list .tag, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a .news-and-topics_photo dl .category .tags_list .tag {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.039em;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a h2, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.039em;
  text-align: left;
  line-height: 1.55;
  margin-bottom: 18px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(1) a p, #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(2) a p {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.785;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo figure {
  position: relative;
  z-index: 1;
  width: 98.73%;
  aspect-ratio: 1.619/1;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl {
  position: absolute;
  height: 40px;
  background-color: #006b67;
  bottom: -20px;
  display: flex;
  padding: 0 24px 0 24px;
  box-sizing: border-box;
  align-items: center;
  z-index: 3;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl::after {
  position: absolute;
  z-index: -2;
  left: -30px;
  top: -23px;
  content: "";
  display: block;
  width: 244px;
  height: 101px;
  background: url(../image/media/media_shadow_img01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl dd {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.039em;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl .category {
  position: relative;
  margin-right: 20px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl .category::before {
  position: absolute;
  content: "|";
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl .category .tags_list .tag {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.039em;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  line-height: 1.55;
  margin-bottom: 18px;
  letter-spacing: 0.039em;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li a p {
  font-size: 18px;
  line-height: 2;
}
#media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(6), #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(7), #media-page #news-and-topics .news-and-topics_inner .news-and-topics_contents li:nth-of-type(8) {
  margin-bottom: 75px;
}
#media-page #news-and-topics .btn_media {
  border-radius: 28px;
  padding-left: 70px;
}
#media-page #jrsl-ranking {
  width: 100%;
  background-color: #f1f1f1;
}
#media-page #jrsl-ranking .jrsl-ranking_inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0 118px 0;
}
#media-page #jrsl-ranking .jrsl-ranking_inner h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 80px;
}
#media-page #jrsl-ranking .jrsl-ranking_inner h2 b {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#media-page #jrsl-ranking .jrsl-ranking_inner h2 span {
  display: block;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #006b67;
  margin-top: 15px;
  letter-spacing: 0.08em;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li {
  width: 31.25%;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li:nth-of-type(2) a .jrsl-ranking_photo figure::after {
  content: "2";
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li:nth-of-type(3) a .jrsl-ranking_photo figure::after {
  content: "3";
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a {
  display: block;
  width: 100%;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 48px;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo figure {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.619/1;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo figure::before {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 64px 0 0;
  border-color: #e2bc1a transparent transparent transparent;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo figure::after {
  content: "1";
  position: absolute;
  z-index: 3;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  top: 12px;
  left: 11px;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo dl {
  position: absolute;
  z-index: 3;
  height: 40px;
  background-color: #006b67;
  bottom: -20px;
  display: flex;
  padding: 0 24px 0 22px;
  box-sizing: border-box;
  align-items: center;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo dl::after {
  position: absolute;
  z-index: -2;
  left: -30px;
  top: -23px;
  content: "";
  display: block;
  width: 244px;
  height: 101px;
  background: url(../image/media/media_shadow_img01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo dl dd {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.039em;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo dl .category {
  position: relative;
  margin-right: 20px;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo dl .category::before {
  position: absolute;
  content: "|";
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a .jrsl-ranking_photo dl .category .tags_list .tag {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.039em;
  font-weight: 700;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a h2 {
  font-size: 24px;
  line-height: 1.785;
  text-align: left;
  margin-bottom: 11px;
  letter-spacing: 0.039em;
}
#media-page #jrsl-ranking .jrsl-ranking_inner .jrsl-ranking_contents li a p {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.039em;
}

.btn_view-all {
  width: 279px;
  background: #006b67;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-radius: 25px;
  padding: 7px 24px 8px 53px;
  transition: box-shadow ease-in-out 0.3s;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.btn_view-all span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: box-shadow ease-in-out 0.3s;
  box-shadow: 0px 0px 5px rgba(252, 252, 252, 0.48), 0px 0px 5px rgba(17, 17, 17, 0.3), inset 0px 0px 5px transparent, inset 0px 0px 0px transparent;
}
.btn_view-all span i {
  color: #fff;
}
.btn_view-all:hover {
  transition: box-shadow ease-in-out 0.3s;
}
.btn_view-all:hover span {
  box-shadow: 0px 0px 5px transparent, 0px 0px 5px transparent, inset 0px 0px 5px rgb(17, 17, 17), inset 0px 0px 5px rgba(252, 252, 252, 0.48);
}

#archive-media-page .archive-media_fv h1 span {
  margin-top: 22px;
}
#archive-media-page #archive-news-and-topics {
  width: 100%;
  margin-bottom: 157px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  margin-top: 120px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 82px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner h2 span {
  display: block;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #006b67;
  margin-top: 17px;
  letter-spacing: 0.08em;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents::after {
  content: "";
  display: block;
  width: 31.25%;
  height: 0;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li {
  width: 31.25%;
  margin-bottom: 58px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo figure {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.619/1;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl {
  position: absolute;
  height: 40px;
  background-color: #006b67;
  bottom: -20px;
  display: flex;
  padding: 0 24px 0 24px;
  box-sizing: border-box;
  align-items: center;
  z-index: 3;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl::after {
  position: absolute;
  z-index: -2;
  left: -30px;
  top: -23px;
  content: "";
  display: block;
  width: 244px;
  height: 101px;
  background: url(../image/media/media_shadow_img01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl dd {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.039em;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl .category {
  position: relative;
  margin-right: 20px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl .category::before {
  position: absolute;
  content: "|";
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a .news-and-topics_photo dl .category .tags_list .tag {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.039em;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  line-height: 1.55;
  margin-bottom: 18px;
  letter-spacing: 0.039em;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .news-and-topics_contents li a p {
  font-size: 18px;
  line-height: 2;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers {
  font-size: 18px;
  font-weight: bold;
  background: transparent;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 0.5px solid #c6e1e0;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers .right,
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers .left {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -1px;
  display: block;
  width: 4px;
  height: 4px;
  background: url(../image/media/media_pnavi_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers .left {
  top: auto;
  right: auto;
  bottom: -1px;
  left: -1px;
  background: url(../image/media/media_pnavi_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers::before, #archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: transform ease 0.3s;
  display: block;
  box-sizing: border-box;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers::before {
  right: 0px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #006d68;
  transform: translateX(-100%);
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers::after {
  left: 0px;
  border-left: 50px solid transparent;
  border-top: 50px solid #006d68;
  transform: translateX(100%);
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers:hover {
  color: #fff;
  border: none;
  transition: 0.3s;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers:hover::before {
  right: -25px;
  transform: translateX(-49%);
  transition: 0.3s;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers:hover::after {
  left: -25px;
  transform: translateX(50%);
  transition: 0.3s;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers.current {
  background-color: #006d68;
  color: #fff;
  border: none;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .prev {
  display: none;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .next {
  display: none;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers.dots {
  border: none;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers.dots:hover {
  color: #006d68;
  border: none;
  transition: 0;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers.dots:hover::before {
  display: none;
}
#archive-media-page #archive-news-and-topics .news-and-topics_inner .pnavi .page-numbers.dots:hover::after {
  display: none;
}
#archive-media-page #archive-news-and-topics .btn_media {
  border-radius: 28px;
}

#single-media-page .archive-media_fv h1 span {
  margin-top: 22px;
}
#single-media-page #single-media_contents {
  width: 100%;
  margin-top: 108px;
  margin-bottom: 157px;
}
#single-media-page #single-media_contents .single-media_contents_inner {
  max-width: 1056px;
  width: 95%;
  margin: 0 auto;
}
#single-media-page #single-media_contents .single-media_contents_inner h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.039em;
  line-height: 1.5;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

#single-media-page #single-media_contents .single-media_contents_inner .cat_date{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 72px;
}
#single-media-page #single-media_contents .single-media_contents_inner .blog_image {
  width: 100%;
  margin: 32px 0;
}
#single-media-page #single-media_contents .single-media_contents_inner .blog_image img {
  width: 100%;
  object-fit: contain;
  padding: 0;
  height: 100%;
}
#single-media-page #single-media_contents .single-media_contents_inner .cat_date .date {
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d6d6d6;
	margin-right:48px;
		position:relative;
}
#single-media-page #single-media_contents .single-media_contents_inner .cat_date .date::before{
	position:absolute;
	content:"|";
		top:50%;
	right:-24px;
	transform:translatey(-50%);
}

#single-media-page #single-media_contents .single-media_contents_inner .cat_date .tag_single{
	font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d6d6d6;
	padding-bottom:0;
}
#single-media-page #single-media_contents .single-media_contents_inner p {
  font-size: 18px;
  line-height: 1.72em;
  letter-spacing: 0.132em;
  padding-bottom: 28px;
}
#single-media-page #single-media_contents .single-media_contents_inner img {
  width: 100%;
  padding: 30px 0 30px 0;
}
#single-media-page #single-media_contents .single-media_contents_inner h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.039em;
  padding: 15px 0 14px 0;
}
#single-media-page #single-media_contents .single-media_contents_inner a {
  text-decoration: underline;
  color: #006b67;
  font-weight: 700;
}
#single-media-page #single-media_contents .single-media_contents_inner strong,
#single-media-page #single-media_contents .single-media_contents_inner b {
  font-weight: 700;
}
#single-media-page #single-media_contents .single-media_contents_inner h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.039em;
  padding: 8px 0 10px 0;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta {
  width: 100%;
  margin-top: 68px;
  padding: 70px 10.41% 80px 10.41%;
  box-sizing: border-box;
  border: 1px solid #b3b3b3;
  margin-bottom: 72px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta h2 {
  font-size: 22px;
  line-height: 1.8181;
  letter-spacing: 0.039em;
  text-align: center;
  padding: 0;
  font-weight: 700;
  margin-bottom: 26px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta p {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.72;
  padding-bottom: 0;
  margin-bottom: 58px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta ul {
  display: flex;
  justify-content: space-between;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta ul li {
  width: 49.16%;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta ul li .btn_single_media {
  width: 100%;
  border-radius: 32px;
  color: #fff;
  text-decoration: none;
  padding: 11px 43px 14px 34.14%;
  font-size: 20px;
  letter-spacing: 0.039em;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta ul li .yellow {
  background: #e2bc1a;
  margin-left: -3px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_cta ul li .green {
  margin-right: -3px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share {
  width: 180px;
  height: 52px;
  margin-bottom: 77px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share ul li {
  width: 52px;
  height: 100%;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share ul li:nth-of-type(1) a figure {
  width: 34.4749px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share ul li:nth-of-type(2) a figure {
  width: 28.1704px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share ul li:nth-of-type(3) a figure {
  width: 28.0062px;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b3b3b3;
}
#single-media-page #single-media_contents .single-media_contents_inner .single-media_contents_share ul li a figure img {
  width: 100%;
  object-fit: cover;
  padding: 0;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation {
  width: 70%;
  max-width: 395.123px;
  margin: 0 auto;
  height: 35.5263px;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul li a img {
  width: 100%;
  object-fit: cover;
  padding: 0;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul .prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: -2px;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul .prev a {
  position: relative;
  font-size: 22px;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
  color: #006d68;
  font-weight: 700;
  padding-left: 33px;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul .prev a::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 13.492px;
  height: 13.1052px;
  background: url(../image/news/single_arrow_prev_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul .next {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: -2px;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul .next a {
  font-size: 22px;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
  color: #006d68;
  font-weight: 700;
  padding-right: 33px;
}
#single-media-page #single-media_contents .single-media_contents_inner .media-single_pagenation ul .next a::before {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 13.492px;
  height: 13.1052px;
  background: url(../image/news/single_arrow_next_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#single-media-page #media-single_connection {
  width: 100%;
  padding-bottom: 75px;
  background: #f1f1f1;
}
#single-media-page #media-single_connection .media-single_connection_inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 162px 0 0 0;
}
#single-media-page #media-single_connection .media-single_connection_inner h2 {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.039em;
  font-weight: 700;
  padding-left: 12px;
  margin-bottom: 81px;
}
#single-media-page #media-single_connection .media-single_connection_inner h2::before {
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  width: 2px;
  height: 30px;
  border-radius: 5px;
  background: #006d68;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li {
  width: 31.25%;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo figure {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.619/1;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo dl {
  position: absolute;
  height: 40px;
  background-color: #006b67;
  bottom: -20px;
  display: flex;
  padding: 0 24px 0 24px;
  box-sizing: border-box;
  align-items: center;
  z-index: 3;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo dl::after {
  position: absolute;
  z-index: -2;
  left: -30px;
  top: -23px;
  content: "";
  display: block;
  width: 244px;
  height: 101px;
  background: url(../image/media/media_shadow_img01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo dl dd {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.039em;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo dl .category {
  position: relative;
  margin-right: 20px;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo dl .category::before {
  position: absolute;
  content: "|";
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a .news-and-topics_photo dl .category .tags_list .tag {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.039em;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a h2 {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1.55;
  margin-bottom: 18px;
  letter-spacing: 0.039em;
  padding-left: 0;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a h2::before {
  display: none;
}
#single-media-page #media-single_connection .media-single_connection_inner .media-single_connection_contents li a p {
  font-size: 14px;
  line-height: 2;
}
#single-media-page #media-single_recent {
  width: 100%;
  padding-bottom: 146px;
  background: #f1f1f1;
}
#single-media-page #media-single_recent .media-single_recent_inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
#single-media-page #media-single_recent .media-single_recent_inner h2 {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.039em;
  font-weight: 700;
  padding-left: 12px;
  margin-bottom: 81px;
}
#single-media-page #media-single_recent .media-single_recent_inner h2::before {
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  width: 2px;
  height: 30px;
  border-radius: 5px;
  background: #006d68;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li {
  width: 31.25%;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo figure {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.619/1;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo dl {
  position: absolute;
  height: 40px;
  background-color: #006b67;
  bottom: -20px;
  display: flex;
  padding: 0 24px 0 24px;
  box-sizing: border-box;
  align-items: center;
  z-index: 3;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo dl::after {
  position: absolute;
  z-index: -2;
  left: -30px;
  top: -23px;
  content: "";
  display: block;
  width: 244px;
  height: 101px;
  background: url(../image/media/media_shadow_img01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo dl dd {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.039em;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo dl .category {
  position: relative;
  margin-right: 20px;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo dl .category::before {
  position: absolute;
  content: "|";
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a .news-and-topics_photo dl .category .tags_list .tag {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.039em;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a h2 {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1.55;
  margin-bottom: 18px;
  letter-spacing: 0.039em;
  padding-left: 0;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a h2::before {
  display: none;
}
#single-media-page #media-single_recent .media-single_recent_inner .media-single_recent_contents li a p {
  font-size: 14px;
  line-height: 2;
}

#company-page .company_fv h1 span {
  margin-top: 20px;
}
#company-page #company-page_philosophy {
  padding-top: 159px;
  position: relative;
}
#company-page #company-page_philosophy::before {
  content: "";
  display: block;
  width: 89%;
  height: 188%;
  background: #f9f9f9;
  position: absolute;
  right: 0;
  top: 232px;
  z-index: -1;
}
#company-page #company-page_philosophy div {
  display: flex;
}
#company-page #company-page_philosophy div figure {
  width: 44.5%;
  height: auto;
}
#company-page #company-page_philosophy div div {
  display: block;
  width: 45.2%;
  margin-left: 5.47%;
  margin-top: 151px;
  position: relative;
}
#company-page #company-page_philosophy div div::before {
  content: "VALUES";
  font-size: 160px;
  letter-spacing: 0.16em;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgba(0, 109, 104, 0.32);
  text-stroke: 2px rgba(0, 109, 104, 0.32);
  display: inline-block;
  position: absolute;
  right: 3%;
  bottom: -80px;
  margin: auto;
  z-index: -1;
}
#company-page #company-page_philosophy div div h2 {
  font-size: 44px;
  color: #006b67;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 72px;
}
#company-page #company-page_philosophy div div p {
  font-size: 20px;
  letter-spacing: 0.039em;
  line-height: 30px;
  font-weight: bold;
}
#company-page #company-page_philosophy div div p span {
  display: block;
  margin-top: 36px;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2em;
  font-weight: 500;
}
#company-page #company-page_philosophy div div p span:nth-child(3) {
  margin-top: 18px;
}
#company-page #company-page_philosophy div div p span:nth-child(4) {
  margin-top: 18px;
}
#company-page #company-page_message {
  padding-top: 159px;
  position: relative;
  padding-bottom: 145px;
}
#company-page #company-page_message div {
  max-width: 974px;
  margin: 0 auto;
  transform: translateX(4px);
}
#company-page #company-page_message div h2 {
  font-size: 28px;
  letter-spacing: 0.17em;
  font-weight: bold;
  margin-bottom: 60px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
#company-page #company-page_message div p {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 2em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
#company-page #company-page_message div p img {
  display: block;
  width: 295px;
  height: auto;
  margin-left: auto;
  margin-right: 1px;
	    transform: translateY(80%);
}
#company-page #company-page_message div p:nth-child(5) {
  padding-bottom: 55px;
}
#company-page #company-page_message div p:nth-child(6) {
  padding-bottom: 5px;
}
#company-page #company-page_message figure {
  width: 90%;
  max-width: 560px;
}

#company-page_managment-team h2 {
  font-size: 44px;
  color: #006d68;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 43px;
  padding: 0 5.58%;
}
#company-page_managment-team ul {
  background: #f9f9f9;
  padding: 92px 11.5% 32px 5.58%;
  width: 88.9%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
#company-page_managment-team ul::after {
  content: "MANAGEMENT";
  font-size: 160px;
  letter-spacing: 0.16em;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgba(0, 107, 104, 0.2);
  text-stroke: 2px rgba(0, 107, 104, 0.2);
  display: block;
  position: absolute;
  right: -80px;
  top: 55px;
  margin: auto;
  z-index: 1;
  transform: rotate(90deg);
  transform-origin: 0 0;
  width: 1px;
  white-space: nowrap;
}
#company-page_managment-team ul li {
  width: 46.5%;
  margin-bottom: 64px;
}
#company-page_managment-team ul li h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-top: 36px;
  margin-bottom: 20px;
}
#company-page_managment-team ul li h3 span {
  font-size: 12px;
  color: #006d68;
  font-weight: 500;
  display: block;
  margin-bottom: 11px;
}
#company-page_managment-team ul li p {
  font-size: 18px;
  line-height: 1.571em;
  letter-spacing: 0.039em;
}

#company-page_history {
  padding: 176px 0 133px 0;
  position: relative;
}
#company-page_history::before {
  content: "";
  display: block;
  background: #f9f9f9;
  width: 59%;
  height: 61%;
  position: absolute;
  right: 0;
  top: 162px;
}
#company-page_history h2 {
  font-size: 44px;
  color: #006d68;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 43px;
  padding: 0 11.2%;
}
#company-page_history ul {
  padding: 43px 5.2% 150px 11.1%;
  position: relative;
}
#company-page_history ul::before {
  content: "COMPANY \aOVERVIEW";
  font-size: 160px;
  line-height: 150px;
  letter-spacing: 0.16em;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px rgba(0, 107, 104, 0.2);
  text-stroke: 2px rgba(0, 107, 104, 0.2);
  display: inline-block;
  position: absolute;
  bottom: -38%;
  left: 33.4%;
  margin: auto;
  z-index: 1;
}
#company-page_history ul li {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#company-page_history ul li::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #006b67;
  position: absolute;
  left: calc(7px + 15.9%);
  top: 2px;
}
#company-page_history ul li:nth-child(3)::before {
  display: none;
}
#company-page_history ul li div {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 600;
  width: 15.9%;
}
#company-page_history ul li span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cce1e1;
  position: relative;
}
#company-page_history ul li span::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #006b67;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateX(13%);
}
#company-page_history ul li p {
  font-size: 18px;
  line-height: 1.3em;
  width: 83%;
  padding-left: 8.3%;
  letter-spacing: 0.039em;
  margin-bottom: 31px;
}
#company-page_history ul li p strong {
  font-weight: 600;
  display: block;
  margin-bottom: 22px;
}

#company-page_about {
  padding: 0 11.2%;
}
#company-page_about h2 {
  font-size: 44px;
  color: #006d68;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 102px;
}
#company-page_about div {
  display: flex;
  justify-content: space-between;
}
#company-page_about div ul {
  width: 47%;
}
#company-page_about div ul li {
  display: flex;
  border-top: solid 1px #cce1e1;
  padding: 20px 2% 21px 2.7%;
}
#company-page_about div ul li h3 {
  font-size: 18px;
  line-height: 1.571em;
  letter-spacing: 0.039em;
  width: 122px;
}
#company-page_about div ul li p {
  font-size: 18px;
  line-height: 1.571em;
  letter-spacing: -0.019em;
}
#company-page_about div ul li:nth-child(5) {
  border-bottom: solid 1px #cce1e1;
}
#company-page_about div ul:nth-child(2) li:nth-child(4) {
  border-bottom: solid 1px #cce1e1;
}

#company-page_about_access {
  padding: 163px 0 0 0;
}
#company-page_about_access h2 {
  font-size: 44px;
  color: #006d68;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 81px;
  text-align: center;
}
#company-page_about_access iframe {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: 560px;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.062745098), 0 0 8px rgba(50, 50, 50, 0.062745098), 0 0 8px rgba(50, 50, 50, 0.062745098);
}

#company-page_privacy {
  padding: 155px 11.2% 180px 10.9%;
  position: relative;
  margin-bottom: 46px;
}
#company-page_privacy h2 {
  font-size: 44px;
  color: #006d68;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 55px;
}
#company-page_privacy p {
  font-size: 18px;
  line-height: 2em;
  letter-spacing: 0.039em;
  padding-left: 2px;
  width: 78%;
}
#company-page_privacy figure {
  position: absolute;
  right: 11.2%;
  bottom: 144px;
  width: 163px;
  height: auto;
}

#service-sasti-page #under_fv h1 {
  left: 32.8%;
  top: 40.2%;
}
#service-sasti-page #under_fv h1 span {
  margin-top: 21px;
  margin-left: -2px;
}
#service-sasti-page #sasti-page_setup {
  padding: 67px 11.7% 60px 15.5%;
}
#service-sasti-page #sasti-page_setup h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 39px;
}
#service-sasti-page #sasti-page_setup h2 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 17px;
  margin-left: 1px;
}
#service-sasti-page #sasti-page_setup p {
  font-size: 18px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0.039em;
}
#service-sasti-page #sasti-page_setup figure {
  padding: 0 14.1%;
  margin-top: 65px;
  transform: translateX(-27px);
}
#service-sasti-page #sasti-page_provided {
  padding-top: 100px;
}
#service-sasti-page #sasti-page_provided h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 39px;
  text-align: center;
	line-height:1.5em;
}
#service-sasti-page #sasti-page_provided h2 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 17px;
  margin-left: 1px;
}
#service-sasti-page #sasti-page_provided ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 42px 8.3% 40px 8.3%;
}
#service-sasti-page #sasti-page_provided ul li {
  width: 48.4%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  padding: 36px 0 79px 0;
  border-radius: 19px;
  margin-bottom: 41px;
}
#service-sasti-page #sasti-page_provided ul li h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 38px;
}
#service-sasti-page #sasti-page_provided ul li figure {
  width: 79%;
  margin: 0 auto;
  transform: translateX(-4px);
}
#service-sasti-page #sasti-page_provided ul li p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.039em;
  width: 62%;
  margin: 0 auto;
  margin-top: 55px;
}
#service-sasti-page #sasti-page_provided ul li:nth-child(2) h3 {
  margin-bottom: 64px;
}
#service-sasti-page #sasti-page_provided ul li:nth-child(2) figure {
  width: 62%;
  margin: 0 auto;
  transform: translateX(-9px);
}
#service-sasti-page #sasti-page_provided ul li:nth-child(2) p {
  margin-top: 23px;
}
#service-sasti-page #sasti-page_provided ul li:nth-child(3) h3 {
  margin-bottom: 55px;
}
#service-sasti-page #sasti-page_provided ul li:nth-child(3) figure {
  width: 75%;
  margin: 0 auto;
  transform: translateX(16px);
}
#service-sasti-page #sasti-page_provided ul li:nth-child(3) p {
  margin-top: 33px;
}
#service-sasti-page #sasti-page_comparison {
  padding: 18px 9.8% 40px 9%;
}
#service-sasti-page #sasti-page_comparison h2 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 27px;
}
#service-sasti-page #sasti-page_comparison table {
  border: solid 1px #606060;
  width: 100%;
}
#service-sasti-page #sasti-page_comparison table th {
  border-right: solid 1px #606060;
  border-bottom: solid 1px #606060;
  background: #ebf4f3;
  padding: 8px 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.039em;
}
#service-sasti-page #sasti-page_comparison table th span {
  font-size: 18px;
}
#service-sasti-page #sasti-page_comparison table tr td {
  border-right: solid 1px #606060;
  border-bottom: solid 1px #606060;
  padding: 18px 21px 18px 21px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
}
#service-sasti-page #sasti-page_comparison table tr td:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.039em;
}
#service-sasti-page #sasti-page_comparison table tr:nth-child(1) th:nth-child(3) {
  padding-top: 18px;
}
#service-sasti-page #sasti-page_comparison table tr:nth-child(3) {
  background: #ebf4f3;
}
#service-sasti-page #sasti-page_comparison table tr:nth-child(5) {
  background: #ebf4f3;
}
#service-sasti-page #sasti-page_comparison table tr:nth-child(7) {
  background: #ebf4f3;
}
#service-sasti-page #sasti-page_comparison p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 14px;
  margin-left: 1px;
}
#service-sasti-page #sasti-page_case {
  position: relative;
  padding: 92px 11.1% 0 11.1%;
}
#service-sasti-page #sasti-page_case h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 48px;
}
#service-sasti-page #sasti-page_case h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 18px;
}
#service-sasti-page #sasti-page_case p {
  margin-top: 36px;
  font-size: 14px;
  letter-spacing: 0.039em;
  line-height: 28px;
  font-weight: 500;
}
#service-sasti-page #sasti-page_case .sasti-page_slider {
  width: 106vw;
  margin-top: 77px;
  margin-left: -14.1vw;
  margin-bottom: 30px;
}
#service-sasti-page #sasti-page_case .sasti-page_slider li {
  margin: 0 16px;
}
#service-sasti-page #sasti-page_case .sasti-page_slider li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#service-sasti-page #sasti-page_case .sasti-page_slider li a figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
#service-sasti-page #sasti-page_case .sasti-page_slider li a h3 {
  display: flex;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 30px;
  font-weight: bold;
  margin-top: 20px;
  position: relative;
  padding: 0px 16px;
}
#service-sasti-page #sasti-page_case .sasti-page_slider li a p {
  font-size: 18px;
  height: 122px;
  line-height: 35px;
  letter-spacing: 0.039em;
  font-weight: 400;
  margin-top: 9px;
  padding: 0 16px;
  background: #fff;
  position: relative;
  margin-bottom: 10px;
}
#service-sasti-page #sasti-page_case .sasti-page_slider li a p::after {
  content: "";
  display: block;
  width: 94%;
  height: 50%;
  position: absolute;
  left: 3%;
  bottom: -1px;
  z-index: -1;
  background: #000;
  opacity: 0.15;
  filter: blur(6px);
}
#service-sasti-page #sasti-page_case .sasti-page_slider li a:hover .anime_btn div .circle_wrap svg .circle_back {
  stroke-dashoffset: 480;
  transform: rotate(270deg);
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1), transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-arrow {
  left: unset;
  right: 100px;
  top: -141px;
  z-index: 3;
  transform: unset;
  background: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 5px 5px 14px 0px rgba(0, 0, 0, 0.16);
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-prev {
  right: 18.2%;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  color: #006b67;
  text-align: center;
  opacity: 1;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-prev:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-prev:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-next {
  right: 13.3%;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  color: #006b67;
  opacity: 1;
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-next:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_case .sasti-page_slider .slick-next:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-sasti-page #sasti-page_setup-jrsl {
  padding: 37px 15.5% 60px 15.5%;
}
#service-sasti-page #sasti-page_setup-jrsl h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 38px;
}
#service-sasti-page #sasti-page_setup-jrsl h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 18px;
}
#service-sasti-page #sasti-page_setup-jrsl p {
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 35px;
  font-weight: 500;
}
#service-sasti-page #sasti-page_bespoke-service {
  padding: 90px 13.4% 40px 13.4%;
}
#service-sasti-page #sasti-page_bespoke-service h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 38px;
  text-align: center;
}
#service-sasti-page #sasti-page_bespoke-service h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 18px;
}
#service-sasti-page #sasti-page_bespoke-service ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  justify-content: space-between;
}
#service-sasti-page #sasti-page_bespoke-service ul li {
  background: #f4f4f2;
  width: 48.4%;
  padding: 23px 2.9% 52px 2.9%;
  margin-bottom: 30px;
}
#service-sasti-page #sasti-page_bespoke-service ul li h3 {
  background: #007769;
  color: #fff;
  font-size: 18px;
  line-height: 1.3em;
  letter-spacing: 0.039em;
  font-weight: bold;
  padding: 10px 6px 10px 6px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
#service-sasti-page #sasti-page_bespoke-service ul li h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
#service-sasti-page #sasti-page_bespoke-service ul li h3::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  transform: rotate(180deg);
}
#service-sasti-page #sasti-page_bespoke-service ul li p {
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0.039em;
  font-weight: 400;
  padding-right: 1px;
}
#service-sasti-page #sasti-page_bespoke-service ul li:nth-child(4) p {
  padding-right: 0;
}
#service-sasti-page #sasti-page_process {
  padding: 74px 11.2% 60px 11.2%;
  margin-bottom: 90px;
}
#service-sasti-page #sasti-page_process h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 80px;
  text-align: center;
}
#service-sasti-page #sasti-page_process h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 18px;
}
#service-sasti-page #sasti-page_process ul {
  display: flex;
  justify-content: space-between;
}
#service-sasti-page #sasti-page_process ul li {
  width: 23.2%;
  padding: 35px 0 23px 0;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
}
#service-sasti-page #sasti-page_process ul li h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-align: center;
  color: #007769;
}
#service-sasti-page #sasti-page_process ul li figure {
  width: 50px;
  margin: 0 auto;
  margin-bottom: 41px;
}
#service-sasti-page #sasti-page_process ul li p {
  font-size: 18px;
  line-height: 1.625em;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 22px 10% 0 11.4%;
}

#error-page {
  width: 100%;
  margin-bottom: 120px;
}

#error_content {
  padding-top: 120px;
  width: 100%;
  text-align: center;
}
#error_content h2 {
  font-size: 44px;
  color: #006b67;
  letter-spacing: 0.16em;
  font-weight: bold;
  margin-bottom: 72px;
  line-height: 1.5;
}
#error_content p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 80px;
}

.service-diagnosis-page #under_fv h1 {
  left: 0;
  right: 0;
  letter-spacing: 0.04em;
  top: 40%;
}
.service-diagnosis-page #under_fv h1 span {
  margin-top: 11px;
}
.service-diagnosis-page_lead {
  padding: 6.74% 11.8% 6.18% 16.25%;
  background-image: url("../image/service-diagnosis/service-diagnosis_img01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.service-diagnosis-page_lead h2 {
  color: inherit;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 21px;
  padding-bottom: 4.151%;
}
.service-diagnosis-page_lead h2 br {
  display: none;
}
.service-diagnosis-page_lead p {
  color: inherit;
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.04em;
}
.service-diagnosis-page_leadWrap {
  color: inherit;
  font-weight: inherit;
}
.service-diagnosis-page_wrap {
  padding: 7.71% 0 8.34%;
}
.service-diagnosis-page_box {
  max-width: 1120px;
  width: 92%;
  margin: 0 auto;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.16);
  padding: 5.77% 0 5.625%;
  box-sizing: border-box;
}
.service-diagnosis-page_inner {
  max-width: 962px;
  width: 92%;
  margin: 0 auto;
}
.service-diagnosis-page_inner .fit {
  position: relative;
}
.service-diagnosis-page_inner .fit span.current_num {
  position: absolute;
  right: 2px;
  top: 9px;
  color: #006b67;
  font-size: 16px;
  font-weight: bold;
}
.service-diagnosis-page_inner .fit p {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.4em;
}
.service-diagnosis-page_selector div {
  padding-bottom: 37px;
}
.service-diagnosis-page_selector ul li {
  margin-bottom: 30px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f5f9f9;
  border: 1px solid #f5f9f9;
  box-sizing: border-box;
  cursor: pointer;
  transition: border 0.5s;
}
.service-diagnosis-page_selector ul li::before {
  background-color: #006b67;
  color: #fff;
  font-size: 32px;
  font-size: 32px;
  width: 69px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-diagnosis-page_selector ul li a {
  display: block;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  letter-spacing: 0.04em;
  padding: 18px 0 18px 2.81%;
}
.service-diagnosis-page_selector ul li:nth-last-child(1) {
  padding-bottom: 0;
  margin-bottom: 0;
}
.service-diagnosis-page_selector ul li:nth-child(1)::before {
  content: "A";
}
.service-diagnosis-page_selector ul li:nth-child(2)::before {
  content: "B";
}
.service-diagnosis-page_selector ul li:nth-child(3)::before {
  content: "C";
}
.service-diagnosis-page_selector ul li:hover {
  border: 1px solid #006b67;
  transition: border 0.5s;
  box-sizing: border-box;
}
.service-diagnosis-page_selector .btn_view-all {
  margin-top: 6.653%;
  padding: 7px 47px 8px 17px;
  margin-bottom: 12px;
  cursor: pointer;
  width: 291px;
  border-radius: 27px;
  font-weight: bold;
}
.service-diagnosis-page_selector .btn_view-all span {
  background-color: #fff;
}
.service-diagnosis-page_selector .btn_view-all span i {
  color: #006b67;
  font-size: 19px;
  position: relative;
  left: 1px;
  top: 0px;
}
.service-diagnosis-page_notes {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.result-page #under_fv h1 {
  left: 0;
  right: 0;
  letter-spacing: 0.04em;
  top: 40%;
}
.result-page #under_fv h1 span {
  margin-top: 14px;
}
.result-page_wrap {
  max-width: 1120px;
  width: 90%;
  margin: 13.9% auto 8.4%;
  padding: 5.91% 5% 4.86%;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.16);
}
.result-page_inner {
  text-align: left;
  padding-bottom: 5.021%;
}
.result-page_inner h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.064em;
}
.result-page_heading {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.304%;
}
.result-page_heading p {
  font-weight: bold;
  font-size: 20px;
  line-height: 50px;
  position: relative;
  left: -1px;
  letter-spacing: 0.04em;
}
.result-page_heading p span {
  font-size: 44px;
  color: #006b67;
  letter-spacing: 0.04em;
  padding-right: 3px;
}
.result-page_heading p .sasti_break {
  display: none;
}
.result-page_desc {
  margin-bottom: 5.431%;
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.04em;
  width: 102%;
}
.result-page_cta {
  text-align: center;
  background-color: #006b67;
  color: #fff;
  padding: 7.48% 20px 7.378%;
  margin-bottom: 8.197%;
}
.result-page_cta p {
  color: inherit;
  letter-spacing: 0.043em;
}
.result-page_cta p:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 23px;
  position: relative;
  left: -1px;
}
.result-page_cta p:nth-child(2) {
  font-size: 18px;
  margin-bottom: 5.021%;
  line-height: 1.4em;
}
.result-page_cta a.btn_view-all {
  color: #006b67;
  background-color: #fff;
  width: 260px;
  border-radius: 29px;
  padding: 7px 10px 8px 59px;
  font-weight: bold;
}
.result-page_cta a.btn_view-all span i {
  color: #006b67 !important;
}
.result-page_explanation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8.197%;
}
.result-page_explanation figure {
  max-width: 400px;
  width: 48%;
  position: relative;
  top: 1px;
}
.result-page_explanation div {
  max-width: 480px;
  width: 47%;
  position: relative;
  left: -5px;
}
.result-page_explanation div h4 {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 5.24%;
}
.result-page_explanation div p {
  word-break: break-word;
}
.result-page_explanation div p.result-page_en {
  font-size: 14px;
  color: #006b67;
  margin-bottom: 9.81%;
  letter-spacing: 0.013em;
}
.result-page_explanation div p.result-page_explanation_text {
  text-align: justify;
  transform: translateX(13px);
  margin-left: -13px;
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .result-page_explanation div p.result-page_explanation_text {
    transform: none;
    margin-left: unset;
  }
}
.result-page_explanation div ol {
  transform: translateX(1.2em);
}
.result-page_explanation div ol li {
  list-style: decimal;
  line-height: 35px;
  width: 98%;
  letter-spacing: 0.04em;
}
.result-page_explanation div .btn_view-all {
  margin: 19px 0 0 0;
  padding: 7px 25px 8px 33px;
  border-radius: 29px;
  font-weight: bold;
}
.result-page h4.result-page_succeeded {
  font-weight: bold;
  letter-spacing: 0.04em;
  font-size: 32px;
  margin-bottom: 4.201%;
  position: relative;
  left: -4px;
}
.result-page_casestudy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8.197%;
}
.result-page_casestudy li {
  max-width: 306px;
  width: 31.5%;
}
.result-page_casestudy li p:nth-child(1) {
  position: relative;
  margin-bottom: 22px;
  width: 100%;
  aspect-ratio: 1.499/1;
}
.result-page_casestudy li p:nth-child(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-page_casestudy li p:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  background-color: #222;
  opacity: 0.16;
  filter: blur(4px);
  z-index: -1;
}
.result-page_casestudy li p:nth-child(2) {
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin-bottom: 7px;
  line-height: 1.4em;
  position: relative;
  padding-right: 24px;
}
.result-page_casestudy li p:nth-child(2) span {
  border-radius: 50%;
  background-color: #006b67;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 0;
  left: 1px;
  text-align: right;
  margin: 0 0 0 auto;
}
.result-page_casestudy li p:nth-child(2) span i {
  font-size: 10px;
  color: #fff;
}
.result-page_casestudy li p:nth-child(3) {
  display: inline-block;
  font-size: 10px;
  color: #222222;
  padding: 7px 19px;
  font-weight: bold;
  background-color: #f1f1f1;
}
.result-page_link {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 627px;
  width: 100%;
}
.result-page_link li:nth-child(1) .btn_view-all {
  width: 293px;
  color: #006b67;
  padding: 7px 61px 7px 10px;
  background-color: #fff;
  border: 1px solid #006b67;
  font-weight: bold;
  border-radius: 30px;
}
.result-page_link li:nth-child(1) .btn_view-all span {
  border: 1px solid #006b67;
}
.result-page_link li:nth-child(1) .btn_view-all span i {
  color: #006b67;
  font-size: 19px;
}
.result-page_link li:nth-child(2) .btn_view-all {
  width: 293px;
  color: #fff;
  padding: 7px 9px 8px 78px;
  background-color: #006b67;
  border: 1px solid #006b67;
  font-weight: bold;
  border-radius: 30px;
}
.result-page_link li:nth-child(2) .btn_view-all span {
  border: 1px solid #006b67;
}
.result-page_link li:nth-child(2) .btn_view-all span i {
  color: #fff;
}

#success-page {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#success-page .success_fv h1 span {
  margin-top: 31px;
}
#success-page .success-page_breadcrumb {
  width: 100%;
  height: 50px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
}
#success-page .success-page_breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1336px;
  width: 95%;
  height: 100%;
  margin: -1px auto 1px;
}
#success-page .success-page_breadcrumb ul li {
  margin-right: 10px;
}
#success-page .success-page_breadcrumb ul li a {
  display: block;
}
#success-page .success-page_breadcrumb ul li a p {
  line-height: 50px;
}
#success-page .success-page_breadcrumb ul li.home p {
  font-size: 14px;
  color: #cbcbcb;
  letter-spacing: 0.08em;
  margin-left: -1px;
}
#success-page .success-page_breadcrumb ul li.icon i {
  color: #cbcbcb;
  font-size: 10px;
  transform: scale(0.64);
  margin: 0 1px 6px -1px;
}
#success-page .success-page_breadcrumb ul li.success p {
  color: #333;
  font-size: 14px;
}
#success-page .success-page_fv {
  height: 480px;
  background: url(../img/success/success_fv.png) no-repeat center center/cover;
  position: relative;
}
#success-page .success-page_fv > h1 {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 52px;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
#success-page .success-page_fv > h1 > span {
  display: block;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 30px 0 0 -2px;
}
#success-page .success-page_fv::before {
  position: absolute;
  z-index: 3;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 109, 104) 0%, rgb(255, 255, 255) 83.93%);
  opacity: 0.4;
}
#success-page .success-page_fv::after {
  position: absolute;
  z-index: 4;
  content: "";
  width: 28.91%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: url(../img/fv-decoration_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
#success-page .success-page_list {
  padding: 159px 0 158px;
}
#success-page .success-page_list > ul {
  margin-bottom: 120px;
}
#success-page .success-page_list > ul > li a {
  display: flex;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
#success-page .success-page_list > ul > li a:hover .success-page_list_image {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.32);
}
#success-page .success-page_list > ul > li a .success-page_list_image {
  max-width: 563px;
  width: 90%;
  height: 100%;
  aspect-ratio: 1/0.667;
  transition: box-shadow 0.3s;
}
#success-page .success-page_list > ul > li a .success-page_list_image img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}
#success-page .success-page_list > ul > li a .success-page_list_contents {
  max-width: 680px;
  width: 90%;
  padding-left: 40px;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner {
  padding: 20px 0 0 0;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner > h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.039em;
  color: #222;
  line-height: 1.2;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner .category {
  margin-top: 26px;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner .category p {
  text-align: center;
  line-height: 28px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.039em;
  color: #fff;
  background-color: #006f69;
  display: inline-block;
  padding: 0 32px 0;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner p.contents {
  font-size: 18px;
  letter-spacing: 0.039em;
  margin-top: 33px;
  line-height: 1.72;
  color: #222;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner .view-more {
  display: flex;
  max-width: 199px;
  margin-top: 26px;
  justify-content: space-between;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner .view-more > p {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.039em;
  color: #006f69;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner .view-more > .img-box {
  max-width: 72px;
}
#success-page .success-page_list > ul > li a .success-page_list_contents .success-page_list_inner .view-more > .img-box img {
  object-fit: cover;
  vertical-align: middle;
  width: 100%;
}
#success-page .success-page_list > ul li:not(:first-child) {
  margin-top: 80px;
}
#success-page .success-page_list .pnavi {
  width: 16.71%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#success-page .success-page_list .pnavi .page-numbers {
  font-size: 18px;
  font-weight: bold;
  background: transparent;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 0.5px solid #c6e1e0;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
#success-page .success-page_list .pnavi .page-numbers .right,
#success-page .success-page_list .pnavi .page-numbers .left {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -1px;
  display: block;
  width: 4px;
  height: 4px;
  background: url(../image/media/media_pnavi_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#success-page .success-page_list .pnavi .page-numbers .left {
  top: auto;
  right: auto;
  bottom: -1px;
  left: -1px;
  background: url(../image/media/media_pnavi_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#success-page .success-page_list .pnavi .page-numbers::before, #success-page .success-page_list .pnavi .page-numbers::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: transform ease 0.3s;
  display: block;
  box-sizing: border-box;
}
#success-page .success-page_list .pnavi .page-numbers::before {
  right: 0px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #006d68;
  transform: translateX(-100%);
}
#success-page .success-page_list .pnavi .page-numbers::after {
  left: 0px;
  border-left: 50px solid transparent;
  border-top: 50px solid #006d68;
  transform: translateX(100%);
}
#success-page .success-page_list .pnavi .page-numbers:hover {
  color: #fff;
  border: none;
  transition: 0.3s;
}
#success-page .success-page_list .pnavi .page-numbers:hover::before {
  right: -25px;
  transform: translateX(-49%);
  transition: 0.3s;
}
#success-page .success-page_list .pnavi .page-numbers:hover::after {
  left: -25px;
  transform: translateX(50%);
  transition: 0.3s;
}
#success-page .success-page_list .pnavi .page-numbers.current {
  background-color: #006d68;
  color: #fff;
  border: none;
}
#success-page .success-page_list .pnavi .prev {
  display: none;
}
#success-page .success-page_list .pnavi .next.page-numbers {
  display: none;
}
#success-page .success-page_list .pnavi .page-numbers.dots {
  border: none;
}
#success-page .success-page_list .pnavi .page-numbers.dots:hover {
  color: #006d68;
  border: none;
  transition: 0;
}
#success-page .success-page_list .pnavi .page-numbers.dots:hover::before {
  display: none;
}
#success-page .success-page_list .pnavi .page-numbers.dots:hover::after {
  display: none;
}

#success-detail-page .success-detail-page_breadcrumb {
  width: 100%;
  height: 50px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
}
#success-detail-page .success-detail-page_breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1336px;
  width: 95%;
  height: 100%;
  margin: -1px auto 1px;
}
#success-detail-page .success-detail-page_breadcrumb ul li {
  margin-right: 11px;
}
#success-detail-page .success-detail-page_breadcrumb ul li a {
  display: block;
}
#success-detail-page .success-detail-page_breadcrumb ul li a p {
  line-height: 50px;
}
#success-detail-page .success-detail-page_breadcrumb ul li.home p {
  font-size: 14px;
  color: #cbcbcb;
  margin-left: -1px;
}
#success-detail-page .success-detail-page_breadcrumb ul li.icon i {
  color: #cbcbcb;
  font-size: 10px;
  transform: scale(0.64);
  margin: 0 1px 6px 0px;
}
#success-detail-page .success-detail-page_breadcrumb ul li.success p {
  color: #cbcbcb;
  font-size: 14px;
  margin-left: -2px;
  padding-right: 2px;
}
#success-detail-page .success-detail-page_breadcrumb ul li.category p {
  color: #cbcbcb;
  font-size: 14px;
}
#success-detail-page .success-detail-page_breadcrumb ul li.title p {
  color: #333;
  font-size: 14px;
  margin-left: -3px;
}
#success-detail-page .success-detail-page_fv {
  height: 480px;
  background: url(../img/success/success_fv.png) no-repeat center center/cover;
  position: relative;
}
#success-detail-page .success-detail-page_fv > h1 {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 52px;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
#success-detail-page .success-detail-page_fv > h1 > span {
  display: block;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 30px 0 0 0;
}
#success-detail-page .success-detail-page_fv::before {
  position: absolute;
  z-index: 3;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 109, 104) 0%, rgb(255, 255, 255) 83.93%);
  opacity: 0.4;
}
#success-detail-page .success-detail-page_fv::after {
  position: absolute;
  z-index: 4;
  content: "";
  width: 28.91%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: url(../img/fv-decoration_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner {
  padding: 116px 0 150px;
  max-width: 1056px;
  width: 90%;
  margin: 0 auto;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner > h2 {
  font-size: 22px;
  color: #222;
  letter-spacing: 0.04em;
  font-weight: bold;
  border-bottom: 2px solid #d6d6d6;
  padding-bottom: 20px;
  line-height: 1.2;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner > p.category {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #666;
  margin-top: 15px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item > h3 {
  font-size: 20px;
  color: #222;
  letter-spacing: 0.04em;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item > h3::before {
  content: "";
  border-top: 2px solid #006b67;
  width: 18px;
  border-radius: 2px;
  margin: 1px 12px 0 0;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item > p {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-top: 13px;
  line-height: 1.72;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.overview {
  margin-top: 80px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.purpose {
  margin-top: 73px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.purpose > h4 {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin: 32px 0 0 1px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.purpose ul {
  margin-bottom: 34px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.purpose ul li {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-top: 13px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.suggestion {
  margin-top: 66px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.suggestion ul {
  margin-top: 19px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.suggestion ul li {
  font-size: 18px;
  letter-spacing: 0.08em;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.suggestion ul li:last-child {
  margin-top: 13px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.suggestion > p {
  margin-top: 35px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.merit {
  margin-top: 76px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.merit ul {
  margin-top: 19px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.merit ul li {
  font-size: 18px;
  letter-spacing: 0.08em;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.merit ul li:not(:first-child) {
  margin-top: 13px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.merit > p {
  margin-top: 38px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.revenue {
  margin-top: 71px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service {
  margin-top: 74px;
  margin-bottom: 76px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service > ul.show_1024 {
  display: none;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service ul {
  display: flex;
  justify-content: space-between;
  max-width: 1056px;
  width: 100%;
  margin-top: 43px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service ul li {
  width: 24.29%;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service ul li a {
  display: block;
  height: auto;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service ul li a > .img-box {
  position: relative;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service ul li a > .img-box img {
  object-fit: cover;
  vertical-align: middle;
  width: 100%;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service ul li a > .img-box > .name {
  background-color: #006b67;
  max-width: 229px;
  width: 95%;
  height: 56px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: absolute;
  left: 0;
  bottom: -27px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .item.service ul li a > .img-box > .name p {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: -3px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation {
  width: 70%;
  max-width: 395.123px;
  margin: 0 auto;
  height: 35.5263px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul li a img {
  width: 100%;
  object-fit: cover;
  padding: 0;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul .prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: -2px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul .prev a {
  position: relative;
  font-size: 22px;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
  color: #006d68;
  font-weight: 700;
  padding-left: 33px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul .prev a::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 13.492px;
  height: 13.1052px;
  background: url(../image/news/single_arrow_prev_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul .next {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: -2px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul .next a {
  font-size: 22px;
  letter-spacing: 0.04em;
  font-family: "Lato", sans-serif;
  color: #006d68;
  font-weight: 700;
  padding-right: 33px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .media-single_pagenation ul .next a::before {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 13.492px;
  height: 13.1052px;
  background: url(../image/news/single_arrow_next_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap {
  display: flex;
  max-width: 395px;
  margin: 53px auto 0;
  gap: 0 100px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .prev,
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .next {
  max-width: 80px;
  width: 100%;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .prev a,
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .next a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .prev a > p,
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .next a > p {
  color: #006d68;
  font-size: 22px;
  letter-spacing: 0.04em;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .prev a > i,
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .next a > i {
  color: #006d68;
  margin-top: 6px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .next {
  max-width: 84px;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .success-page_button {
  margin: -1px 0 0 0;
}
#success-detail-page .success-detail-page_article .success-detail-page_article_inner .article-button-wrap .success-page_button a {
  display: block;
  width: 30px;
  height: 30px;
}

.pointer-events {
  pointer-events: none;
}

#privacy-policy-page .privacy_fv::before {
  display: none;
}
#privacy-policy-page .privacy_fv h1 {
  color: #333;
  left: 30.46%;
}
#privacy-policy-page .privacy_fv h1 span {
  color: #333;
}
#privacy-policy-page .privacy-policy_contents {
  padding: 159px 0 302px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner > h1 {
  font-size: 40px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #333;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .enactment {
  margin-top: 75px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .enactment > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  font-weight: bold;
  line-height: 1.62;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .enactment > p > span.year {
  margin: 0 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .enactment > p > span.month {
  margin: 0 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .enactment > p > span.day {
  margin: 0 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .enactment > p > span.address {
  margin: 0 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection {
  margin-top: 63px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > h2 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #007169;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.62;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > p:nth-of-type(1) {
  margin-top: 35px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul {
  margin-top: 34px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul li > h3 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #333;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul li > h3 span {
  margin-right: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul li > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  margin-top: 6px;
  line-height: 1.622;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul li > p span.margin-adjustment01 {
  margin-left: -7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul li > p span.margin-adjustment02 {
  margin-left: -2px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul li:not(:first-child) {
  margin-top: 21.5px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul > li:nth-of-type(4) {
  margin-top: 27px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > ul > li:nth-of-type(5) {
  margin-top: 25px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > p:nth-of-type(2) {
  margin-top: 54px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .privacy-protection > p:nth-of-type(2) span.bold {
  font-weight: bold;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .information {
  margin-top: 34px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .information > h2 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #007169;
  margin-left: -8px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .information > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.57;
  margin-top: 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .information > p span.lato {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-family: lato, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .information > p span.margin-adjustment04 {
  margin-left: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .information > p span.margin-adjustment05 {
  margin-right: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published {
  margin-top: 36px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > h2 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #007169;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul {
  margin-top: 40px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li > h4 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #333;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li > h4 > span {
  margin-right: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  margin-top: 10px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(1) table {
  width: 100%;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  margin-top: 22px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(1) table tr th {
  background-color: #c6e1e0;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 480px;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(1) table tr td {
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 480px;
  padding: 10px 0px 7px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(1) table tr:nth-of-type(3) td:nth-of-type(1) {
  padding: 8px 0px 8px 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(1) table tr:nth-of-type(3) td:nth-of-type(2) {
  padding: 8px 0px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:not(:first-child) {
  margin-top: 28px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul {
  margin-top: 10px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li > h5 {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  margin-left: 16px;
  margin-top: 10px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li > p span.margin-adjustment07 {
  margin-left: 9px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:not(:first-child) {
  margin-top: 10px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(3) > p {
  line-height: 1.6;
  margin-top: 6px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(3) table {
  width: 100%;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  margin-top: 18px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(3) table tr th {
  background-color: #c6e1e0;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 480px;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(3) table tr td {
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 480px;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(3) table tr:nth-of-type(3) td:nth-of-type(1) {
  padding: 8px 0px 8px 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(3) table tr:nth-of-type(3) td:nth-of-type(2) {
  padding: 8px 0px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(4) {
  margin-top: 28px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(4) table {
  width: 100%;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  margin-top: 22px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(4) table tr th {
  background-color: #c6e1e0;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 287px;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(4) table tr td {
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 480px;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(4) table tr:nth-of-type(3) td:nth-of-type(1) {
  padding: 8px 0px 8px 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(4) table tr:nth-of-type(3) td:nth-of-type(2) {
  padding: 8px 0px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(5) {
  margin-top: 28px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(5) table {
  width: 100%;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  margin-top: 22px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(5) table tr th {
  background-color: #c6e1e0;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 287px;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(5) table tr td {
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 480px;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  vertical-align: middle;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(5) table tr:nth-of-type(3) td:nth-of-type(1) {
  padding: 8px 0px 8px 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(5) table tr:nth-of-type(3) td:nth-of-type(2) {
  padding: 8px 0px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(5) > p {
  margin-left: -8px;
  margin-top: 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(6) {
  margin-top: 36px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(2) > ul > li:nth-of-type(6) > p {
  margin-left: 8px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(3) {
  margin-top: 46px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(3) > h4 > span {
  margin-right: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(3) > p {
  line-height: 1.61;
  margin-top: 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(3) > p > span.margin-adjustment08 {
  margin-left: 5px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(3) > p > span.margin-adjustment09 {
  margin-left: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(3) > p > span.margin-adjustment10 {
  margin-left: 6px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul > li:nth-of-type(3) > p > span.margin-adjustment11 {
  margin-left: -8px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > h3 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #333;
  margin-top: 46px;
  margin-left: -8px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul:nth-of-type(2) {
  margin-top: 10px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul:nth-of-type(2) > li > h4 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #333;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul:nth-of-type(2) > li > h4 > span.margin-adjustment12 {
  margin-right: -3px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul:nth-of-type(2) > li > h4 a {
  margin-left: -8px;
  color: #007169;
  text-decoration: underline;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul:nth-of-type(2) > li > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.6;
  margin-left: 17px;
  margin-top: 7px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul:nth-of-type(2) > li:nth-of-type(2) {
  margin-top: 20px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > ul:nth-of-type(2) > li:nth-of-type(2) > span.margin-adjustment13 {
  margin-right: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > h3:nth-of-type(2) {
  margin-top: 10px;
  margin-left: 8px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > p.address {
  margin-top: 7px;
  margin-left: 17px;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > p.address > span.margin-adjustment14 {
  margin: 0 6px 0 3px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > p.address > span.margin-adjustment15 {
  margin-left: 4px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > p.address > span.margin-adjustment16 {
  margin-left: 10px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .published > p.message {
  margin-top: 10px;
  margin-top: 21px;
  line-height: 1.61;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .recruitment {
  margin-top: 35px;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .recruitment > h2 {
  color: #007169;
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .recruitment > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  margin-top: 34px;
  line-height: 1.63;
}
#privacy-policy-page .privacy-policy_contents .privacy-policy_contents_inner .recruitment > a {
  color: #007169;
  letter-spacing: 0.04em;
  margin: 5px 0 0 -8px;
  display: block;
  text-decoration: underline;
}
#privacy-policy-page br.show_640 {
  display: none;
}

#thanks-page #under_fv h1 {
  top: 40.2%;
  left: 38.3%;
}
#thanks-page #under_fv h1 span {
  margin-top: 29px;
}
#thanks-page .thanks-page_breadcrumb {
  width: 100%;
  height: 50px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
}
#thanks-page .thanks-page_breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1336px;
  width: 95%;
  height: 100%;
  margin: -1px auto 0;
}
#thanks-page .thanks-page_breadcrumb ul li {
  margin-right: 9.5px;
}
#thanks-page .thanks-page_breadcrumb ul li a {
  display: block;
}
#thanks-page .thanks-page_breadcrumb ul li a p {
  line-height: 50px;
}
#thanks-page .thanks-page_breadcrumb ul li.home p {
  font-size: 14px;
  color: #cbcbcb;
  letter-spacing: 0.08em;
}
#thanks-page .thanks-page_breadcrumb ul li.icon i {
  color: #cbcbcb;
  font-size: 12px;
  transform: scale(0.64);
  margin: 0 0 4px -2px;
}
#thanks-page .thanks-page_breadcrumb ul li.contact p {
  color: #333;
  font-size: 14px;
}
#thanks-page .thanks-page_fv {
  height: 480px;
  background: url(../img/thanks/thanks_fv.png) no-repeat center center/cover;
  position: relative;
}
#thanks-page .thanks-page_fv > h1 {
  position: absolute;
  top: 51.1%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 52px;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
#thanks-page .thanks-page_fv > h1 > span {
  display: block;
  font-size: 24px;
  color: #fff;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 28px 0 0 3px;
  letter-spacing: 0.08em;
}
#thanks-page .thanks-page_fv::before {
  position: absolute;
  z-index: 3;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 109, 104) 0%, rgb(255, 255, 255) 83.93%);
  opacity: 0.4;
}
#thanks-page .thanks-page_fv::after {
  position: absolute;
  z-index: 4;
  content: "";
  width: 28.91%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: url(../img/fv-decoration_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
#thanks-page .thanks-page_steps > ul.steps {
  display: flex;
  height: 64px;
}
#thanks-page .thanks-page_steps > ul.steps > li {
  width: 33.3333333333%;
  align-items: center;
  display: flex;
  justify-content: end;
}
#thanks-page .thanks-page_steps > ul.steps > li > p {
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 0 38px 7px 0;
}
#thanks-page .thanks-page_steps > ul.steps > li > p > span {
  font-size: 15px;
  letter-spacing: 0.04em;
  font-family: lato, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 2px;
  color: #323232;
}
#thanks-page .thanks-page_steps > ul.steps li.white {
  background-color: #f1f1f1;
  border: 1px solid #fff;
  box-sizing: border-box;
}
#thanks-page .thanks-page_steps > ul.steps li.white p {
  color: #323232;
}
#thanks-page .thanks-page_steps > ul.steps li.black {
  background-color: #333;
}
#thanks-page .thanks-page_steps > ul.steps li.black p {
  color: #fff;
}
#thanks-page .thanks-page_steps > ul.steps li.black p > span {
  color: #fff;
}
#thanks-page .thanks-page_message {
  max-width: 600px;
  margin: 0 auto;
  width: 90%;
  padding: 161px 0 155px;
}
#thanks-page .thanks-page_message > h1 {
  font-size: 46px;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: -3px;
  line-height: 1.2;
}
#thanks-page .thanks-page_message > p {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 22px 0px 0 0;
  line-height: 1.7;
  color: #323232;
}
#thanks-page .thanks-page_message > p a {
  color: #006d68;
  text-decoration: underline;
}
#thanks-page .thanks-page_message .thanks-page_button {
  width: 357px;
  margin: 76px auto 0;
  display: flex;
  align-items: center;
}
#thanks-page .thanks-page_message .thanks-page_button a {
  text-decoration: none;
  background-color: #006d68;
  border-radius: 27.5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 40px 0 100px;
}
#thanks-page .thanks-page_message .thanks-page_button a p {
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: bold;
  padding-bottom: 1px;
}
#thanks-page .thanks-page_message .thanks-page_button a .circle {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(252, 252, 252, 0.48), 0px 0px 5px rgba(17, 17, 17, 0.3), inset 0px 0px 5px transparent, inset 0px 0px 0px transparent;
  transition: 0.3s;
}
#thanks-page .thanks-page_message .thanks-page_button a .circle i {
  color: #fff;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 19px;
}
#thanks-page .thanks-page_message .thanks-page_button a:hover .circle {
  box-shadow: 0px 0px 5px transparent, 0px 0px 5px transparent, inset 0px 0px 5px rgb(17, 17, 17), inset 0px 0px 5px rgba(252, 252, 252, 0.48);
}

#service-page #under_fv > h1 span {
  margin: 21px 0 0 -11px;
}
#service-page .service-page_fv_under {
  padding: 96px 4.5% 85px 9%;
  background: url(../image/service/service_img01.png) no-repeat center center/cover;
}
#service-page .service-page_fv_under .service-page_fv_under_inner {
  max-width: 1056px;
  width: 90%;
  margin: 0 auto;
}
#service-page .service-page_fv_under .service-page_fv_under_inner > h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  color: #fff;
  line-height: 1.2;
}
#service-page .service-page_fv_under .service-page_fv_under_inner > p {
  font-size: 18px;
  letter-spacing: 0.039em;
  color: #fff;
  margin-top: 2.1875em;
  line-height: 2.19;
}
#service-page .service-page_service-list {
  padding: 120px 0 271px;
}
#service-page .service-page_service-list > ul li {
  max-width: 1252px;
  margin: 0 auto;
  width: 90%;
  position: relative;
}
#service-page .service-page_service-list > ul li .service-page_list_detail {
  max-width: 625px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.32);
  background-color: #fff;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner {
  padding: 100px 0;
  max-width: 494px;
  margin: 0 auto;
  width: 90%;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner > h3 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner > h3 > span {
  font-size: 14px;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  color: #007369;
  margin-top: 22px;
  letter-spacing: 0;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner > p {
  font-size: 18px;
  letter-spacing: 0.039em;
  margin-top: 47px;
  line-height: 2.2;
  color: #222;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner .service-page_view-more {
  width: 279px;
  margin: 52px 0 0;
  display: flex;
  align-items: center;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner .service-page_view-more > a {
  text-decoration: none;
  background-color: #006d68;
  border-radius: 27.5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 25px 0 33px;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner .service-page_view-more > a > p {
  font-size: 18px;
  letter-spacing: 0.039em;
  color: #fff;
  font-weight: bold;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner .service-page_view-more > a > .circle {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(252, 252, 252, 0.48), 0px 0px 5px rgba(17, 17, 17, 0.3), inset 0px 0px 5px transparent, inset 0px 0px 0px transparent;
  transition: 0.3s;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner .service-page_view-more > a > .circle > i {
  color: #fff;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 19px;
}
#service-page .service-page_service-list > ul li .service-page_list_detail .service-page_list_detail_inner .service-page_view-more > a:hover .circle {
  box-shadow: 0px 0px 5px transparent, 0px 0px 5px transparent, inset 0px 0px 5px rgb(17, 17, 17), inset 0px 0px 5px rgba(252, 252, 252, 0.48);
}
#service-page .service-page_service-list > ul li.service-page_small-amount-insurance::after {
  display: block;
  max-width: 900px;
  width: 90%;
  height: 86%;
  content: "";
  background-image: url(../image/service/service_img02.png);
  background-size: cover;
  z-index: -1;
  position: absolute;
  top: 201px;
  right: -7.5%;
}
#service-page .service-page_service-list > ul li.service-page_captive {
  max-width: 1278px;
}
#service-page .service-page_service-list > ul li.service-page_captive::after {
  display: block;
  max-width: 900px;
  width: 90%;
  height: 86%;
  content: "";
  background-image: url(../image/service/service_img03.png);
  background-size: cover;
  z-index: -1;
  position: absolute;
  top: 200px;
  left: -6.35%;
}
#service-page .service-page_service-list > ul li.service-page_captive .service-page_list_detail {
  margin-left: auto;
}
#service-page .service-page_service-list > ul li.service-page_captive .service-page_list_detail .service-page_list_detail_inner > p {
  margin-top: 45px;
}
#service-page .service-page_service-list > ul li.service-page_captive .service-page_list_detail .service-page_view-more {
  margin: 54px 0 0;
}
#service-page .service-page_service-list > ul li.service-page_aid-cooperative::after {
  display: block;
  max-width: 900px;
  width: 90%;
  height: 514px;
  content: "";
  background-image: url(../image/service/service_img04.png);
  background-size: cover;
  z-index: -1;
  position: absolute;
  top: 200px;
  right: -94px;
}
#service-page .service-page_service-list > ul li.service-page_aid-cooperative .service-page_list_detail_inner {
  padding: 99px 0 101px;
}
#service-page .service-page_service-list > ul li.service-page_aid-cooperative .service-page_list_detail_inner > h3 {
  line-height: 1.2;
}
#service-page .service-page_service-list > ul li.service-page_aid-cooperative .service-page_list_detail_inner > h3 span {
  margin-top: 23px;
}
#service-page .service-page_service-list > ul li.service-page_aid-cooperative .service-page_list_detail_inner > p {
  margin-top: 46px;
  line-height: 2.18;
}
#service-page .service-page_service-list > ul li.service-page_aid-cooperative .service-page_list_detail_inner .service-page_view-more {
  margin: 53px 0 0;
}
#service-page .service-page_service-list > ul li.service-page_reinsurance {
  max-width: 1278px;
}
#service-page .service-page_service-list > ul li.service-page_reinsurance::after {
  display: block;
  max-width: 900px;
  width: 90%;
  height: 514px;
  content: "";
  background-image: url(../image/service/service_img05.png);
  background-size: cover;
  z-index: -1;
  position: absolute;
  top: 168px;
  left: -81px;
}
#service-page .service-page_service-list > ul li.service-page_reinsurance .service-page_list_detail {
  margin-left: auto;
}
#service-page .service-page_service-list > ul li.service-page_reinsurance .service-page_list_detail .service-page_list_detail_inner {
  padding: 99px 0 101px;
}
#service-page .service-page_service-list > ul li.service-page_reinsurance .service-page_list_detail .service-page_list_detail_inner > h3 span {
  margin-top: 23px;
}
#service-page .service-page_service-list > ul li.service-page_reinsurance .service-page_list_detail .service-page_list_detail_inner > p {
  margin-top: 45px;
}
#service-page .service-page_service-list > ul li.service-page_reinsurance .service-page_list_detail .service-page_list_detail_inner .service-page_view-more {
  margin: 56px 0 0;
}
#service-page .service-page_service-list > ul li.service-page_captive,
#service-page .service-page_service-list > ul li.service-page_aid-cooperative,
#service-page .service-page_service-list > ul li.service-page_reinsurance {
  margin-top: 239px;
}

#news-page .news-page_breadcrumb {
  width: 100%;
  height: 50px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
}
#news-page .news-page_breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1336px;
  width: 95%;
  height: 100%;
  margin: -1px auto 1px;
}
#news-page .news-page_breadcrumb ul li {
  margin-right: 10px;
}
#news-page .news-page_breadcrumb ul li a {
  display: block;
}
#news-page .news-page_breadcrumb ul li a p {
  line-height: 50px;
}
#news-page .news-page_breadcrumb ul li.home p {
  font-size: 14px;
  color: #cbcbcb;
  letter-spacing: 0.08em;
  margin-left: -1px;
}
#news-page .news-page_breadcrumb ul li.icon i {
  color: #cbcbcb;
  font-size: 12px;
  transform: scale(0.64);
  margin: 0 1px 4px -2px;
}
#news-page .news-page_breadcrumb ul li.news p {
  color: #333;
  font-size: 14px;
}
#news-page .news-page_fv {
  height: 480px;
  position: relative;
  background: url(../img/news/news_fv.png) no-repeat center center/cover;
}
#news-page .news-page_fv > h1 {
  position: absolute;
  top: 50.2%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 52px;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
#news-page .news-page_fv > h1 > span {
  display: block;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: #fff;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 20px 0 0 0;
}
#news-page .news-page_fv::before {
  position: absolute;
  z-index: 3;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 109, 104) 0%, rgb(255, 255, 255) 83.93%);
  opacity: 0.4;
}
#news-page .news-page_fv::after {
  position: absolute;
  z-index: 4;
  content: "";
  width: 28.91%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: url(../img/fv-decoration_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
#news-page .news-page_list {
  padding: 144px 0 162px;
}
#news-page .news-page_list > ul {
  display: flex;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
#news-page .news-page_list > ul > li {
  width: 33.3333333333%;
}
#news-page .news-page_list > ul > li a {
  padding: 48px 0 47px;
  display: block;
  transition: box-shadow 0.3s;
}
#news-page .news-page_list > ul > li a .news-page_list_inner {
  width: 84%;
  margin: 0 auto;
}
#news-page .news-page_list > ul > li a .news-page_list_inner p.date {
  font-size: 16px;
  font-family: lato, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #666;
  letter-spacing: 0.08em;
}
#news-page .news-page_list > ul > li a .news-page_list_inner p.title {
  font-size: 18px;
  color: #222;
  font-weight: bold;
  padding-top: 31px;
  letter-spacing: 0.039em;
  line-height: 1.75;
}
#news-page .news-page_list > ul > li a .news-page_list_inner .view-more {
  display: flex;
  max-width: 161.5px;
  padding-top: 13px;
  justify-content: space-between;
}
#news-page .news-page_list > ul > li a .news-page_list_inner .view-more > p {
  font-size: 16px;
  color: #006b67;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-left: 2px;
}
#news-page .news-page_list > ul > li a .news-page_list_inner .view-more .img-box {
  max-width: 72px;
}
#news-page .news-page_list > ul > li a .news-page_list_inner .view-more .img-box img {
  object-fit: cover;
  vertical-align: middle;
  width: 100%;
}
#news-page .news-page_list > ul > li a:hover {
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.16);
}
#news-page .news-page_list .pnavi {
  width: 16.71%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#news-page .news-page_list .pnavi .page-numbers {
  font-size: 18px;
  font-weight: bold;
  background: transparent;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 0.5px solid #c6e1e0;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
#news-page .news-page_list .pnavi .page-numbers .right,
#news-page .news-page_list .pnavi .page-numbers .left {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -1px;
  display: block;
  width: 4px;
  height: 4px;
  background: url(../image/media/media_pnavi_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#news-page .news-page_list .pnavi .page-numbers .left {
  top: auto;
  right: auto;
  bottom: -1px;
  left: -1px;
  background: url(../image/media/media_pnavi_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#news-page .news-page_list .pnavi .page-numbers::before, #news-page .news-page_list .pnavi .page-numbers::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: transform ease 0.3s;
  display: block;
  box-sizing: border-box;
}
#news-page .news-page_list .pnavi .page-numbers::before {
  right: 0px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #006d68;
  transform: translateX(-100%);
}
#news-page .news-page_list .pnavi .page-numbers::after {
  left: 0px;
  border-left: 50px solid transparent;
  border-top: 50px solid #006d68;
  transform: translateX(100%);
}
#news-page .news-page_list .pnavi .page-numbers:hover {
  color: #fff;
  border: none;
  transition: 0.3s;
}
#news-page .news-page_list .pnavi .page-numbers:hover::before {
  right: -25px;
  transform: translateX(-49%);
  transition: 0.3s;
}
#news-page .news-page_list .pnavi .page-numbers:hover::after {
  left: -25px;
  transform: translateX(50%);
  transition: 0.3s;
}
#news-page .news-page_list .pnavi .page-numbers.current {
  background-color: #006d68;
  color: #fff;
  border: none;
}
#news-page .news-page_list .pnavi .prev {
  display: none;
}
#news-page .news-page_list .pnavi .next {
  display: none;
}
#news-page .news-page_list .pnavi .page-numbers.dots {
  border: none;
}
#news-page .news-page_list .pnavi .page-numbers.dots:hover {
  color: #006d68;
  border: none;
  transition: 0;
}
#news-page .news-page_list .pnavi .page-numbers.dots:hover::before {
  display: none;
}
#news-page .news-page_list .pnavi .page-numbers.dots:hover::after {
  display: none;
}

#service-ri-page #under_fv h1 {
  left: 34%;
  top: 40%;
}
#service-ri-page #under_fv h1 span {
  margin-top: 21px;
  margin-left: 19px;
}
#service-ri-page #ri-page_setup {
  padding: 68px 13.1% 0 13.1%;
}
#service-ri-page #ri-page_setup h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 39px;
}
#service-ri-page #ri-page_setup h2 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 16px;
  margin-left: 1px;
}
#service-ri-page #ri-page_setup p {
  font-size: 18px;
  line-height: 2.1875em;
  font-weight: 400;
  letter-spacing: 0.039em;
}
#service-ri-page #ri-page_setup div {
  padding: 77px 13.9% 0 14.4%;
}
#service-ri-page #ri-page_provided {
  padding-top: 158px;
}
#service-ri-page #ri-page_provided h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 39px;
  text-align: center;
	line-height:1.5em;
}
#service-ri-page #ri-page_provided h2 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 22px;
  margin-left: 1px;
}
#service-ri-page #ri-page_provided ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 41px 8.3% 40px 8.3%;
}
#service-ri-page #ri-page_provided ul li {
  width: 48.4%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  padding: 37px 0 103px 0;
  border-radius: 19px;
  margin-bottom: 39px;
}
#service-ri-page #ri-page_provided ul li h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 58px;
}
#service-ri-page #ri-page_provided ul li figure {
  width: 71%;
  margin: 0 auto;
  transform: translateX(7px);
}
#service-ri-page #ri-page_provided ul li p {
  font-size: 18px;
  line-height: 1.625em;
  font-weight: 400;
  letter-spacing: 0.039em;
  width: 64%;
  margin: 0 auto;
  margin-top: 43px;
}
#service-ri-page #ri-page_provided ul li:nth-child(2) h3 {
  margin-bottom: 50px;
}
#service-ri-page #ri-page_provided ul li:nth-child(2) figure {
  width: 64%;
  margin: 0 auto;
  transform: translateX(6px);
}
#service-ri-page #ri-page_provided ul li:nth-child(2) p {
  margin-top: 29px;
}
#service-ri-page #ri-page_provided ul li:nth-child(3) h3 {
  margin-bottom: 49px;
}
#service-ri-page #ri-page_provided ul li:nth-child(3) figure {
  width: 79%;
  margin: 0 auto;
  transform: translateX(1px);
}
#service-ri-page #ri-page_provided ul li:nth-child(3) p {
  margin-top: 34px;
}
#service-ri-page #ri-page_provided ul li:nth-child(4) h3 {
  margin-bottom: 51px;
}
#service-ri-page #ri-page_provided ul li:nth-child(4) figure {
  width: 72%;
  margin: 0 auto;
  transform: translateX(-22px);
}
#service-ri-page #ri-page_provided ul li:nth-child(4) p {
  margin-top: 48px;
}
#service-ri-page #ri-page_case {
  position: relative;
  padding: 79px 11.2% 0 11.2%;
}
#service-ri-page #ri-page_case h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 48px;
}
#service-ri-page #ri-page_case h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 19px;
}
#service-ri-page #ri-page_case p {
  margin-top: 36px;
  font-size: 16px;
  letter-spacing: 0.039em;
  line-height: 2em;
  font-weight: 500;
}
#service-ri-page #ri-page_case .slider_r-i {
  width: 106vw;
  margin-top: 69px;
  margin-left: -14.1vw;
  margin-bottom: 30px;
}
#service-ri-page #ri-page_case .slider_r-i li {
  margin: 0 16px;
}
#service-ri-page #ri-page_case .slider_r-i li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#service-ri-page #ri-page_case .slider_r-i li a figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
#service-ri-page #ri-page_case .slider_r-i li a h3 {
  display: flex;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 24px;
  font-weight: bold;
  margin-top: 22px;
  position: relative;
  padding: 0px 16px;
}
#service-ri-page #ri-page_case .slider_r-i li a p {
  font-size: 18px;
  height: auto;
  min-height: 320px;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
  margin-top: 13px;
  padding: 0 16px 16px;
  background: #fff;
  position: relative;
  margin-bottom: 10px;
}
#service-ri-page #ri-page_case .slider_r-i li a p::after {
  content: "";
  display: block;
  width: 94%;
  height: 50%;
  position: absolute;
  left: 3%;
  bottom: -1px;
  z-index: -1;
  background: #000;
  opacity: 0.15;
  filter: blur(6px);
}
#service-ri-page #ri-page_case .slider_r-i li a:hover .anime_btn div .circle_wrap svg .circle_back {
  stroke-dashoffset: 480;
  transform: rotate(270deg);
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1), transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
}
#service-ri-page #ri-page_case .slider_r-i .slick-arrow {
  left: unset;
  right: 100px;
  top: -128px;
  z-index: 3;
  transform: unset;
  background: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 5px 5px 14px 0px rgba(0, 0, 0, 0.16);
}
#service-ri-page #ri-page_case .slider_r-i .slick-prev {
  right: 18.1%;
  transition: 0.5s;
}
#service-ri-page #ri-page_case .slider_r-i .slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  color: #006b67;
  text-align: center;
  opacity: 1;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-ri-page #ri-page_case .slider_r-i .slick-prev:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-ri-page #ri-page_case .slider_r-i .slick-prev:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-ri-page #ri-page_case .slider_r-i .slick-next {
  right: 13.4%;
  transition: 0.5s;
}
#service-ri-page #ri-page_case .slider_r-i .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  color: #006b67;
  opacity: 1;
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-ri-page #ri-page_case .slider_r-i .slick-next:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-ri-page #ri-page_case .slider_r-i .slick-next:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-ri-page #ri-page_setup-jrsl {
  padding: 110px 10% 60px 15.5%;
}
#service-ri-page #ri-page_setup-jrsl h2 {
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 22px;
}
#service-ri-page #ri-page_setup-jrsl h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: -9px;
}
#service-ri-page #ri-page_setup-jrsl p {
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2.1875em;
  font-weight: 500;
}
#service-ri-page #ri-page_setup-jrsl p span {
  display: block;
  padding-left: 3.6%;
}
#service-ri-page #ri-page_bespoke-service {
  padding: 90px 13.4% 40px 13.4%;
}
#service-ri-page #ri-page_bespoke-service h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 38px;
  text-align: center;
}
#service-ri-page #ri-page_bespoke-service h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 19px;
}
#service-ri-page #ri-page_bespoke-service ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  justify-content: space-between;
}
#service-ri-page #ri-page_bespoke-service ul li {
  background: #f4f4f2;
  width: 48.4%;
  padding: 26px 2.9% 52px 2.9%;
  margin-bottom: 30px;
}
#service-ri-page #ri-page_bespoke-service ul li h3 {
  background: #007769;
  color: #fff;
  font-size: 18px;
	line-height:1.5em;
  letter-spacing: 0.039em;
  font-weight: bold;
  padding: 11px 6px 12px 6px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
#service-ri-page #ri-page_bespoke-service ul li h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
#service-ri-page #ri-page_bespoke-service ul li h3::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  transform: rotate(180deg);
}
#service-ri-page #ri-page_bespoke-service ul li p {
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
  padding-right: 1px;
}
#service-ri-page #ri-page_bespoke-service ul li:nth-child(4) p {
  padding-right: 0;
}
#service-ri-page #ri-page_products {
  padding: 71px 11.7% 98px 13.4%;
}
#service-ri-page #ri-page_products h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 38px;
  text-align: center;
  padding-right: 24px;
}
#service-ri-page #ri-page_products h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 19px;
}
#service-ri-page #ri-page_products ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 79px;
}
#service-ri-page #ri-page_products ul li {
  width: 47.4%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  padding: 32px 2px 0 0;
  margin-bottom: 53px;
}
#service-ri-page #ri-page_products ul li h3 {
  padding-left: calc(30px + 4%);
  padding-right: 4%;
}
#service-ri-page #ri-page_products ul li h3 div {
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.039em;
  font-weight: bold;
  position: relative;
  padding-left: 2px;
}
#service-ri-page #ri-page_products ul li h3 div span {
  display: block;
  width: 20px;
  position: absolute;
  left: -29px;
  top: -2px;
}
#service-ri-page #ri-page_products ul li p {
  font-size: 18px;
  line-height: 1.625em;
  letter-spacing: 0.039em;
  font-weight: 400;
  padding: 20px 4% 23px 4.2%;
}

#service-mac-page #under_fv h1 {
  left: 20.8%;
  top: 40.2%;
}
#service-mac-page #under_fv h1 span {
  margin-top: 21px;
  margin-left: -2px;
}
#service-mac-page #mac-page_setup {
  padding: 67px 13.4% 60px 13.4%;
}
#service-mac-page #mac-page_setup h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 36px;
}
#service-mac-page #mac-page_setup h2 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 20px;
}
#service-mac-page #mac-page_setup p {
  font-size: 18px;
  line-height: 2.1875em;
  font-weight: 400;
  letter-spacing: 0.039em;
}
#service-mac-page #mac-page_setup div {
  padding: 33px 10.6% 0 14.3%;
}
#service-mac-page #mac-page_about {
  padding: 90px 9% 60px 8.3%;
}
#service-mac-page #mac-page_about ul {
  margin-top: 47px;
  padding: 70px 5.6% 1px 5.6%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
}
#service-mac-page #mac-page_about ul li {
  margin-bottom: 73px;
}
#service-mac-page #mac-page_about ul li h3 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 40px;
}
#service-mac-page #mac-page_about ul li h3 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 21px;
}
#service-mac-page #mac-page_about ul li p {
  font-size: 18px;
  line-height: 2.1875em;
  font-weight: 400;
  letter-spacing: 0.039em;
}
#service-mac-page #mac-page_about ul li:nth-child(2) {
  margin-bottom: 66px;
}
#service-mac-page #mac-page_about ul li:nth-child(2) h3 {
  margin-bottom: 46px;
}
#service-mac-page #mac-page_provided {
  padding-top: 97px;
}
#service-mac-page #mac-page_provided h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 39px;
  text-align: center;
	line-height:1.5em;
}
#service-mac-page #mac-page_provided h2 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 19px;
  margin-left: 1px;
	
}
#service-mac-page #mac-page_provided ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 48px 8.3% 40px 8.3%;
}
#service-mac-page #mac-page_provided ul li {
  width: 48.4%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  padding: 36px 0 79px 0;
  border-radius: 19px;
  margin-bottom: 39px;
}
#service-mac-page #mac-page_provided ul li h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 51px;
}
#service-mac-page #mac-page_provided ul li figure {
  width: 74%;
  margin: 0 auto;
  transform: translateX(-9px);
}
#service-mac-page #mac-page_provided ul li p {
  font-size: 18px;
  line-height: 1.625em;
  font-weight: 400;
  letter-spacing: 0.039em;
  width: 62%;
  margin: 0 auto;
  margin-top: 34px;
}
#service-mac-page #mac-page_provided ul li:nth-child(2) h3 {
  margin-bottom: 50px;
}
#service-mac-page #mac-page_provided ul li:nth-child(2) figure {
  width: 76%;
  margin: 0 auto;
  transform: translateX(-11px);
}
#service-mac-page #mac-page_provided ul li:nth-child(2) p {
  margin-top: 46px;
}
#service-mac-page #mac-page_provided ul li:nth-child(3) h3 {
  margin-bottom: 44px;
  transform: translateX(10px);
}
#service-mac-page #mac-page_provided ul li:nth-child(3) figure {
  width: 66%;
  margin: 0 auto;
  transform: translateX(3px);
}
#service-mac-page #mac-page_provided ul li:nth-child(3) p {
  margin-top: 40px;
}
#service-mac-page #mac-page_case {
  position: relative;
  padding: 80px 11.1% 0 11.1%;
}
#service-mac-page #mac-page_case h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 48px;
}
#service-mac-page #mac-page_case h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
}
#service-mac-page #mac-page_case p {
  margin-top: 36px;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2em;
  font-weight: 500;
}
#service-mac-page #mac-page_case .slider_mac {
  width: 106vw;
  margin-top: 69px;
  margin-left: -14.1vw;
  margin-bottom: 30px;
}
#service-mac-page #mac-page_case .slider_mac li {
  margin: 0 16px;
}
#service-mac-page #mac-page_case .slider_mac li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
	padding-bottom: 30px;
/*     box-shadow: 0 0 8px rgb(50 50 50 / 6%), 0 0 8px rgb(50 50 50 / 6%), 0 0 8px rgb(50 50 50 / 6%);
} */
}
#service-mac-page #mac-page_case .slider_mac li a figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
#service-mac-page #mac-page_case .slider_mac li a h3 {
  display: flex;
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 24px;
  font-weight: bold;
  margin-top: 22px;
  position: relative;
  padding: 0px 16px;
	height:48px;
}
#service-mac-page #mac-page_case .slider_mac li a p {
  font-size: 18px;
  height: auto;
  min-height: 401px;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
  margin-top: 11px;
  padding: 0 16px 16px;
  background: #fff;
  position: relative;
  margin-bottom: 10px;
}
#service-mac-page #mac-page_case .slider_mac li a li {
  font-size: 18px;
  height: auto;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
	padding:0 16px;
  background: #fff;
  position: relative;
	margin-left: 1em;
	text-indent: -1em;
}
#service-mac-page #mac-page_case .slider_mac li a p::after {
  content: "";
  display: block;
  width: 94%;
  height: 50%;
  position: absolute;
  left: 3%;
  bottom: -1px;
  z-index: -1;
  background: #000;
  opacity: 0.15;
  filter: blur(6px);
}
#service-mac-page #mac-page_case .slider_mac li a:hover .anime_btn div .circle_wrap svg .circle_back {
  stroke-dashoffset: 480;
  transform: rotate(270deg);
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1), transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
}
#service-mac-page #mac-page_case .slider_mac .slick-arrow {
  left: unset;
  right: 100px;
  top: -128px;
  z-index: 3;
  transform: unset;
  background: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 5px 5px 14px 0px rgba(0, 0, 0, 0.16);
}
#service-mac-page #mac-page_case .slider_mac .slick-prev {
  right: 18.1%;
  transition: 0.5s;
}
#service-mac-page #mac-page_case .slider_mac .slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  color: #006b67;
  text-align: center;
  opacity: 1;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-mac-page #mac-page_case .slider_mac .slick-prev:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-mac-page #mac-page_case .slider_mac .slick-prev:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-mac-page #mac-page_case .slider_mac .slick-next {
  right: 13.2%;
  transition: 0.5s;
}
#service-mac-page #mac-page_case .slider_mac .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  color: #006b67;
  opacity: 1;
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-mac-page #mac-page_case .slider_mac .slick-next:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-mac-page #mac-page_case .slider_mac .slick-next:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-mac-page #mac-page_setup-jrsl {
  padding: 112px 11.5% 60px 15.5%;
}
#service-mac-page #mac-page_setup-jrsl h2 {
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 23px;
}
#service-mac-page #mac-page_setup-jrsl h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: -7px;
}
#service-mac-page #mac-page_setup-jrsl p {
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2.1875em;
  font-weight: 500;
}
#service-mac-page #mac-page_setup-jrsl p span {
  display: block;
  padding-left: 3.6%;
}
#service-mac-page #mac-page_bespoke-service {
  padding: 71px 13.4% 40px 13.4%;
}
#service-mac-page #mac-page_bespoke-service h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 38px;
  text-align: center;
}
#service-mac-page #mac-page_bespoke-service h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 17px;
}
#service-mac-page #mac-page_bespoke-service ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 87px;
  justify-content: space-between;
}
#service-mac-page #mac-page_bespoke-service ul li {
  background: #f4f4f2;
  width: 48.4%;
  padding: 26px 2.9% 52px 2.9%;
  margin-bottom: 30px;
}
#service-mac-page #mac-page_bespoke-service ul li h3 {
  background: #007769;
  color: #fff;
  font-size: 18px;
	line-height:1.5;
  letter-spacing: 0.039em;
  font-weight: bold;
  padding: 11px 6px 12px 6px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
#service-mac-page #mac-page_bespoke-service ul li h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
#service-mac-page #mac-page_bespoke-service ul li h3::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  transform: rotate(180deg);
}
#service-mac-page #mac-page_bespoke-service ul li p {
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
  padding-right: 1px;
}
#service-mac-page #mac-page_bespoke-service ul li:nth-child(4) p {
  padding-right: 0;
}
#service-mac-page #mac-page_process {
  padding: 68px 11.2% 60px 11.2%;
  margin-bottom: 200px;
}
#service-mac-page #mac-page_process h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 84px;
  text-align: center;
}
#service-mac-page #mac-page_process h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 21px;
}
#service-mac-page #mac-page_process ul {
  display: flex;
  justify-content: space-between;
}
#service-mac-page #mac-page_process ul li {
  width: 23.2%;
  padding: 35px 0 42px 0;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
}
#service-mac-page #mac-page_process ul li h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-align: center;
  color: #007769;
}
#service-mac-page #mac-page_process ul li figure {
  width: 50px;
  margin: 0 auto;
  margin-bottom: 40px;
}
#service-mac-page #mac-page_process ul li p {
  font-size: 18px;
  line-height: 1.625em;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 22px 10% 0 11.4%;
}
#service-mac-page #mac-page_process ul li:nth-child(2) h3 {
  transform: translateX(2px);
}
#service-mac-page #mac-page_process ul li:nth-child(2) p {
  padding: 22px 5.4% 0 11.4%;
}

#contact-page {
  /* チェックボックスデザイン */
}
#contact-page #under_fv h1 {
  left: 0;
  right: 0;
}
#contact-page .contact-page_steps > ul.steps {
  display: flex;
  height: 64px;
}
#contact-page .contact-page_steps > ul.steps > li {
  width: 33.3333333333%;
  align-items: center;
  display: flex;
  justify-content: end;
}
#contact-page .contact-page_steps > ul.steps > li > p {
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 0 38px 7px 0;
}
#contact-page .contact-page_steps > ul.steps > li > p > span {
  font-size: 15px;
  letter-spacing: 0.04em;
  font-family: lato, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 2px;
  color: #323232;
}
#contact-page .contact-page_steps > ul.steps li.white {
  background-color: #f1f1f1;
  border: 1px solid #fff;
  box-sizing: border-box;
}
#contact-page .contact-page_steps > ul.steps li.white p {
  color: #323232;
}
#contact-page .contact-page_steps > ul.steps li.black {
  background-color: #333;
}
#contact-page .contact-page_steps > ul.steps li.black span {
  color: #fff;
}
#contact-page .contact-page_steps > ul.steps li.black p {
  color: #fff;
}
#contact-page #contact-page_form {
  width: 90%;
  max-width: 800px;
  margin: 157px auto 100px auto;
}
#contact-page #contact-page_form .form_wrap {
  margin-bottom: 35px;
}
#contact-page #contact-page_form .form_wrap h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
#contact-page #contact-page_form .form_wrap h3 span {
  color: #006d68;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: bold;
  display: block;
  border: solid 1px #006d68;
  margin-left: 18px;
  padding: 2px 11px 5px 12px;
  transform: translateY(2px);
}
#contact-page #contact-page_form .form_wrap p {
  font-size: 18px;
  letter-spacing: 0.04em;
}
#contact-page #contact-page_form .form_wrap p input {
  width: 100%;
  padding: 15px 20px 16px 20px;
  border: solid 1px #d6d6d6;
  background: #f1f1f1;
}
#contact-page #contact-page_form .form_wrap p textarea {
  width: 100%;
  padding: 15px 20px 16px 20px;
  resize: none;
  border: solid 1px #d6d6d6;
  background: #f1f1f1;
}
#contact-page #contact-page_form .form_wrap p .wpcf7-not-valid-tip {
  margin-top: 12px;
}
#contact-page #contact-page_form .acceptance_wrap {
  margin: 32px auto 60px auto;
  
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: bold;

}
#contact-page #contact-page_form .acceptance_wrap p{
	display: flex;
  justify-content: center;
	align-items: center;
}
#contact-page #contact-page_form .acceptance_wrap a {
  text-decoration: underline;
}
#contact-page #contact-page_form .acceptance_wrap .wpcf7-list-item {
  margin: 0;
}
#contact-page #contact-page_form .acceptance_wrap .acceptance-001 {
  margin-right: 17px;
}
#contact-page #contact-page_form .btn_view-all.submit-btn {
  position: relative;
  padding: 0;
  width: 362px;
  height: 55px;
}
#contact-page #contact-page_form .btn_view-all.submit-btn input {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.039em;
  padding-right: 73px;
}
#contact-page #contact-page_form .btn_view-all.submit-btn span {
  position: absolute;
  right: 42px;
}
#contact-page #contact-page_form .wpcf7-spinner {
  display: none;
}
#contact-page #contact-page_confirm {
  width: 90%;
  max-width: 800px;
  margin: 161px auto 272px auto;
}
#contact-page #contact-page_confirm .form_wrap {
  margin-bottom: 58px;
}
#contact-page #contact-page_confirm .form_wrap h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #006d68;
  margin-bottom: 25px;
}
#contact-page #contact-page_confirm .form_wrap p {
  font-size: 18px;
  letter-spacing: 0.04em;
}
#contact-page #contact-page_confirm .form_wrap p input {
  width: 100%;
  padding: 15px 20px 16px 20px;
  border: solid 1px #d6d6d6;
  background: #f1f1f1;
}
#contact-page #contact-page_confirm .form_wrap p textarea {
  width: 100%;
  padding: 15px 20px 16px 20px;
  resize: none;
  border: solid 1px #d6d6d6;
  background: #f1f1f1;
}
#contact-page #contact-page_confirm .form_wrap p .wpcf7-not-valid-tip {
  margin-top: 12px;
}
#contact-page #contact-page_confirm .btn_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 74px;
}
#contact-page #contact-page_confirm .btn_view-all.submit-btn {
  position: relative;
  padding: 0;
  width: 357px;
  height: 55px;
  margin: 0;
}
#contact-page #contact-page_confirm .btn_view-all.submit-btn input {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.039em;
  padding-right: 41px;
  font-weight: bold;
}
#contact-page #contact-page_confirm .btn_view-all.submit-btn span {
  position: absolute;
  right: 42px;
}
#contact-page #contact-page_confirm .btn_view-all.back-btn {
  position: relative;
  padding: 0;
  width: 357px;
  height: 55px;
  background: #f1f1f1;
  color: #323232;
  margin: 0;
}
#contact-page #contact-page_confirm .btn_view-all.back-btn input {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.039em;
  padding-left: 41px;
  font-weight: bold;
}
#contact-page #contact-page_confirm .btn_view-all.back-btn span {
  position: absolute;
  left: 42px;
  transform: rotate(180deg);
}
#contact-page #contact-page_confirm .btn_view-all.back-btn span i {
  color: #323232;
}
#contact-page #contact-page_confirm .wpcf7-spinner {
  display: none;
}
#contact-page label[for] {
  display: block;
  padding-bottom: 15px;
  padding-left: 12px;
}
#contact-page input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contact-page input[type=checkbox] {
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding-left: 30px;
  /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}
#contact-page input[type=checkbox]::before,
#contact-page input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
#contact-page input[type=checkbox]::before {
  background-color: #f1f1f1;
  border-radius: 0%;
  border: 1px solid #d6d6d6;
  width: 32px;
  /*チェックボックスの横幅*/
  height: 32px;
  /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
#contact-page input[type=checkbox]::after {
  border-bottom: 3px solid #006d68;
  /*チェックの太さ*/
  border-left: 3px solid #006d68;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  height: 12px;
  /*チェックの高さ*/
  width: 24px;
  /*チェックの横幅*/
  transform: rotate(-45deg);
  top: 5px;
  /*チェック時の位置調整*/
  left: 9px;
  /*チェック時の位置調整*/
}
#contact-page input[type=checkbox]:checked::after {
  opacity: 1;
  /*チェック後表示*/
}

#contact-page #contact-page_form .btn_view-all.submit-btn span {
  pointer-events: none;
}

#contact-page #contact-page_confirm .btn_view-all.back-btn span {
  pointer-events: none;
}

#contact-page #contact-page_confirm .btn_view-all.submit-btn span {
  pointer-events: none;
}

#cookie-policy-page .privacy_fv::before {
  display: none;
}
#cookie-policy-page .privacy_fv h1 {
  color: #333;
  left: 34.46%;
}
#cookie-policy-page .privacy_fv h1 span {
  color: #333;
}
#cookie-policy-page .cookie-policy_contents {
  padding: 159px 0 302px;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner > h1 {
  font-size: 40px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #333;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type {
  margin-top: 75px;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie > h2,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use > h2,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type > h2 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #007169;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie > h2 span,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use > h2 span,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type > h2 span {
  margin-right: 4px;
  color: #007169;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie > p,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use > p,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  margin-top: 6px;
  line-height: 1.622;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie .js-scrollable,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use .js-scrollable,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type .js-scrollable {
  margin-top: 22px;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie .js-scrollable table,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use .js-scrollable table,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type .js-scrollable table {
  width: 960px;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie .js-scrollable table tbody tr th,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use .js-scrollable table tbody tr th,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type .js-scrollable table tbody tr th {
  background-color: #c6e1e0;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 16.6666666667%;
  padding: 8px 0px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie .js-scrollable table tbody tr td,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use .js-scrollable table tbody tr td,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type .js-scrollable table tbody tr td {
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  width: 16.6666666667%;
  padding: 10px 5px 7px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #000;
  line-height: 1.2;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie .js-scrollable table tbody tr td a,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use .js-scrollable table tbody tr td a,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type .js-scrollable table tbody tr td a {
  color: #5876aa;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie .js-scrollable table tbody tr td a::after,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use .js-scrollable table tbody tr td a::after,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type .js-scrollable table tbody tr td a::after {
  font-family: FontAwesome;
  content: "\f24d";
  font-weight: normal;
  margin-left: 10px;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie .js-scrollable table tbody tr td span.link-detail::before,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use .js-scrollable table tbody tr td span.link-detail::before,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type .js-scrollable table tbody tr td span.link-detail::before {
  font-family: "FontAwesome";
  content: "\f105";
  position: relative;
  margin-right: 5px;
  font-size: 14px;
}
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .about-cookie > h3,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .purpose-of-use > h3,
#cookie-policy-page .cookie-policy_contents .cookie-policy_contents_inner .cookie-type > h3 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #007169;
  margin-top: 46px;
  margin-left: -8px;
}

#terms-of-use-page .privacy_fv::before {
  display: none;
}
#terms-of-use-page .privacy_fv h1 {
  color: #333;
  left: 0;
  right: 0;
}
#terms-of-use-page .privacy_fv h1 span {
  color: #333;
}
#terms-of-use-page .terms-of-use_contents {
  padding: 159px 0 302px;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner > h1 {
  font-size: 40px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner > h1 > span {
  display: block;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner > p {
  margin-top: 75px;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.62;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner ul li {
  margin-top: 75px;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner ul li > h2 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #007169;
  line-height: 1.2;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner ul li > h2 span.num {
  margin-right: 4px;
  color: #007169;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner ul li > h2 span.en {
  display: block;
  color: #007169;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner ul li > h2 span.margin-adjustment {
  margin-left: -8px;
  color: #007169;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner ul li > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  margin-top: 10px;
  line-height: 1.622;
}
#terms-of-use-page .terms-of-use_contents .terms-of-use_contents_inner ul li > p > span {
  margin-left: 17px;
}

#adr-page .privacy_fv::before {
  display: none;
}
#adr-page .privacy_fv h1 {
  color: #333;
  left: 0;
  right: 0;
}
#adr-page .privacy_fv h1 span {
  color: #333;
}
#adr-page .adr_contents {
  padding: 159px 0 302px;
}
#adr-page .adr_contents .adr_contents_inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
#adr-page .adr_contents .adr_contents_inner > h1 {
  font-size: 40px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}
#adr-page .adr_contents .adr_contents_inner .reception-desk,
#adr-page .adr_contents .adr_contents_inner .organization,
#adr-page .adr_contents .adr_contents_inner .insurance-ombudsman {
  margin-top: 75px;
}
#adr-page .adr_contents .adr_contents_inner .reception-desk > h2,
#adr-page .adr_contents .adr_contents_inner .organization > h2,
#adr-page .adr_contents .adr_contents_inner .insurance-ombudsman > h2 {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #007169;
}
#adr-page .adr_contents .adr_contents_inner .reception-desk > p,
#adr-page .adr_contents .adr_contents_inner .organization > p,
#adr-page .adr_contents .adr_contents_inner .insurance-ombudsman > p {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.62;
  margin-top: 35px;
}

#service-captive-page #under_fv h1 {
  left: 38.4%;
  top: 40.5%;
}
#service-captive-page #under_fv h1 span {
  margin-top: 17px;
  margin-left: 6px;
}
#service-captive-page #captive-page_provided {
  padding-top: 158px;
}
#service-captive-page #captive-page_provided h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.039em;
  margin-bottom: 39px;
  text-align: center;
	line-height:1.5em;
}
#service-captive-page #captive-page_provided h2 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #007769;
  margin-top: 16px;
  margin-left: 1px;
}
#service-captive-page #captive-page_provided ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 42px 8.3% 40px 8.3%;
}
#service-captive-page #captive-page_provided ul li {
  width: 48.4%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  padding: 39px 0 104px 0;
  border-radius: 19px;
  margin-bottom: 39px;
}
#service-captive-page #captive-page_provided ul li h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 47px;
}
#service-captive-page #captive-page_provided ul li figure {
  width: 80%;
  margin: 0 auto;
  transform: translateX(7px);
}
#service-captive-page #captive-page_provided ul li p {
  font-size: 18px;
  line-height: 1.625em;
  font-weight: 400;
  letter-spacing: 0.039em;
  width: 62%;
  margin: 0 auto;
  margin-top: 43px;
}
#service-captive-page #captive-page_provided ul li:nth-child(2) h3 {
  margin-bottom: 47px;
}
#service-captive-page #captive-page_provided ul li:nth-child(2) figure {
  width: 63%;
  margin: 0 auto;
  transform: translateX(1px);
}
#service-captive-page #captive-page_provided ul li:nth-child(2) p {
  margin-top: 42px;
}
#service-captive-page #captive-page_provided ul li:nth-child(3) h3 {
  margin-bottom: 70px;
}
#service-captive-page #captive-page_provided ul li:nth-child(3) figure {
  width: 74%;
  margin: 0 auto;
  transform: translateX(9px);
}
#service-captive-page #captive-page_provided ul li:nth-child(3) p {
  margin-top: 54px;
}
#service-captive-page #captive-page_provided ul li:nth-child(4) h3 {
  margin-bottom: 78px;
}
#service-captive-page #captive-page_provided ul li:nth-child(4) figure {
  width: 92%;
  margin: 0 auto;
  transform: translateX(4px);
}
#service-captive-page #captive-page_provided ul li:nth-child(4) p {
  margin-top: 49px;
}
#service-captive-page #captive-page_setup-captive {
  padding: 254px 7.2% 60px 6.6%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#service-captive-page #captive-page_setup-captive::before {
  content: "";
  display: block;
  width: 71.9%;
  height: 93.3%;
  position: absolute;
  right: 0;
  top: 122px;
  background: #f2f2f2;
  z-index: -1;
}
#service-captive-page #captive-page_setup-captive div {
  width: 50.4%;
  padding: 64px 5% 62px 5.2%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  background: #fff;
}
#service-captive-page #captive-page_setup-captive div h2 {
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 28px;
}
#service-captive-page #captive-page_setup-captive div h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: -2px;
}
#service-captive-page #captive-page_setup-captive div p {
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2.1875em;
  font-weight: 500;
}
#service-captive-page #captive-page_setup-captive div p span {
  display: block;
  padding-left: 3.6%;
}
#service-captive-page #captive-page_setup-captive figure {
  width: 45.2%;
  margin-top: 30px;
}
#service-captive-page #captive-page_what-pcc {
  padding: 326px 5.5% 60px 0%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#service-captive-page #captive-page_what-pcc::before {
  content: "";
  display: block;
  width: 71.9%;
  height: 82.8%;
  position: absolute;
  left: 0;
  top: 239px;
  background: #f2f2f2;
  z-index: -1;
}
#service-captive-page #captive-page_what-pcc div {
  width: 46%;
  padding: 62px 3% 62px 4.9%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  background: #fff;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
#service-captive-page #captive-page_what-pcc div h2 {
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 28px;
}
#service-captive-page #captive-page_what-pcc div h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: -2px;
}
#service-captive-page #captive-page_what-pcc div p {
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 2.1875em;
  font-weight: 500;
}
#service-captive-page #captive-page_what-pcc div p span {
  display: block;
  padding-left: 3.6%;
}
#service-captive-page #captive-page_what-pcc figure {
  width: 62.6%;
  position: absolute;
  left: 0;
  top: 358px;
}
#service-captive-page #captive-page_strategy {
  padding: 255px 13% 0 13.4%;
}
#service-captive-page #captive-page_strategy h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 44px;
  margin-left: 1px;
}
#service-captive-page #captive-page_strategy h2 span {
  color: #007769;
  display: block;
  font-size: 20px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 17px;
  margin-left: -1px;
}
#service-captive-page #captive-page_strategy p {
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
}
#service-captive-page #captive-page_strategy .js-scrollable {
  width: 1170px;
  margin-left: -68px;
}
#service-captive-page #captive-page_strategy table {
  border: solid 1px #606060;
  margin: 49px 0% 0 0;
}
#service-captive-page #captive-page_strategy table th {
  border-right: solid 1px #606060;
  border-bottom: solid 1px #606060;
  background: #ebf4f3;
  padding: 15px 10px 15px 13px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.039em;
}
#service-captive-page #captive-page_strategy table tr td {
  border-right: solid 1px #606060;
  border-bottom: solid 1px #606060;
  padding: 10px 15px 10px 21px;
  font-size: 18px;
  line-height: 1.3125em;
  letter-spacing: 0.04em;
}
#service-captive-page #captive-page_strategy table tr td:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.039em;
  width: 17.8%;
}
#service-captive-page #captive-page_strategy table tr td:nth-child(2) {
  width: 41.1%;
  padding: 8px 15px 8px 21px;
}
#service-captive-page #captive-page_strategy table tr td:nth-child(3) {
  padding: 8px 15px 8px 21px;
}
#service-captive-page #captive-page_strategy table tr:nth-child(1) th:nth-child(3) {
  padding-top: 18px;
}
#service-captive-page #captive-page_strategy table tr:nth-child(3) {
  background: #ebf4f3;
}
#service-captive-page #captive-page_strategy table tr:nth-child(5) {
  background: #ebf4f3;
}
#service-captive-page #captive-page_strategy table tr:nth-child(7) {
  background: #ebf4f3;
}
#service-captive-page #captive-page_strategy .btn_view-all {
  margin-left: -6.41%;
  margin-top: 60px;
  padding-left: 29px;
}
#service-captive-page #captive-page_bespoke-service {
  padding: 140px 13.1% 40px 13.4%;
}
#service-captive-page #captive-page_bespoke-service h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 38px;
  text-align: center;
  transform: translateX(-1px);
}
#service-captive-page #captive-page_bespoke-service h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 17px;
}
#service-captive-page #captive-page_bespoke-service ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  justify-content: space-between;
}
#service-captive-page #captive-page_bespoke-service ul li {
  background: #f4f4f2;
  width: 48.4%;
  padding: 26px 2.9% 52px 3%;
  margin-bottom: 30px;
}
#service-captive-page #captive-page_bespoke-service ul li h3 {
  background: #007769;
  color: #fff;
  font-size: 18px;
  line-height: 1.3em;
  letter-spacing: 0.039em;
  font-weight: bold;
  padding: 10px 6px 10px 6px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
#service-captive-page #captive-page_bespoke-service ul li h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
#service-captive-page #captive-page_bespoke-service ul li h3::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../image/service/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  transform: rotate(180deg);
}
#service-captive-page #captive-page_bespoke-service ul li p {
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
}
#service-captive-page #captive-page_bespoke-service ul li:nth-child(4) p {
  padding-right: 0;
}
#service-captive-page #captive-page_domicile {
  padding: 21px 13% 0 13.4%;
}
#service-captive-page #captive-page_domicile h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 40px;
  margin-left: 1px;
}
#service-captive-page #captive-page_domicile h2 span {
  color: #007769;
  display: block;
  font-size: 20px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 17px;
  margin-left: -1px;
}
#service-captive-page #captive-page_domicile p {
  font-size: 18px;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
}
#service-captive-page #captive-page_domicile div {
  width: 113.6%;
  margin: 152px 0% 0 -6.8%;
  background: #fff;
}
#service-captive-page #captive-page_domicile div h3 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 40px;
}
#service-captive-page #captive-page_domicile div ul {
  display: flex;
  justify-content: space-between;
  margin: 54px 0 0 0;
}
#service-captive-page #captive-page_domicile div ul li {
  border: solid 1px #333333;
  width: 48.3%;
  padding: 37px 4% 10px 3.1%;
}
#service-captive-page #captive-page_domicile div ul li h4 {
  font-size: 24px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 47px;
}
#service-captive-page #captive-page_domicile div ul li h5 {
  font-size: 20px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 12px;
  color: #007169;
  margin-left: 2px;
}
#service-captive-page #captive-page_domicile div ul li p {
  font-size: 18px;
  line-height: 1.75em;
  letter-spacing: 0.039em;
  font-weight: 400;
  margin-bottom: 38px;
}
#service-captive-page #captive-page_domicile div ul li p:last-child {
  margin-bottom: 21px;
}
#service-captive-page #captive-page_domicile figure {
  width: 100%;
  margin: 0 auto;
  max-width: 1058px;
  margin-top: 32px;
  margin-left: -2px;
  position: relative;
  z-index: -1;
}
#service-captive-page #captive-page_case {
  position: relative;
  padding: 75px 0 0 0;
}
#service-captive-page #captive-page_case h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 48px;
  padding: 0px 18.1% 0 18.1%;
}
#service-captive-page #captive-page_case h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
}
#service-captive-page #captive-page_case p {
  margin-top: 36px;
  font-size: 14px;
  letter-spacing: 0.039em;
  line-height: 28px;
  font-weight: 500;
}
#service-captive-page #captive-page_case .slider_captive {
  width: 100vw;
  margin-top: 86px;
  margin-bottom: 30px;
}
#service-captive-page #captive-page_case .slider_captive li {
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  border-radius: 20px;
  margin: 0px 54px 0 54px;
  width: 880px;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive li h3 {
  font-size: 18px;
  letter-spacing: 0.039em;
  line-height: 24px;
  font-weight: bold;
  margin-top: -1px;
  position: relative;
  padding: 12px 26px 17px 20px;
  background: #007169;
  color: #fff;
  margin-left: -19px;
  border-radius: 4px 4px 0px 0px;
  display: inline-block;
}
#service-captive-page #captive-page_case .slider_captive li h3::after {
  content: "";
  display: block;
  width: 20px;
  height: 23px;
  background: url(../image/service/captive/icon_01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: -21px;
  z-index: -1;
}
#service-captive-page #captive-page_case .slider_captive li div {
  display: flex;
  justify-content: space-between;
  margin: 36px 4.7% 31px 4.7%;
}
#service-captive-page #captive-page_case .slider_captive li div p {
  width: 47.7%;
  font-size: 18px;
  height: auto;
  line-height: 2.1875em;
  letter-spacing: 0.039em;
  font-weight: 400;
  background: #fff;
  position: relative;
  margin-bottom: 10px;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
  margin-top: 0;
  padding: 12px 1% 10px 2.1%;
  border-radius: 10px;
}
#service-captive-page #captive-page_case .slider_captive li div p span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 7px;
}
#service-captive-page #captive-page_case .slider_captive .slick-arrow {
  left: unset;
  right: 100px;
  top: -164px;
  z-index: 3;
  transform: unset;
  background: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 5px 5px 14px 0px rgba(0, 0, 0, 0.16);
}
#service-captive-page #captive-page_case .slider_captive .slick-prev {
  right: 24.4%;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive .slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  color: #006b67;
  text-align: center;
  opacity: 1;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive .slick-prev:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive .slick-prev:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive .slick-next {
  right: 19.2%;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  color: #006b67;
  opacity: 1;
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
  bottom: 32%;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive .slick-next:hover {
  background: #006b67;
  transition: 0.5s;
}
#service-captive-page #captive-page_case .slider_captive .slick-next:hover::before {
  color: #fff;
  transition: 0.5s;
}
#service-captive-page #captive-page_process {
  padding: 110px 12.2% 60px 10.2%;
  margin-bottom: 98px;
}
#service-captive-page #captive-page_process h2 {
  font-size: 32px;
  letter-spacing: 0.039em;
  font-weight: bold;
  margin-bottom: 58px;
  text-align: center;
  transform: translateX(16px);
}
#service-captive-page #captive-page_process h2 span {
  color: #007769;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 18px;
}
#service-captive-page #captive-page_process ul {
  display: flex;
  justify-content: space-between;
}
#service-captive-page #captive-page_process ul li {
  width: 23.2%;
  padding: 27px 0 37px 0;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.06);
}
#service-captive-page #captive-page_process ul li h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-align: center;
  color: #007769;
}
#service-captive-page #captive-page_process ul li figure {
  width: 50px;
  margin: 0 auto;
  margin-bottom: 41px;
}
#service-captive-page #captive-page_process ul li p {
  font-size: 18px;
  line-height: 1.625em;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 23px 10% 0 11.2%;
}
#service-captive-page #captive-page_process ul li:nth-child(2) h3 {
  transform: translateX(2px);
}
#service-captive-page #captive-page_process ul li:nth-child(2) p {
  padding: 22px 5.4% 0 11.4%;
}

#page-default {
  width: 100%;
}
#page-default .default_fv::before {
  display: none;
}
#page-default .default_fv h1 {
  color: #333;
  left: 34.46%;
}
#page-default .default_fv h1 span {
  color: #333;
}
#page-default #page-default_main {
  width: 100%;
  padding: 160px 0;
}
#page-default #page-default_main .page-default_main_inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
#page-default #page-default_main .page-default_main_inner p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 48px;
}
#page-default #page-default_main .page-default_main_inner a {
  font-size: 16px;
  line-height: 2;
  color: #006b67;
  text-decoration: underline;
}
#page-default #page-default_main .page-default_main_inner h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
}
#page-default #page-default_main .page-default_main_inner h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

/*  9/14 追加分*/
/*  9/14 追加分*/
/*  9/14 追加分*/
#top-page_news .special_news {
    max-width: 1220px;
}
#top-page_news h2 {
    margin-bottom: 137px;
}
#top-page_news .special_news{
/* 	background:#000; */
}
#top-page_news .special_news li{
	width:48%;
	max-width:582px;
  border-top: solid 11px #006b6880;
	box-shadow: 0 0 5px rgb(50 50 50 / 9%), 0 0 5px rgb(50 50 50 / 9%), 0 0 5px rgb(50 50 50 / 9%);
}
#top-page_news .special_news li:hover{
	box-shadow: 0 0 5px rgb(50 50 50 / 20%), 0 0 5px rgb(50 50 50 / 20%), 0 0 5px rgb(50 50 50 / 20%);
}

/* #top-page_news .special_news li:hover a figure img{
	transform:scale(1.1);
	transition:.5s;
}

#top-page_news .special_news li a figure img{
	transition:.5s;
} */

#top-page_news .special_news li a figure{
	overflow:hidden;
}
	
#top-page_news .special_news li a{
	display:flex;
    padding: 26px 28px 45px 28px;
	background:#fff;
}
#top-page_news .special_news li a:hover{
	box-shadow: unset;
}
#top-page_news .special_news li a figure{
	width:244px;
	height:auto;
}
#top-page_news .special_news li a .text_wrap{
	width:calc(100% - 244px);
	height:auto;
	padding-left:30px;
	padding-top: 9px;
	position:relative;
}
#top-page_news .special_news li a .text_wrap h3{
	line-height: 1.88em;
}
#top-page_news .special_news li a .text_wrap p{
    position: absolute;
right: 15.2%;
    bottom: -16px;
}

#captive .result-page_casestudy:after{
	content:"";
	display:block;
	    max-width: 306px;
    width: 31.5%;
}

.linkedin{
	position: relative;
    z-index: 10;
	display:block;
	width: 32px;
}

.linkedin img{
	width:100%;
	object-fit:cover;
}