 @charset 'UTF-8';
/*
Theme Name: argus-corporation
Author: Knotus
*/


/*==============================================
　　Reset
==============================================*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	line-height: normal;
	color: #001114;
}
body {
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;
	background: #F5F4EE;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	border-radius: .2rem;
}
ul, ol {
	margin:0;
	padding:0;
}
li {
	list-style-type: none;
}
p {
	margin:0;
	padding:0;
}
a {
	text-decoration: none;
	color: #001114;
}
a, a:hover, button, button:hover, img, article, input, textarea {
  text-decoration:none;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	font-weight: normal;
	margin:0;
	padding:0;
}
dl, dt, dd {
	margin:0;
	padding:0;
}
input:focus, textarea:focus {
  outline:none;
}
input, textarea, button {
	border: none;
	background: none;
}
button {
	cursor: pointer;
	display: block;
	width: 100%;
}
figure,figcaption {
	margin: 0;
	padding: 0;
}


/*==============================================
　　Common
==============================================*/

/*　Layout -- Boxレイアウト
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
#wrapper {
	overflow: hidden;
	width: 100%;
}
.container {
	box-sizing: border-box;
	padding: 0 15px;
}
.inner {
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
}


/*  Width -- 横幅の指定
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.w10 { width: 10%; }
.w15 { width: 15%; }
.w20 { width: 20%; }
.w25 { width: 25%; }
.w30 { width: 30%; }
.w35 { width: 35%; }
.w40 { width: 40%; }
.w45 { width: 45%; }
.w50 { width: 50%; }
.w55 { width: 55%; }
.w60 { width: 60%; }
.w65 { width: 65%; }
.w70 { width: 70%; }
.w75 { width: 75%; }
.w80 { width: 80%; }
.w85 { width: 85%; }
.w90 { width: 90%; }
.w95 { width: 95%; }
.w100 { width: 100%; }


/*　Font -- 書式の指定
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.eng {
	font-family: "usual", sans-serif;
	font-weight: 300;
}
.txt       {line-height: 1.7;}


/*　Button -- ボタン
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.btn {
	margin-top: 4.8rem;
}
.btn a {
	display: inline-block;
	position: relative;
}
.btn a::after {
	content: "";
	display: block;
	width: .6rem;
	height: .6rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
/*.btn.main a {
	font-size: 1.3rem;
	border-bottom: 1px solid #001114;
	padding: .8rem 8rem .8rem 0;
}
.btn.main a::after {
	background: url("img/SVG/arrow.svg");
	right: 0;
}*/
.btn.main a {
	font-size: 1.3rem;
	border-bottom: 1px solid #E5E5E5;
	padding: .8rem 8rem .8rem 0;
	position: relative;
  display: inline-block;
  text-decoration: none;
}
.btn.main a::before {
	position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #003A8B;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.btn.main a:hover {
	color: #003A8B;
}
.btn.main a:hover::before {
	transform-origin: left top;
  transform: scale(1, 1);
}
.btn.main a::after {
	background: url("img/SVG/arrow.svg");
	right: 0;
}
.btn.sub {
	max-width: 48rem;
	margin: 12.8rem auto 0;
}
.btn.sub a, .btn.sub button {
	background: #003A8B;
	color: #fff;
	font-size: 1.7rem;
	padding: 2.4rem 0;
	width: 100%;
	text-align: center;
	border-radius: .8rem;
}

/*　Link -- リンクの指定
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.txtLink,
.txtLink-hover:hover { text-decoration: underline; }


/*　Load -- ローディング
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
#load {
	width: 100%;
	height: 100vh;
	background: #fff;
	z-index: 999999998;
	position: fixed;
	top: 0;
	left: 0;
}
#logomark {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999999999;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}



/*==============================================
　　Header
==============================================*/
#header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
}
#header .header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6.4rem;
}
#header .header_inner .logo {
	width: 6.4rem;
}
#header .header_inner .global_nav ul {
	display: flex;
	gap: 2.4rem;
}
#header .header_inner .global_nav ul li a {
	font-size: 1.6rem;
	color: #fff;
}
#header .header_inner .global_nav.lower ul li a {
	color: #001114;
}
#header .header_inner .global_nav.lower ul li a:hover {
	color: #003A8B;
}



