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

File Name: service_info.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
10.	footer
11.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

body {
  font-size: 10px;
  font-family: "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

/* start \*/
html:\66irst-child body {
  font-size: 62.5%;
}

/* end */
body:first-of-type {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}
@media screen and (max-width: 820px) {
  img {
    width: 100%;
  }
}

caption, th {
  font-weight: normal;
  text-align: left;
}

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000;
  overflow-x: hidden;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a, a:before, a:after {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a > * {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
a:hover > * {
  text-decoration: none;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
  background: #FAFAFA;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.fll {
  float: left;
}

.flr {
  float: right;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .pc_none {
    display: block;
  }
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.right-nav a {
  position: relative;
}
.right-nav a img {
  transition: opacity 0.5s;
  animation-timing-function: cubic-bezier(0.3, -0.05, 0.7, -0.5);
  animation-duration: 500ms;
}
.right-nav a img:last-of-type {
  position: absolute;
  right: 0;
  opacity: 0;
}
.right-nav a:hover img:first-of-type {
  opacity: 0;
}
.right-nav a:hover img:last-of-type {
  opacity: 1;
}

/* 旧デザイン */
	/*
	.right-nav {
		display: none;
		position: fixed;
		bottom: 10px;
		right: 10px;
		z-index: 1000;

		a {
			@include transition(opacity $mouseover linear);
			display: block;

			&:hover {
				@include opacity(.7);
			}
		}

		img {
			@include sp() {
				width: 45px;
				height: 45px;
			}
		}
	}
	*/
/* 旧デザイン */
.optimize-origin {
  right: 80px !important;
  bottom: 20px !important;
}

@media screen and (min-width: 769px) {
  #drawernav {
    display: none;
  }
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
  background: #FFF;
  border-bottom: 1px solid #050126;
}
@media screen and (max-width: 820px) {
  .header {
    border-bottom: none;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1440px;
  height: 99px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .header-inner {
    margin: 0 15px;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 820px) {
  .header-inner {
    padding: 0 15px;
    width: 100%;
    height: 50px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 150px;
}
@media screen and (max-width: 820px) {
  .header-logo img {
    width: 85px;
    height: 28px;
  }
}

.header-nav {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
}
@media screen and (max-width: 820px) {
  .header-nav {
    margin: 12px 45px 0 0;
  }
}

.header-nav-top {
  margin: 0 0 17px;
}
@media screen and (max-width: 820px) {
  .header-nav-top {
    display: none;
  }
}
.header-nav-top ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.header-nav-top ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: solid 2px #FFF;
  font-size: 16px;
  font-weight: 500;
  color: #050126;
}
.header-nav-top ul li a::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
}
.header-nav-top ul li a:hover {
  opacity: 1;
  border-bottom: solid 2px #050126;
}
.header-nav-top ul li a:hover::before {
  transform: rotate(-30deg);
}
.header-nav-top ul li.company a::before {
  background: url("../img/common/ic_company.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-top ul li.recruit a::before {
  background: url("../img/common/ic_recruit.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-top ul li.hakenform a::before {
  background: url("../img/common/ic_hakenform.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-top ul li.tel a::before {
  background: url("../img/common/ic_phone.webp") no-repeat 0 0;
  background-size: contain;
}

.header-nav-bottom ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-nav-bottom ul li a {
  position: relative;
  padding: 0 0 15px;
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}
.header-nav-bottom ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
  width: 100%;
  height: 5px;
  border: solid 1px #050126;
  background: #25AEEA;
}
.header-nav-bottom ul li a:hover {
  opacity: 1;
}
.header-nav-bottom ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
@media screen and (max-width: 820px) {
  .header-nav-bottom ul li.home {
    display: none;
  }
}
.header-nav-bottom ul li.home img {
  width: 22px;
  height: 22px;
}
.header-nav-bottom ul li.home a {
  padding: 0 0 12px;
}
@media screen and (max-width: 820px) {
  .header-nav-bottom ul li.txtlink {
    display: none;
  }
}
.header-nav-bottom ul li.active a::after {
  transform: scale(1, 1);
}
.header-nav-bottom ul li.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2px;
  width: 110px;
  height: 26px;
  border-radius: 15px;
  border: solid 1px #050126;
  font-size: 13px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
.header-nav-bottom ul li.btn a::after {
  content: none;
}
.header-nav-bottom ul li.btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
@media screen and (max-width: 820px) {
  .header-nav-bottom ul li.btn__red {
    display: none;
  }
}
.header-nav-bottom ul li.btn__red a {
  background: #FFAFE0;
}

.header-nav-btn {
  margin: 0 0 21px;
}
@media screen and (max-width: 820px) {
  .header-nav-btn {
    margin: 0;
  }
}
.header-nav-btn ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 820px) {
  .header-nav-btn ul li.tel {
    display: none;
  }
}
.header-nav-btn ul li.tel a {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: solid 2px #FFF;
  font-size: 16px;
  font-weight: 500;
  color: #050126;
}
.header-nav-btn ul li.tel a::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("../img/common/ic_phone.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-btn ul li.tel a:hover {
  opacity: 1;
  border-bottom: solid 2px #050126;
}
.header-nav-btn ul li.tel a:hover::before {
  transform: rotate(-30deg);
}
.header-nav-btn ul li.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2px;
  width: 110px;
  height: 26px;
  border-radius: 15px;
  border: solid 1px #050126;
  font-size: 13px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
.header-nav-btn ul li.btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
@media screen and (max-width: 820px) {
  .header-nav-btn ul li.btn__red {
    display: none;
  }
}
.header-nav-btn ul li.btn__red a {
  background: #FFAFE0;
}

.header-nav-list {
  margin: 0 15px 0 0;
}
@media screen and (max-width: 820px) {
  .header-nav-list {
    display: none;
  }
}
.header-nav-list ul {
  display: flex;
  gap: 20px;
}
.header-nav-list ul li a {
  position: relative;
  padding: 0 0 15px;
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}
.header-nav-list ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
  width: 100%;
  height: 5px;
  border: solid 1px #050126;
  background: #25AEEA;
}
.header-nav-list ul li a:hover {
  opacity: 1;
}
.header-nav-list ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
.header-nav-list ul li.header-nav-list-home {
  position: relative;
  top: -4px;
}
.header-nav-list ul li.header-nav-list-home img {
  width: 22px;
  height: 22px;
}
.header-nav-list ul li.header-nav-list-home a {
  padding: 0 0 12px;
}
.header-nav-list ul li.active a::after {
  transform: scale(1, 1);
}

/* 旧デザイン */
@media screen and (min-width: 769px) {
  .is-animation .header__upper {
    margin-top: -100px;
  }
}
.header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid #BEBEBE;
}
@media screen and (max-width: 820px) {
  .header {
    border-bottom: none;
  }
}
.header__inner {
  *zoom: 1;
  width: 1180px;
  margin: 0 auto;
}
.header__inner:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1210px) {
  .header__inner {
    width: 96%;
  }
}
@media screen and (max-width: 820px) {
  .header__inner {
    width: 94%;
    padding: 9px 0;
  }
}
.header__upper {
  *zoom: 1;
  height: auto;
  margin-bottom: 10px;
  transition: .5s;
  overflow: hidden;
  padding-top: 26px;
  margin-top: 0;
  transition: margin 100ms;
}
.header__upper:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 820px) {
  .header__upper {
    padding-top: 0;
    margin-bottom: 0;
  }
}
.header__upper .logo {
  float: left;
  width: 190px;
}
@media screen and (max-width: 820px) {
  .header__upper .logo {
    width: 25.33333%;
  }
}
.header__upper .logo img {
  width: 100%;
  height: auto;
}
.header__upper__right {
  float: right;
}
@media screen and (max-width: 820px) {
  .header__upper__right {
    display: none;
  }
}
.header__upper__right__link {
  margin-top: 10px;
  text-align: right;
}
.header__upper__right__link a {
  color: #000;
  font-size: 12px;
  text-decoration: underline;
}
.header__upper__right__link a:hover {
  text-decoration: none;
}
.header__upper__right__link a:after {
  content: " ＞";
}
.header__contact__list {
  *zoom: 1;
}
.header__contact__list:after {
  content: "";
  display: table;
  clear: both;
}
.header__contact__item {
  float: left;
}
@media screen and (max-width: 820px) {
  .header__contact__item {
    float: none;
  }
}
.header__contact__item.-tel, .header__contact__item.-fax {
  margin: 3px 28px 0 0;
}
@media screen and (max-width: 820px) {
  .header__contact__item.-tel, .header__contact__item.-fax {
    margin: 0 0 5%;
  }
}
.header__contact__item.-tel:last-child, .header__contact__item.-fax:last-child {
  margin-right: 0;
}
.header__contact__item.-tel a, .header__contact__item.-fax a {
  position: relative;
  padding-left: 27px;
  color: #4b4b4b;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  font-size: 22px;
  font-weight: bold;
  cursor: auto;
}
@media screen and (max-width: 820px) {
  .header__contact__item.-tel a, .header__contact__item.-fax a {
    font-size: 24px;
  }
}
.header__contact__item.-tel a:hover, .header__contact__item.-fax a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.header__contact__item.-tel a:before, .header__contact__item.-fax a:before {
  content: "";
  position: absolute;
  left: 0;
}
.header__contact__item.-tel a.-tel:before, .header__contact__item.-fax a.-tel:before {
  top: 1px;
  width: 22px;
  height: 22px;
  background: url("../img/header_contact_item_tel_bg.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
.header__contact__item.-tel a.-fax:before, .header__contact__item.-fax a.-fax:before {
  top: 3px;
  width: 19px;
  height: 19px;
  background: url("../img/header_contact_item_fax_bg.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 820px) {
  .header__contact__item.-fax {
    margin-bottom: 7%;
  }
}
.header__contact__item.-inquiry a {
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  display: block;
  position: relative;
  padding: 7px 36px 6px 30px;
  background: #009fe8;
  color: #FFF;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .header__contact__item.-inquiry a {
    padding: 17px 36px 16px 30px;
    font-size: 16px;
  }
}
.header__contact__item.-inquiry a:before {
  display: flex;
  align-items: center;
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 820px) {
  .header__contact__item.-inquiry a:before {
    right: 20px;
  }
}
.header__lower {
  float: right;
  margin-top: 16px;
}
@media screen and (max-width: 820px) {
  .header__lower {
    display: none;
  }
}
.header__nav__list {
  *zoom: 1;
}
.header__nav__list:after {
  content: "";
  display: table;
  clear: both;
}
.header__nav__item {
  position: relative;
  float: left;
}
.header__nav__item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 24px;
  background: #BEBEBE;
}
.header__nav__item:last-child:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 24px;
  background: #BEBEBE;
}
.header__nav__item a {
  display: block;
  padding: 0 18px 22px;
  color: #000;
  font-size: 14px;
}
.header__nav__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009FE8;
}
.header__nav__item.-is-active > a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  width: 78%;
  height: 3px;
  margin: auto;
  background: #009FE8;
}
.header__nav__item.megamenu {
  position: relative;
}

