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

File Name: company.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: 768px) {
  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: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .header-logo img {
    width: 85px;
    height: 28px;
  }
}

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

.header-nav-btn {
  margin: 0 0 21px;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .header__upper {
    padding-top: 0;
    margin-bottom: 0;
  }
}
.header__upper .logo {
  float: left;
  width: 190px;
}
@media screen and (max-width: 768px) {
  .header__upper .logo {
    width: 25.33333%;
  }
}
.header__upper .logo img {
  width: 100%;
  height: auto;
}
.header__upper__right {
  float: right;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .header__contact__item {
    float: none;
  }
}
.header__contact__item.-tel, .header__contact__item.-fax {
  margin: 3px 28px 0 0;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .header__contact__item.-inquiry a:before {
    right: 20px;
  }
}
.header__lower {
  float: right;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .main-inner {
    padding: 0 15px;
    width: 100%;
  }
}

/* 新デザインフッター用ボタン */
.mod-btn {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .mod-btn__red a {
    height: 44px;
  }
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
.side {
  float: left;
  width: 220px;
}
@media screen and (max-width: 768px) {
  .side {
    float: none;
    width: 100%;
  }
}
.side__box {
  margin-bottom: 25px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .side__banner {
    float: left;
    width: 48.5%;
  }
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .twitter-timeline {
    width: 100% !important;
    height: 500px !important;
  }
}

@media screen and (max-width: 768px) {
  .fb-page {
    display: block !important;
    width: 100% !important;
  }
}
.fb-page span,
.fb-page iframe {
  width: 220px !important;
}
@media screen and (max-width: 768px) {
  .fb-page span,
  .fb-page iframe {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 30px;
  }
}

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

.footer-linklist {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .footer-btnlist {
    margin: 0 auto 50px;
  }
}
.footer-btnlist ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .footer__aside__item .small {
    margin-bottom: 3%;
  }
}
.footer__aside__item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .footer__nav__list {
    justify-content: initial;
  }
}
@media screen and (max-width: 1020px) {
  .footer__nav__item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .footer__copy {
    font-size: 10px;
  }
}

/* 旧デザイン */
/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
/* MV */
.main-visual {
  background-image: url("../company/img/main_visual_bg_company.jpg");
}

/* アンカー(core/_module.scssに記載) */
/* アンカー */
.anchorlist {
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .anchorlist {
    margin: 30px 0 20px;
  }
}
.anchorlist ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 1180px;
}
@media screen and (max-width: 1180px) {
  .anchorlist ul {
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 10px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .anchorlist ul {
    flex-wrap: wrap;
  }
}
.anchorlist ul li {
  margin: 0 15px;
}
@media screen and (max-width: 1180px) {
  .anchorlist ul li {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .anchorlist ul li {
    margin: 0;
    width: 48%;
  }
}
.anchorlist ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  width: 180px;
  height: 40px;
  border: 2px solid #009FE8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.3;
  background: #FFF;
  color: #009FE8;
}
.anchorlist ul li a:hover {
  border: 2px solid #45A6F6;
  background: #2585d5;
  color: #FFF;
  opacity: 1;
}
@media screen and (max-width: 1180px) {
  .anchorlist ul li a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .anchorlist ul li a {
    width: 100%;
  }
}
.anchorlist ul li.anchorlist-active a {
  pointer-events: none;
  border: none;
  background: linear-gradient(91.75deg, #5f8af6 9.4%, #009fe8 94.31%);
  color: #FFF;
}
.anchorlist ul li.anchorlist-gray a {
  border: 2px solid #747474;
  color: #747474;
}
.anchorlist ul li.anchorlist-gray a:hover {
  background: #515151;
  color: #FFF;
}
.anchorlist ul li.anchorlist-gray.anchorlist-active a {
  pointer-events: none;
  border: none;
  background: #747474;
  color: #FFF;
}
.anchorlist.anchorlist__6 ul {
  justify-content: space-between;
}
.anchorlist.anchorlist__6 ul li {
  margin: 0;
}

.box {
  width: 1180px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1180px) {
  .box {
    width: 96%;
  }
}
@media screen and (max-width: 768px) {
  .box {
    width: 92%;
    margin-bottom: 10%;
  }
}
.box__title {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 14px;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .box__title {
    margin-bottom: 8%;
    padding-bottom: 3%;
    font-size: 22px;
    line-height: 1.2;
  }
}
.box__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: #000;
}
.box__lead {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .box__lead {
    margin-bottom: 8%;
  }
}
.box__list ul {
  margin: 0 auto 40px;
  width: 900px;
}
@media screen and (max-width: 960px) {
  .box__list ul {
    margin-bottom: 10%;
    width: 100%;
  }
}
.box__list ul li {
  border-bottom: 1px solid #6AC7F2;
}
@media screen and (max-width: 768px) {
  .box__list ul li {
    border-bottom: none;
  }
}
.box__list ul li:first-child {
  border-top: 1px solid #6AC7F2;
}
@media screen and (max-width: 768px) {
  .box__list ul li:first-child {
    border-top: none;
  }
}
.box__list ul li dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .box__list ul li dl {
    display: block;
  }
}
.box__list ul li dl dt, .box__list ul li dl dd {
  padding: 10px 0 10px 60px;
  font-size: 16px;
  line-height: 1.8125;
}
@media screen and (max-width: 768px) {
  .box__list ul li dl dt, .box__list ul li dl dd {
    padding: 2%;
    font-size: 14px;
  }
}
.box__list ul li dl dt {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .box__list ul li dl dt {
    width: auto;
    background: rgba(0, 159, 232, 0.2);
  }
}
.box__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box__logo img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .box__logo img {
    width: 70%;
    max-width: 300px;
  }
}
.box__logo span {
  padding: 5px 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #050126;
}