/*==============================================
　　Main
==============================================*/

/*　TopPage
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.sp_only {
	display: none;
}
.top.mv {
	width: 100%;
	height: 100vh;
	position: relative;
}
.top.mv::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background:  rgba(0,17,20,.48);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.top.mv .mv_copy {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	text-align: center;
	color: #fff;
}
.top.mv .mv_copy .main {
	font-size: 5.6rem;
	letter-spacing: .2rem;
	margin-bottom: 2.4rem;
}
.top.mv .mv_copy .sub {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .2rem;
}
.top.mv .mv_news {
	position: absolute;
	left: 6.4rem;
	bottom: 6.4rem;
}
.top.mv .mv_news a {
	color: #fff;
}
.top.mv .mv_news a .title {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 1.6rem;
}
.top.mv .mv_news a .date {
	font-size: 1.1rem;
}

/* Slide */
.slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
	z-index: -9;
}
.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url("img/2x/mv1.webp");
  animation-delay: -2s;
}
.slide-image:nth-child(2) {
  background-image: url("img/2x/mv2.webp");
  animation-delay: 6s;
}
.slide-image:nth-child(3) {
  background-image: url("img/2x/mv3.webp");
  animation-delay: 14s;
}
@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.1);
  }
    100% {
  opacity: 0;
  }
}