.megamenu__box {
  display: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  top: 70px;
  left: -35%;
  right: 0;
  width: calc(100% + 20px);
  -webkit-transition-duration: 56s;
  transition-duration: .5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.megamenu__box:before, .megamenu__box:after {
  content: "";
  position: absolute;
  width: 170%;
  margin: auto;
  left: 0;
  right: 0;
}
.megamenu__box:before {
  height: 25px;
  top: -40px;
}
.megamenu__box:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  left: 0;
  right: 0;
  top: -20px;
  height: 122%;
  background: #FFF;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  z-index: 1;
}
.megamenu__box.-is-shown {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.megamenu__box.-is-shown:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.megamenu__list {
  position: relative;
  z-index: 100;
  width: 170%;
  padding: 0 20%;
}
.megamenu__item {
  line-height: 2.14286;
}
.megamenu__item a {
  padding: 0;
  text-align: center;
}

.drawernav__item {
  position: relative;
  border-bottom: 1px solid #009FE8;
}
.drawernav__item a {
  display: block;
  position: relative;
  padding: 20px 0 20px 30px;
  color: #000;
  font-size: 15px;
  font-weight: bold;
}
.drawernav__item a:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
  width: 7px;
  height: 7px;
  margin: auto;
  border: 0px;
  border-top: 2px solid #009fe8;
  border-right: 2px solid #009fe8;
  cursor: pointer;
}
.drawernav__contact__list {
  margin: 5% 30px;
}

/* 旧デザイン */
/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
#content {
  margin: 100px 0 0;
}

/* 旧デザイン */
	/*
	#content {
		margin: 149px 0 0;
		padding-bottom: 80px;

		@include sp() {
			padding-bottom: 15%;
		}
	}
	*/
/* 旧デザイン */
#content {
  padding-bottom: 0;
}

/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
/* 今後ページをリニューアル等する際はlayout-mainではなく下記をお使いください */
/* ぱんくず */
.topicpath {
  width: 1180px;
  margin: 0 auto;
  padding: 15px 0 5px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .topicpath {
    margin: 0 15px 5px;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 820px) {
  .topicpath {
    display: none;
  }
}
.topicpath ul {
  display: flex;
}
.topicpath ul li {
  color: #000;
  font-size: 12px;
}
.topicpath ul li:not(:last-child):after {
  content: '＞';
  padding: 0 5px 0 8px;
  font-size: 12px;
}
.topicpath ul li a {
  color: #000;
}
.topicpath ul li a:hover {
  color: #009fe8;
}

/* MV(文字あり) */
.main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px;
  width: 1180px;
  height: 240px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1180px) {
  .main-visual {
    width: 100%;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 820px) {
  .main-visual {
    margin: 0 auto 30px;
    height: 0;
    padding-top: 28.8%;
  }
}

.main-visual-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #555;
}
@media screen and (max-width: 820px) {
  .main-visual-title {
    margin-top: -27.5%;
  }
}
.main-visual-title span {
  display: block;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #6e6e6e;
}
@media screen and (max-width: 820px) {
  .main-visual-title span {
    margin-top: 3%;
  }
}

/* MV(文字なし) */
.main-visual-img {
  margin: 0 auto 50px;
  width: 1180px;
  height: auto;
}
.main-visual-img img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main-visual-img {
    margin: 0 0 30px;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .main-visual-img {
    margin: 0 0 30px;
    width: 100%;
  }
}