.top_title {
	margin-bottom: 3.2rem;
}
.top_title .title {
	font-size: 4.8rem;
	font-weight: 300;
	padding-bottom: 1.6rem;
	position: relative;
}
.top_title .title::before {
	content: "";
	display: block;
	width: 1.6rem;
	height: .1rem;
	background: #001114;
	position: absolute;
	left: 0;
	bottom: 0;
}
.top_title .lead {
	margin-top: 2rem;
}
.top_title .lead.eng {
	font-size: 1.3rem;
}
.g_icon {
	margin-top: 6.4rem;
	border-top: 1px solid #E5E5E5;
}
.g_icon ul {
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.g_icon ul li {
	width: 17.6%;
	min-width: 8rem;
	text-align: center;
	margin-top: 2.4rem;
}
.g_icon ul li .title {
	font-size: 1.2rem;
}
.top_membership {
	background: url("img/2x/top_membership_bg.webp");
	background-position: center;
	background-size: cover;
	position: relative;
	padding: 9.6rem 0;
}
.top_membership::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,17,20,.48);
	position: absolute;
	top: 0;
	left: 0;
}
.line {
	border-top: 1px solid rgba(255,255,255,.24);
	padding-top: 1.6rem;
	position: relative;
	z-index: 9;
}
.line.lower {
	border-top: 1px solid #E5E5E5;
	margin-bottom: 6.4rem;
}
.line .title {
	font-size: 1.2rem;
	color: #fff;
}
.line.lower .title {
	color: #001114;
}
.top_membership .content {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 6.4rem;
	color: #fff;
	margin-top: 8rem;
	position: relative;
	z-index: 9;
}
.top_membership .item:nth-child(2) {
	width: 40%;
}
.top_membership .item .top_title {
	margin-bottom: 0;
}
.top_membership .item .top_title .title::before {
	background: #fff;
}
.top_membership .item .navi {
	width: 100%;
}
.top_membership .item .navi li {
	border-bottom: 1px solid rgba(255,255,255,.24);
}
.top_membership .item .navi li:first-child {
	border-top: 1px solid rgba(255,255,255,.24);
}
.top_membership .item .navi li a {
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	padding: 3.2rem 0;
	position: relative;
}
.top_membership .item .navi li a:hover {
	text-decoration: underline;
}
.top_membership .item .navi li a::after {
	content: "";
	display: block;
	width: .6rem;
	height: .6rem;
	background: url("img/SVG/arrow2.svg");
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.top_membership .item .navi li a span {
	display: block;
	font-size: 1.1rem;
	margin-top: .6rem;
}
.news ul li {
	border-bottom: 1px solid #E5E5E5;
}
.news ul li:first-child {
	border-top: 1px solid #E5E5E5;
}
.news.border ul li:last-child {
	border-bottom: none;
}
.news ul li a {
	display: block;
	padding: 3.2rem 0;
	position: relative;
}
.news ul li a:hover {
	text-decoration: underline;
}
.news ul li a::after {
	content: "";
	display: block;
	width: .6rem;
	height: .6rem;
	background: url("img/SVG/arrow.svg");
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.news ul li a .title {
	font-size: 1.7rem;
	font-weight: 500;
	margin-bottom: 1.2rem;
}
.news ul li a .date {
	font-size: 1.1rem;
	color: #969DA6;
}



/*　LowerPage -- 共通
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/

/* セクション */
.sec_inner {
	max-width: 124.8rem;
	margin: 0 auto;
	padding: 0 6.4rem;
}
.sec_margin {
	margin-top: 19.2rem;
}
.sec_margin2 {
	margin-top: 12.8rem;
}
.col_wrapper {
	max-width: 124.8rem;
	margin: 32rem auto 0;
	padding: 0 6.4rem;
	display: flex;
	justify-content: space-between;
}
.main_col {
	width: 100%;
	max-width: 96rem;
	padding-right: 10%;
}
/*.main_col {
	width: 71.42857142%;
	max-width: 80rem;
	padding-right: 16rem;
}*/
.side_col {
	width: 100%;
	max-width: 16rem;
}

/* サイドカラム */
.side_nav li {
	margin-bottom: 1.6rem;
}
.side_nav li:last-child {
	margin-bottom: 0;
}
.side_nav li a {
	display: block;
	padding: .8rem 0;
}
.side_nav li a:hover {
	text-decoration: underline;
}

/* 見出し */
.lower_heading .main {
	font-size: 8rem;
	font-weight: 300;
}
.lower_heading .sub {
	font-size: 1.7rem;
	font-weight: 500;
	margin-top: 1.2rem;
}
.sec_heading {
	margin-bottom: 4rem;
}
.sec_heading .main {
	font-size: 3.2rem;
	/*margin-top: 6.4rem;*/
	padding-bottom: 2.4rem;
	position: relative;
}
.sec_heading .main::before {
	content: "";
	display: block;
	width: 1.6rem;
	height: .1rem;
	background: #001114;
	position: absolute;
	left: 0;
	bottom: 0;
}
.sec_heading .lead {
	margin-top: 2.4rem;
}

.check  ul li {
	background: rgba(255,255,255,.64);
	border: 1px solid #E5E5E5;
	border-radius: .8rem;
	margin-bottom: 1.6rem;
	padding-left: 4.4rem;
	position: relative;
}
.check  ul li:last-child {
	margin-bottom: 0;
}
.check  ul li::before {
	content: "";
	display: block;
	width: 3.2rem;
	height: 3.2rem;
	background: #EA2100;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 2.4rem;
	transform: translateY(-50%);
}
.check  ul li::after {
	content: "";
	display: block;
	width: 1rem;;
	height: 1rem;;
	background: url("img/SVG/check.svg") no-repeat;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 3.5rem;
	transform: translateY(-50%);
}
.check  ul li .title {
	font-size: 1.7rem;
	font-weight: 500;
	padding: 2.4rem;
}




/* 本文 */
.lead {
	line-height: 1.8;
}
.lead1 {
	margin-top: 3.2rem;
	line-height: 2;
}
.lead a {
	text-decoration: underline;
}
.lead a:hover {
	text-decoration: none;
}


/* 画像 */
.insert_image {
	margin-top: 4rem;
}

/* 表 */
.table1 {
	width: 100%;
	display: grid;
	grid-template-columns: max-content 1fr;
}
.table1.margin {
	margin-top: 3.2rem;
}
.table1 dl dt, .table1 dl dd {
	border-top: 1px solid #E5E5E5;
	line-height: 1.7;
}
.table1 dl:last-child dt, .table1 dl:last-child dd {
	border-bottom: 1px solid #E5E5E5;
}
.table1 dl {
	display: contents;
	box-sizing: border-box;
}
.table1 dl dt {
	display: flex;
	padding: 2.4rem 3.2rem 2.4rem 0;
	font-weight: 500;
}
.table1 dl dd {
	padding: 2.4rem 0 2.4rem 0;
}
.table1 dl dd a {
	text-decoration: underline;
}
.table1 dl dd a:hover {
	text-decoration: none;
}
/*.table1 dl dt span {
	padding-right: 2.4rem;
	border-right: 1px solid #E5E5E5;
}*/


/* イメージボックス */
.image_box1 {
	display: flex;
	flex-direction: row-reverse;
	gap: 12%;
}
.image_box1 .text {
	max-width: 56rem;
	width: 100%;
}
.image_box1 .image ul {
	position: relative;
	top: -4rem;
}
.image_box1 .image ul li {
	width: 32rem;
	position: relative;
}
.image_box1 .image ul li:nth-child(1) {
	z-index: 9;
}
.image_box1 .image ul li:nth-child(2) {
	position: absolute;
	top: 12.8rem;
	right: 12.8rem;
}
.image_box1 .image ul li:nth-child(2)::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,17,20,.48);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: .2rem;
}