/* インナー */
.main-inner {
  margin: auto;
  width: 1180px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main-inner {
    padding: 0 15px;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .main-inner {
    padding: 0 15px;
    width: 100%;
  }
}

/* 新デザインフッター用ボタン */
.mod-btn {
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .mod-btn {
    width: 100%;
  }
}
.mod-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 40px 0 60px;
  width: 240px;
  height: 54px;
  border-radius: 40px;
  border: solid 1px #050126;
  font-size: 17px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
@media screen and (max-width: 820px) {
  .mod-btn a {
    margin: 0 auto;
    height: 44px;
    font-size: 15px;
  }
}
.mod-btn a::before {
  content: "";
  position: absolute;
  margin: 0 0 0 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #050126 url("../img/common/ic_arrow.webp") no-repeat center center;
  animation-name: btn-move-out;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-out {
  0% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}
@media screen and (max-width: 820px) {
  .mod-btn a::before {
    width: 26px;
    height: 26px;
    background-size: 13px;
  }
}
.mod-btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
.mod-btn a:hover::before {
  margin: 0 0 0 22px;
  background: url("../img/common/ic_arrow_l.webp") no-repeat center center;
  animation-name: btn-move-in;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-in {
  0% {
    left: 0;
  }
  100% {
    left: 5px;
  }
}
.mod-btn__red a {
  padding: 0 50px;
  width: 270px;
  height: 48px;
  background: #FFAFE0;
}
@media screen and (max-width: 820px) {
  .mod-btn__red a {
    height: 44px;
  }
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
.side {
  float: left;
  width: 220px;
}
@media screen and (max-width: 820px) {
  .side {
    float: none;
    width: 100%;
  }
}
.side__box {
  margin-bottom: 25px;
  background: #FFF;
}
@media screen and (max-width: 820px) {
  .side__box {
    margin-bottom: 6%;
  }
}
.side__box:last-child {
  margin-bottom: 0;
}
.side__box__title {
  padding: 18px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 2px solid #ADD5F7;
}
.side__box img {
  width: 100%;
}
@media screen and (max-width: 820px) {
  .side__banner {
    float: left;
    width: 48.5%;
  }
}
@media screen and (max-width: 820px) {
  .side__banner.-article, .side__banner.-live, .side__banner.-haken {
    clear: both;
    margin-right: 3%;
  }
}
.side .sort {
  padding: 25px 0 25px 18px;
}
.side .sort li {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  position: relative;
  margin-bottom: 25px;
  padding-left: 9px;
  font-size: 14px;
  cursor: pointer;
}
.side .sort li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 12px;
  background: #ADD5F7;
}
.side .sort li:hover, .side .sort li.-is-active {
  color: #009FE8;
  text-decoration: underline;
}
.side .sort li:first-child {
  display: none;
}
.side .sort li:last-child {
  margin-bottom: 0;
}

.sns {
  height: 331px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .sns {
    clear: both;
  }
}
.sns__title {
  position: relative;
  padding: 10px 0 10px 25px;
  background: #1DA1F2;
  color: #FFF;
  font-size: 13px;
}
.sns__title i {
  display: flex;
  align-items: center;
  position: absolute;
  left: 8px;
}
.sns__title.-facebook {
  padding-left: 20px;
}

@media screen and (max-width: 820px) {
  .twitter-timeline {
    width: 100% !important;
    height: 500px !important;
  }
}

@media screen and (max-width: 820px) {
  .fb-page {
    display: block !important;
    width: 100% !important;
  }
}
.fb-page span,
.fb-page iframe {
  width: 220px !important;
}
@media screen and (max-width: 820px) {
  .fb-page span,
  .fb-page iframe {
    width: 100% !important;
  }
}
@media screen and (max-width: 820px) {
  .fb-page span div,
  .fb-page iframe div {
    width: 100% !important;
  }
}

.timeline-Header-title,
.timeline-Header-byline {
  font-size: 11px !important;
}

/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
.footer {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
  background: #EEF0F4;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  padding: 60px 0 80px;
  width: 1080px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .footer-inner {
    padding: 60px 15px 80px;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .footer-inner {
    padding: 40px 15px 80px;
    width: 100%;
  }
}

.footer-top {
  display: grid;
  grid-template-areas: "logo linklist btnlist" "otherlist linklist btnlist";
  justify-content: space-between;
  padding: 0 0 40px;
}
.footer-top .footer-logo {
  grid-area: logo;
}
.footer-top .footer-linklist {
  grid-area: linklist;
}
.footer-top .footer-btnlist {
  grid-area: btnlist;
}
.footer-top .footer-otherlist {
  grid-area: otherlist;
}
@media screen and (max-width: 820px) {
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 30px;
  }
}

.footer-logo {
  margin: 0 0 40px;
}
@media screen and (max-width: 820px) {
  .footer-logo {
    margin: 0 auto 30px;
    width: 150px;
  }
}

.footer-linklist {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 820px) {
  .footer-linklist {
    flex-wrap: wrap;
    gap: 25px;
    margin: 0 0 30px;
  }
}
.footer-linklist ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 820px) {
  .footer-linklist ul {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-linklist ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}

@media screen and (max-width: 820px) {
  .footer-btnlist {
    margin: 0 auto 50px;
  }
}
.footer-btnlist ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 820px) {
  .footer-btnlist ul {
    gap: 15px;
  }
}
.footer-btnlist ul li .mod-btn a {
  padding: 0 50px;
  width: 270px;
}
.footer-btnlist ul li .mod-btn__red a {
  height: 54px;
}

.footer-otherlist {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 820px) {
  .footer-otherlist {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
}
.footer-otherlist ul {
  display: flex;
  gap: 10px;
}
.footer-otherlist ul li {
  width: 44px;
}
.footer-otherlist ul li img {
  width: 100%;
  height: auto;
}
.footer-otherlist ul li.isms {
  width: 120px;
}
.footer-otherlist ul li.isms span {
  display: block;
  text-align: center;
  padding: 5px 0 0;
  color: #050126;
}
.footer-otherlist ul li.securityaction {
  width: 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: solid 1px #050126;
}
@media screen and (max-width: 820px) {
  .footer-bottom {
    flex-direction: column;
    padding: 30px 0 0;
  }
}

.footer-bottom-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .footer-bottom-link ul {
    justify-content: center;
    gap: 15px 30px;
    margin: 0 0 30px;
  }
}
.footer-bottom-link ul li a {
  font-size: 12px;
  font-weight: 500;
  color: #050126;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 300;
  color: #050126;
}
@media screen and (max-width: 820px) {
  .footer-copyright {
    text-align: center;
  }
}

/* 旧デザイン */
.footer__inner {
  width: 1180px;
  margin: 0 auto;
  padding: 35px 0;
}
@media screen and (max-width: 1210px) {
  .footer__inner {
    width: 96%;
  }
}
@media screen and (max-width: 820px) {
  .footer__inner {
    width: 92%;
    padding: 8% 0;
  }
}
.footer__upper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1020px) {
  .footer__upper {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .footer__upper {
    margin-bottom: 8%;
  }
}
.footer__upper__right {
  margin-top: 65px;
}
.footer__upper__title {
  padding-bottom: 15px;
  color: #1055C1;
  font-size: 14px;
  border-bottom: 1px solid #90B1E3;
}
.footer__aside__list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 20px 0 0;
}
@media screen and (max-width: 820px) {
  .footer__aside__list {
    gap: 20px 10px;
  }
}
.footer__aside__item {
  width: 155px;
}
.footer__aside__item a {
  display: block;
  color: #666;
  font-size: 11px;
}
.footer__aside__item a:hover, .footer__aside__item a:hover * {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009FE8;
  text-decoration: underline;
}
.footer__aside__item .small {
  display: block;
  margin-bottom: 8px;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 820px) {
  .footer__aside__item .small {
    margin-bottom: 3%;
  }
}
.footer__aside__item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 820px) {
  .footer__aside__item:nth-child(4n) {
    margin-right: 3%;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: right;
}
@media screen and (max-width: 1020px) {
  .footer__logo {
    justify-content: left;
  }
}
.footer__logo__item {
  float: left;
  margin-right: 24px;
}
@media screen and (max-width: 820px) {
  .footer__logo__item {
    float: none;
    margin-right: 3%;
  }
}
.footer__logo__item:last-child {
  margin-right: 0;
}
.footer__logo__item.-isms {
  width: 147px;
}
.footer__logo__item.-isms img {
  width: 100%;
  height: auto;
}
.footer__logo__item.-isms span {
  display: block;
  padding-top: 4px;
  color: #000;
  text-align: center;
}
.footer__logo__item.-secturity-action {
  width: 70px;
}
.footer__logo__item.-secturity-action img {
  width: 100%;
  height: auto;
}
.footer__sns {
  *zoom: 1;
}
.footer__sns:after {
  content: "";
  display: table;
  clear: both;
}
.footer__sns__item {
  float: left;
  margin-right: 8px;
}
.footer__sns__item:last-child {
  margin-right: 0;
}
.footer__nav {
  position: relative;
  top: 14px;
}
@media screen and (max-width: 1020px) {
  .footer__nav {
    top: 0;
  }
}
.footer__nav__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1020px) {
  .footer__nav__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 820px) {
  .footer__nav__list {
    justify-content: initial;
  }
}
@media screen and (max-width: 1020px) {
  .footer__nav__item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 820px) {
  .footer__nav__item {
    margin: 5% 5% 0 0;
  }
}
.footer__nav__item a {
  color: #333;
  font-size: 13px;
}
.footer__nav__item a:hover {
  color: #009FE8;
  text-decoration: underline;
}
.footer__copy {
  padding: 18px 0;
  background: #838383;
  color: #FFF;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .footer__copy {
    font-size: 10px;
  }
}