.image_box2 {
	display: flex;
	flex-wrap: wrap;
}
.image_box2 .item {
	width: 30%;
	margin: 3.2rem 5% 0 0;
}
.image_box2 .item:nth-of-type(3n) {
	margin-right: 0;
}
.image_box2 .item a {
	display: block;
}
.image_box2 .item a img {
	width: 100%;
	max-height: 24.9rem;
	object-fit: cover;
}
.image_box2 .item .text .title {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.7;
	margin: 2.4rem 0 1.2rem;
}
.image_box2 .item .text a:hover .title {
	text-decoration: underline;
}
.image_box2 .item .text .category {
	font-size: 1.1rem;
	color: #969DA6;
}
.image_box2.journal {
	justify-content: space-between;
}
.image_box2.journal .item {
	width: 47.5%;
	margin: 3.2rem 0 0 0;
}

.image_box3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.image_box3 .item {
	width: calc(50% - 2.5%);
}
.image_box3 .item:nth-child(n+3) {
	margin-top: 4rem;
}
.image_box3 .item .title {
	font-size: 2.1rem;
	font-weight: 500;
	margin: 2.4rem 0 1.6rem;
	padding-bottom: 1.6rem;
	border-bottom: 1px solid #E5E5E5;
}

.image_box4 .item {
	display: flex;
	gap: 4.8rem;
	margin-bottom: 6.4rem;
}
.image_box4 .item:last-child {
	margin-bottom: 0;
}
.image_box4 .item .image {
	max-width: 24rem;
}
.image_box4 .item .image img {
	background: #fff;
}
.image_box4 .item .text {
	width: 100%;
}
.image_box4 .item .text .title {
	font-size: 2.1rem;
	font-weight: 500;
	margin-bottom: 2rem;
}


/* イメージリスト */
.image_list {
	margin-top: 4rem;
}
.image_list .sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.image_list .sub ul li {
	width: calc(33.4% - .8rem);
	margin-top: .8rem;
}

/* スライドボックス */
.slide_box {
	display: flex;
	justify-content: space-between;
}
.slide_box .text {
	padding-right: 6.4rem;
}
.slide_box .image {
	max-width: 72rem;
	width: 100%;
}
.slide_box .image ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.slide_box .image ul li {
	width: calc(50% - 2.5%);
}
.slide_box .image ul li:nth-child(n+3) {
	margin-top: 5%;
}
.slide_box .image ul li a {
	display: block;
}
.slide_box .image ul li a img {
	width: 100%;
	max-height: 21.1rem;
	object-fit: cover;
}
.slide_box .image ul li a .title {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.7;
	margin: 2.4rem 0 1.2rem;
}
.slide_box .image ul li a:hover .title {
	text-decoration: underline;
}
.slide_box .image ul li a .category {
	font-size: 1.1rem;
	color: #969DA6;
}

.slide_box2 ul {
  padding-bottom: 4rem;
}
.slide_box2 ul .slick-slide {
  /* max-width: 34.4rem; */
  padding-right: 4.8rem;
}
.slide_box2 ul .slick-slide:last-child,
.slide_box2 ul .slick-list {
  padding-right: 0;
}
/*.slide_box2 ul li .item img {
	min-width: 29.6rem;
	min-height: 18.2rem;
}*/
.slide_box2.svg ul li img {
	background: rgba(255,255,255,.64);
	border: 1px solid #E5E5E5;
	border-radius: .8rem;	
}
.slide_box2 ul li .title {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.7;
	margin-top: 1.2rem;
}
.slide_box2 .slick-prev, .slide_box2 .slick-next {
	background: #F5F4EE;
	z-index: 9;
	width: 4rem;
	height: 4rem;
}
.slide_box2 .slick-prev {
	left: 0;
	border-radius: 0 .2rem .2rem 0;
}
.slide_box2 .slick-prev:before,
.slide_box2 .slick-next:before {
	content: "";
	display: inline-block;
	width: .5rem;
	height: .5rem;
	border-top: 1px solid #001114;
	border-left: 1px solid #001114;
	opacity: 1;
}
.slide_box2 .slick-next:before {
  transform: rotate(135deg);
}
.slide_box2 .slick-prev:before {
  transform: rotate(-45deg);
}
.slide_box2 .slick-prev:hover,
.slide_box2 .slick-prev:focus,
.slide_box2 .slick-next:hover,
.slide_box2 .slick-next:focus {
  background: #fff;
}
.slide_box2 .slick-prev,
.slide_box2 .slick-next {
  top: 100%;
  background: #fff;
  border: solid 1px #E5E5E5;
}
.slide_box2 .slick-next{
  left: calc(4rem - 1px);
}

/* ナンバーボックス */
.number_box {
	background: rgba(255,255,255,.64);
	border: 1px solid #E5E5E5;
	border-radius: .8rem;
	padding: 6.4rem;
}
.number_box .item {
	display: flex;
	gap: 2.4rem;
	align-items: center;
	border-bottom: 1px solid #E5E5E5;
	margin-bottom: 4rem;
	padding-bottom: 4rem;
}
.number_box .item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.number_box .item .number .eng {
	background: #003A8B;
	color: #fff;
	display: inline-block;
	width: 6.4rem;
	line-height: 6.4rem;
	text-align: center;
	font-size: 1.6rem;
	border-radius: 50%;
}
.number_box .item .text .title {
	font-size: 2.1rem;
	font-weight: 500;
	margin-bottom: 1.2rem;
}