/* 旧デザイン */
/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
@font-face {
  font-family: 'notosansjp';
  font-weight: 100;
  src: url(../dx_strategy/font/NotoSansJP-Thin.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 300;
  src: url(../dx_strategy/font/NotoSansJP-Light.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 400;
  src: url(../dx_strategy/font/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 500;
  src: url(../dx_strategy/font/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 600;
  src: url(../dx_strategy/font/NotoSansJP-Bold.ttf) format("truetype");
}
main {
  font-family: 'notosansjp', sans-serif;
}
main img {
  display: block;
  width: 100%;
}

span {
  font-weight: inherit;
}

#container {
  background: transparent;
  overflow-x: hidden;
}

.inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.ttl-sub {
  height: 16px;
  margin-bottom: 40px;
}

.mv .mv-bg {
  position: relative;
  background: url(../dx_strategy/img/mv_bg.webp) no-repeat center/cover;
  padding: 110px 0 130px;
}
.mv .mv-container {
  position: relative;
  max-width: 1256px;
  width: 100%;
  margin: 0 auto;
}
.mv .mv-ttl {
  position: relative;
  z-index: 1;
  max-width: 596px;
  width: 100%;
  filter: drop-shadow(0px 2px 20px #1976D2);
}
.mv .mv-ttl img {
  width: 100%;
}
.mv .mv-img {
  position: absolute;
  top: -33px;
  right: 0;
  max-width: 632px;
  width: 100%;
}

.message .inner {
  position: relative;
  padding: 72px 0;
}
.message .message-ttl {
  font-size: 40px;
  font-weight: 300;
  line-height: 56px;
  letter-spacing: 2px;
  text-align: center;
  background: linear-gradient(90deg, #1565c0 17.74%, #03a9f4 83.94%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 56px;
}
.message .message-container {
  position: relative;
  padding-top: 56px;
}
.message .message-img {
  position: absolute;
  max-width: 680px;
  width: 100%;
  top: 0;
  left: 0;
}
.message .message-txt {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.message .message-txt .deco {
  position: relative;
  display: inline-block;
  width: 237px;
  color: #1976D2;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.12px;
  z-index: 0;
  padding-left: 0.5em;
  margin-bottom: 4px;
  transition: .8s;
}
.message .message-txt .deco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1976D2;
  z-index: -1;
  transition: width 0.8s ease-out;
}
.message .message-txt .deco.active {
  color: #ffffff;
}
.message .message-txt .deco.active::before {
  width: 100%;
}
.message .message-ceo {
  text-align: right;
  padding-right: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.7px;
}
.message .message-ceo .middle {
  line-height: 22px;
}
.message .message-ceo .large {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.8px;
}

.arrow {
  display: none;
  position: absolute;
  bottom: -220px;
  left: -440px;
  transition: width 0.8s ease-out;
  /* 表示されたときにアニメーション開始 */
}
.arrow.active {
  display: block;
}
.arrow .arrow-container {
  position: relative;
  width: 640px;
  height: 450px;
}
.arrow .arrow-img {
  position: absolute;
  opacity: 0;
  transform: translate(-50px, 50px);
}
.arrow.active .arrow-img {
  animation: fadeInDiagonal 0.6s ease-out forwards;
}
.arrow .arrow01 {
  animation-delay: 0.2s;
  width: 149px;
  height: 159px;
  top: 75px;
  left: 206px;
}
.arrow .arrow02 {
  animation-delay: 0.6s;
  width: calc(476px / 2);
  height: calc(459px / 2);
  top: 220px;
  right: 77px;
}
.arrow .arrow03 {
  animation-delay: 1s;
  width: calc(1142px / 2);
  height: calc(900px / 2);
  top: 0;
  left: 70px;
}
.arrow .arrow04 {
  animation-delay: 1.4s;
  width: calc(385px / 2);
  height: calc(327px / 2);
  top: 165px;
  left: 0;
}

@keyframes fadeInDiagonal {
  from {
    opacity: 0;
    transform: translate(-50px, 50px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.purpose .purpose-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 61.37%, rgba(144, 215, 255, 0.15) 80.78%, rgba(159, 146, 212, 0.15) 100%);
  padding: 72px 0;
}
.purpose .purpose-ttl {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.6px;
  text-align: center;
  margin-bottom: 16px;
}
.purpose .purpose-ttl .deco {
  background: linear-gradient(90deg, #1565c0 15%, #03a9f4 85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: 'palt' on;
}
.purpose .purpose-lead {
  color: #1976D2;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}
.purpose .purpose-txt {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  margin-bottom: 45px;
}
.purpose .purpose-txt .deco {
  color: #1976D2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
}
.purpose .purpose-wrapper {
  position: relative;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.purpose .purpose-img03 {
  position: absolute;
  max-width: 752px;
  width: 100%;
  height: 700px;
  top: -300px;
  right: -185px;
  filter: drop-shadow(-50px 40px 30px rgba(25, 118, 210, 0.2));
}
.purpose .purpose-lower {
  position: relative;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.purpose .purpose-lower .purpose-img01 {
  width: 275px;
  margin-bottom: 20px;
}
.purpose .purpose-lower .lower-txt {
  margin-bottom: 144px;
}
.purpose .purpose-lower .lower-txt .deco {
  position: relative;
  display: inline-block;
  font-size: 48px;
  font-weight: 100;
  line-height: 64px;
  letter-spacing: 1.44px;
  overflow: hidden;
  color: #1976D2;
  margin-bottom: 4px;
  z-index: 0;
  transition: .8s;
}
.purpose .purpose-lower .lower-txt .deco:nth-of-type(3) {
  letter-spacing: -.03em;
}
.purpose .purpose-lower .lower-txt .deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #1565c0, #03a9f4);
  z-index: -1;
  transition: width 0.8s ease-out;
}
.purpose .purpose-lower .lower-txt .deco.active {
  color: #ffffff;
}
.purpose .purpose-lower .lower-txt .deco.active::before {
  width: 100%;
}

.scenario .inner {
  padding: 72px 0;
}
.scenario .scenario-ttl {
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.6px;
  text-align: center;
  margin-bottom: 16px;
}
.scenario .scenario-ttl .deco {
  background: linear-gradient(90deg, #1565c0 20%, #03a9f4 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: 'palt' on;
  line-height: 40px;
}
.scenario .scenario-list {
  display: flex;
  flex-wrap: wrap;
}
.scenario .scenario-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 260px;
  height: 260px;
}
.scenario .scenario-item:nth-of-type(2) .item-year {
  background: linear-gradient(90deg, #1e88e5 0%, #2196f3 100%);
}
.scenario .scenario-item:nth-of-type(2) .item-img img {
  width: 102px;
}
@media screen and (max-width: 375px) {
  .scenario .scenario-item:nth-of-type(2) .item-img img {
    width: 80px;
  }
}
.scenario .scenario-item:nth-of-type(3) .item-year {
  background: linear-gradient(90deg, #2196f3 0%, #03a9f4 100%);
}
.scenario .scenario-item:nth-of-type(3) .item-year::after {
  right: -10px;
}
.scenario .scenario-item:nth-of-type(3) .item-year::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 34px;
  height: 68px;
  background: url(../dx_strategy/img/scenario_arrow.svg) no-repeat center/contain;
  top: 50%;
  right: -23px;
  translate: 0 -50%;
}
.scenario .scenario-item:nth-of-type(3) .item-img img {
  width: 115px;
}
@media screen and (max-width: 375px) {
  .scenario .scenario-item:nth-of-type(3) .item-img img {
    width: 80px;
  }
}
.scenario .scenario-item:nth-of-type(4) .item-year {
  background: linear-gradient(90deg, #03a9f4 0%, #29b6f6 100%);
}
.scenario .scenario-item:nth-of-type(4) .item-year::after {
  display: none;
}
.scenario .scenario-item:nth-of-type(4) .item-img img {
  width: 72px;
}
.scenario .item-bubble {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid #1976D2;
  border-radius: 5px;
  color: #1976D2;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.12px;
  padding: 0 4px;
  margin: 0 auto 12px;
  overflow: visible;
}
.scenario .item-bubble::before, .scenario .item-bubble::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  left: 50%;
  translate: -50% 0;
}
.scenario .item-bubble::before {
  z-index: 1;
  border-color: #fff transparent transparent transparent;
  border-width: 10px 6px 0px 6px;
  bottom: -8px;
}
.scenario .item-bubble::after {
  z-index: -1;
  border-color: #1976d2 transparent transparent transparent;
  border-width: 11px 6.5px 0px 6.5px;
  bottom: -10px;
}
.scenario .item-img {
  width: 150px;
  margin: 0 auto 8px;
}
.scenario .item-img img {
  margin: 0 auto;
}
.scenario .item-year {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 56px;
  background: linear-gradient(90deg, #1976d2 0%, #1e88e5 100%);
  margin-bottom: 8px;
}
.scenario .item-year::after {
  position: absolute;
  z-index: 1;
  content: "";
  width: 34px;
  height: 68px;
  background: url(../dx_strategy/img/scenario_arrow.svg) no-repeat center/contain;
  top: 50%;
  right: -18px;
  translate: 0 -50%;
}
.scenario .item-year span {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
}
.scenario .item-year img {
  width: fit-content;
  height: 24px;
}
.scenario .item-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.7px;
  text-align: center;
}
.scenario .item-txt .deco {
  color: #1976D2;
  font-weight: 700;
  letter-spacing: 0.42px;
}

.approach .inner {
  padding: 72px 0;
}
.approach .approach-ttl {
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.6px;
  text-align: center;
  margin-bottom: 16px;
}
.approach .approach-ttl .deco {
  background: linear-gradient(90deg, #1565c0 30%, #03a9f4 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: 'palt' on;
  line-height: 40px;
}
.approach .approach-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.approach .approach-item {
  max-width: 512px;
  width: 100%;
  background: #E3F2FD;
  padding: 24px;
}
.approach .item-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.7px;
  text-align: center;
}
.approach .item-txt .deco {
  color: #1976D2;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1.2px;
}

.improvment .inner {
  padding: 72px 0;
}
.improvment .improvment-ttl {
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.6px;
  text-align: center;
  margin-bottom: 16px;
}
.improvment .improvment-ttl .lh {
  line-height: 40px;
}
.improvment .improvment-ttl .deco {
  background: linear-gradient(270deg, #00a0e9 20%, #2b59c9 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: 'palt' on;
  line-height: 40px;
}
.improvment .improvment-list {
  display: flex;
  flex-direction: column;
}
.improvment .improvment-item {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.improvment .improvment-item:nth-of-type(3) {
  margin-bottom: 0;
}
.improvment .improvment-item:nth-of-type(3) .item-txt {
  margin-bottom: 8px;
}
.improvment .improvment-item:nth-of-type(3) .item-txt:last-of-type {
  margin-bottom: 0;
}
.improvment .item-txtbox {
  max-width: 440px;
  width: 100%;
}
.improvment .item-ttl {
  color: #1976D2;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.improvment .item-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.7px;
}
.improvment .item-lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.7px;
}
.improvment .improvment-img {
  max-width: 560px;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .mv .mv-bg {
    padding: 30px 8% 35px;
    margin-bottom: 120px;
  }
  .mv .mv-img {
    width: 200px;
    height: 138px;
    top: auto;
    bottom: -143px;
    left: 50%;
    translate: -50% 0;
  }

  .message .inner {
    padding: 0 0 40px;
  }
  .message .message-ttl {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 1.2px;
    margin-bottom: 32px;
  }
  .message .message-container {
    padding-top: 0;
  }
  .message .message-img {
    position: relative;
    margin: 0 auto 32px;
  }
  .message .message-txt {
    padding: 0 6.4%;
    margin: 0 auto 32px;
  }
  .message .message-txt .deco {
    width: 240px;
  }
  .message .message-ceo {
    padding-right: 6.4%;
  }

  .purpose .inner {
    padding: 0 6.4%;
  }
  .purpose .purpose-bg {
    padding: 40px 0 22px;
  }
  .purpose .purpose-lead {
    max-width: 640px;
    letter-spacing: -.02em;
    margin: 0 auto 24px;
  }
  .purpose .purpose-wrapper {
    transition: .3s;
  }
}
@media screen and (max-width: 820px) and (max-width: 450px) {
  .purpose .purpose-wrapper {
    padding-top: 95px;
  }
}
@media screen and (max-width: 820px) {
  .purpose .purpose-img03 {
    position: relative;
    height: auto;
    top: 0;
    right: auto;
    left: 0;
  }
  .purpose .purpose-lower {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 6.4%;
  }
  .purpose .purpose-lower .lower-txt {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 1.2px;
    margin-bottom: 0;
  }
  .purpose .purpose-lower .lower-txt:nth-of-type(3) {
    letter-spacing: auto;
  }
  .purpose .purpose-lower .lower-txt .deco {
    letter-spacing: -.05em;
  }

  .scenario .inner {
    padding: 40px 6.4%;
  }
  .scenario .scenario-list {
    flex-direction: column;
    align-items: center;
  }
  .scenario .scenario-item {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 48px;
  }
  .scenario .scenario-item::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 16px;
    background: url(../dx_strategy/img/scenario_arrow01_sp.svg) no-repeat center/contain;
    bottom: -30px;
    left: 50%;
    translate: -50% 0;
  }
  .scenario .scenario-item:nth-of-type(3)::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 16px;
    background: url(../dx_strategy/img/scenario_arrow01_sp.svg) no-repeat center/contain;
    bottom: -38px;
    left: 50%;
    translate: -50% 0;
  }
  .scenario .scenario-item:nth-of-type(3) .item-year::before {
    display: none;
  }
  .scenario .scenario-item:nth-of-type(4) {
    margin-bottom: 0;
  }
  .scenario .scenario-item:nth-of-type(4)::after {
    display: none;
  }
  .scenario .item-bubble {
    position: relative;
    z-index: 2;
    top: 4px;
    margin: 0 auto;
  }
  .scenario .item-img {
    position: absolute;
    z-index: 1;
    top: calc(50% - 12px);
    left: -16px;
    translate: 0 -50%;
    width: 121px;
  }
  .scenario .item-year::after {
    display: none;
  }

  .approach .inner {
    padding: 40px 6.4%;
  }

  .improvment .inner {
    padding: 40px 6.4% 48px;
  }
  .improvment .improvment-item {
    margin-bottom: 48px;
  }
}