/*　Business -- 雑貨商品の卸売
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.tag ul {
	display: flex;
	margin-bottom: .8rem;
}
.tag ul:last-child {
	margin-bottom: 0;
}
.tag ul li {
	font-size: 1.7rem;
	font-weight: 500;
	background: rgba(255,255,255,.64);
	border: 1px solid #E5E5E5;
	padding: .8rem 1.6rem;
	border-radius: 99rem;
	margin-right: .8rem;
}
.tag ul li:last-child {
	margin-right: 0;
}
.area_list {
	background: url("img/SVG/area_bg.svg") no-repeat center;
}


/*　Shop -- 直営店舗一覧
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.icon_inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.icon_inner .item .s_icon ul {
	display: flex;
	gap: .8rem;
}
.icon_inner .item .s_icon ul li a {
	display: block;
	width: 4.8rem;
	height: 4.8rem;
	background: rgba(255,255,255,.64);
	border: 1px solid #E5E5E5;
	border-radius: 50%;
	position: relative;
}
.icon_inner .item .s_icon ul li a::before {
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
.icon_inner .item .s_icon ul li.map a::before {
	background: url("img/SVG/map.svg") no-repeat center;
}
.icon_inner .item .s_icon ul li.instagram a::before {
	background: url("img/SVG/instagram.svg") no-repeat center;
}


/*　Case Study -- 取引事例
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.cs_category ul {
	display: flex;
	gap: 2.4rem;
}
.cs_category ul li a {
	display: block;
	font-size: 1.3rem;
}
.cs_category ul li a:hover {
	text-decoration: underline;
}


/*　Case Study -- 記事
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.post_wrap h4 {
	font-size: 2.1rem;
	font-weight: 500;
	border-bottom: 1px solid #E5E5E5;
	padding-bottom: 1.2rem;
	margin: 6.4rem 0 2.4rem 0;
}
.post_wrap p {
	line-height: 1.8;
}
.post_wrap .check {
	margin-top: 2.4rem;
}
.post_wrap .check.green ul li::before {
	background: #0BAD29;
}


/*　News -- 記事
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.post_wrap *:first-child, .post_wrap h4+* {
	margin-top: 0;
}
.post_wrap.news p {
	margin-top: 2.4rem;
}



/*　Journal -- ジャーナル
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.pager,
.wp-pagenavi {
	border-top: 1px solid #E5E5E5;
	padding-top: 6.4rem;
	margin-top: 6.4rem;
}
.pager ul,
.wp-pagenavi {
	display: flex;
	justify-content: space-between;
}
.pager ul li a,
.wp-pagenavi a {
	display: inline-block;
	font-size: 1.3rem;
	border-bottom: 1px solid #001114;
	padding: .8rem 8rem .8rem 0;
	position: relative;
}
.pager ul li a::after,
.wp-pagenavi a::after {
	content: "";
	display: block;
	width: .6rem;
	height: .6rem;
	background: url("img/SVG/arrow.svg");
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.main_image img {
	width: 100%;
	max-height: 32rem;
	object-fit: cover;
}



/*　Faq -- よくあるご質問
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.faq_list ul li {
	background: rgba(255,255,255,.64);
	border: 1px solid #E5E5E5;
	border-radius: .8rem;
	margin-bottom: 1.6rem;
}
.faq_list ul li:last-child {
	margin-bottom: 0;
}
.faq_list ul li .title {
	font-size: 1.7rem;
	font-weight: 500;
	cursor: pointer;
	padding: 2.4rem;
	position: relative;
}
.faq_list ul li .title::before, .faq_list ul li .title::after {
	content: "";
	display: block;
	width: 1rem;
	height: .1rem;
	background: #001114;
	position: absolute;
	top: 50%;
	right: 2.4rem;
	transform: translateX(-50%);
}
.faq_list ul li .title::after {
	right: 2.85rem;
	transform: rotate(90deg);
}
.faq_list ul li .title.open::before {
	transform: rotate(-45deg);
	right: 2.9rem;
}
.faq_list ul li .title.open::after {
	transform: rotate(45deg);
}
.faq_list ul li .title span {
	width: 3.2rem;
	line-height: 3.2rem;
	background: #003A8D;
	color: #fff;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	font-size: 1.3rem;
	margin-right: 1.2rem;
}
.faq_list ul li .lead {
	display: none;
	background: rgba(255,255,255,.64);
	padding: 2.4rem;
	border-radius: 0 0 .8rem .8rem;
}


/*　Contact -- お問い合わせ
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.table1.form {
	margin-top: 4rem;
}
.table1.form .req {
	display: inline;
	font-size: 1.1rem;
	font-weight: 500;
	color: #fff;
	background: #003A8D;
	padding: .1rem .6rem;
	margin-right: .8rem;
	border-radius: .2rem;
}
.form input, .form textarea, .form select {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: .4rem;
	padding: 1.6rem;
}
.form label {
	cursor: pointer;
}
.form input[type=radio], .form input[type=checkbox] {
	display: none;
}
.form span.check {
	position: relative;
	padding-left: 2.8rem;
	margin-bottom: 1rem;
	display: block;
}
.form dl dt, .form dl dd {
	font-size: 1.5rem;
}
.form dl dt {
	align-items: center;
}
.form dl dd label:last-child span.check {
	margin-bottom: 0;
}
.form span.check::before {
	content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: .2rem;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.form span.check::after {
	content: "";
	display: block;
	width: .7rem;
	height: .7rem;
	background: #003A8D;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: .7rem;
	transform: translateY(-50%);
	opacity: 0;
}
.form input[type=radio]:checked + span.check::after, .form input[type=checkbox]:checked + span.check::after {
	opacity: 1;
}
.w1 {
	width: 50%;
}
.w2 {
	width: 75%;
}
.w3 {
	width: 100%;
}
.agree {
	text-align: center;
	padding: 6.4rem;
}
.agree a {
	text-decoration: underline;
	font-size: 1.5rem;
}
.agree span.check {
	display: inline-block;
}
.submit {
	padding: 0 12.8rem;
	margin: 0 auto;
}
.form.btn.sub {
	margin-top: 0;
}
.submit button {
	font-size: 1.5rem;
	font-weight: 400;
	border: 1px solid #0e0f0e;
	border-radius: 99rem;
	min-width: 19.2rem;
	padding: 2.4rem 3.2rem 2.4rem 3.2rem;
	position: relative;
}
.submit button:hover {
	background: #0e0f0e;
	color: #fff;
}
.submit button::after {
	right: 2.4rem;
}
.submit button::after {
	content: "";
	display: block;
	background-image: url("img/SVG/arrow2.svg");
	background-size: cover;
	width: .35rem;
	height: .7rem;
	position: absolute;
	top: 50%;
	right: 2.4rem;
	transform: translateY(-50%);
	-webkit-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	-moz-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	-o-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	-ms-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
}
.submit button:hover::after {
	background-image: url("img/SVG/arrow3.svg");
	-webkit-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	-moz-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	-o-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	-ms-transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
	transition: all .5s cubic-bezier(0.4, 0.04, 0.16, 1);
}

/*==============================================
　　フォームのボタン
==============================================*/
.wpcf7-radio .wpcf7-list-item {
	margin-top:5px;
	display: block;
	margin-bottom: 1rem;
}
.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  text-indent: 30px;
  position: relative;
}
.agree.form .wpcf7-list-item-label {
  display: inline-flex;
  text-indent: 0;
}
.agree.form .wpcf7-list-item-label a {
  text-indent: 30px;
}
/* デフォルトのボタン */
input[type="radio"],
input[type="checkbox"] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
/* チェック前のボタン */
.wpcf7-list-item-label::before {
  content: "";
	display: block;
	width: 2rem;
	height: 2rem;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: .2rem;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.wpcf7-list-item-label::after {
	content: "";
	display: block;
	width: .7rem;
	height: .7rem;
	background: #003A8D;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: .65rem;
	transform: translateY(-50%);
	opacity: 0;
}
/* チェック後のボタン */
input[type="radio"]:checked + .wpcf7-list-item-label::after,
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form .prev {
	text-align: center;
}
.form .prev input {
	background: none;
	border: none;
	padding: 0;
	margin-top: 32px;
	text-decoration: underline;
	cursor: pointer;
}


/*　Privacy Policy -- プライバシーポリシー
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.privacy .item {
	margin-bottom: 6.4rem;
}
.privacy .item:last-child {
	margin-bottom: 0;
}
.privacy .item .heading {
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1.7;
	margin-bottom: 1.2rem;
	padding-bottom: 1.6rem;
	border-bottom: 1px solid #E5E5E5;
}
.privacy .item .text {
	margin-top: 3.2rem;
}
.privacy .item .text ul li {
	margin-bottom: .8rem;
}
.privacy .item .text ul li:last-child {
	margin-bottom: 0;
}
.privacy .item .text ul li .subheading {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.7;
}
.privacy .item .text ul li .sub_lead {
	line-height: 1.8;
}


/*　Sitemap -- サイトマップ
￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣￣*/
.sitemap ul {
	display: flex;
	flex-wrap: wrap;
}
.sitemap ul li {
	width: calc(50% - 1.6rem);
}
.sitemap ul li:nth-child(even) {
	margin-left: 3.2rem;
}
.sitemap ul li:nth-child(n+3) {
	margin-top: 3.2rem;
}
.sitemap ul li a {
	display: block;
	font-size: 1.6rem;
	border-bottom: 1px solid #001114;
	padding: 1.6rem 3.2rem 1.6rem 0;
	position: relative;
}
.sitemap ul li a::after {
	content: "";
	display: block;
	width: .6rem;
	height: .6rem;
	background: url("img/SVG/arrow.svg");
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}




/*==============================================
　　Footer
==============================================*/
#footer {
	margin-top: 19.2rem;
	background: rgba(255,255,255,.64);
}
.footer_top {
	padding: 6.4rem 0;
}
.footer_top ul {
	display: flex;
}
.footer_top ul li {
	flex: 1;
}
.footer_top ul li {
	border-right: 1px solid #E5E5E5;
	padding: 0 6.4rem;
}
.footer_top ul li:last-child {
	border-right: none;
}
.footer_top ul li .title {
	text-align: center;
	font-size: 1.7rem;
	font-weight: 500;
}
.footer_top ul li .title .eng {
	font-size: 1.1rem;
	font-weight: 300;
	color: #969DA6;
	margin-top: .6rem;
	display: block;
}
.footer_top ul li .lead {
	text-align: center;
	margin-top: 3.2rem;
}
.footer_top ul li .btn.main {
	margin: 4.8rem auto 0;
	max-width: 16rem;
}
.footer_top ul li .btn.main a {
	display: block;
}
.footer_sitemap {
	border-top: 1px solid #E5E5E5;
	padding: 12.8rem 0;
}
.footer_sitemap .sec_inner {
	display: flex;
	justify-content: space-between;
}
.footer_sitemap .logo {
	width: 6.4rem;
}
.footer_sitemap .navi {
	display: flex;
	gap: 4.8rem;
}
.footer_sitemap .navi .item .title {
	font-size: 1.5rem;
	margin-bottom: 1.6rem;
}
.footer_sitemap .navi .item ul li {
	margin-bottom: .3rem;
}
.footer_sitemap .navi .item ul li:last-child {
	margin-bottom: 0;
}
.footer_sitemap .navi .item ul li a {
	display: block;
	padding: .3rem 0;
}
.footer_sitemap .navi .item ul li a:hover {
	text-decoration: underline;
}
.footer_bottom {
	padding-bottom: 8rem;
}
.footer_bottom .sec_inner {
	display: flex;
	justify-content: space-between;
}
.footer_bottom .item ul {
	display: flex;
	align-items: center;
	gap: 3.2rem;
}
.footer_bottom .item ul li a {
	display: block;
	font-size: 1.2rem;
}
.footer_bottom .item ul li a:hover {
	text-decoration: underline;
}
.footer_bottom .item .copyright {
	font-size: 1.2rem;
	color: #969DA6;
}
