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

	変数設定

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Plus+Jakarta+Sans:wght@200&display=swap");
/* color */
/* font */
/* trans */
/* margin */
/* box */
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	common
	common　header、nav、footer、main、parts
	一覧ページ【archive】
	記事ページ【single】
	404【404】


//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html {
  font-size: 15px;
  line-height: 2.13;
  letter-spacing: 0.05rem;
  text-align: center;
  color: #000;
  background: #fff;
  font-family: "IBM Plex Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.serif {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  word-wrap: normal;
  width: 100%;
  overflow: hidden;
}

main,
section,
article {
  overflow: hidden;
}

sup {
  font-size: 0.7rem;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
a:visited {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #1932BC;
  cursor: pointer;
}

a[href^="tel:"] { /*pointer-events:none; color:$text_color; cursor:default;*/ }

.overflow_hidden {
  overflow: hidden;
}

.clear {
  clear: both;
}

.spBr {
  display: none;
}

.spNoBr {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.column_l {
  float: left;
}

.column_r {
  float: right;
}

.caution_list {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666;
}
.caution_list li {
  position: relative;
  padding-left: 1rem;
}
.caution_list li::before {
  position: absolute;
  content: "※";
  left: 0;
}

.decimal_list {
  list-style-type: decimal;
  padding-left: 2rem;
}

.dot_list li {
  position: relative;
  padding-left: 1.5rem;
}
.dot_list li::before {
  position: absolute;
  content: "";
  top: 0.7rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #6C6C6C;
  text-indent: -1.5rem;
}

.caution {
  font-size: 0.8rem;
  color: #666;
}

.container {
  width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.w100 {
  width: 100%;
}

/* img_box */
.img_box {
  overflow: hidden;
}
.img_box img {
  width: 100%;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  line-height: 1;
  z-index: 10000002;
}
header #headerBlock h1,
header #recruitHeaderBlock h1 {
  margin: 20px 0 0 40px;
}
header #headerBlock h1 img,
header #recruitHeaderBlock h1 img {
  width: 300px;
}
header #spMenuBut {
  display: none;
}

/*--------------------------------------------------------------
	nav
--------------------------------------------------------------*/
#globalNavBlock {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  line-height: 1;
  z-index: 10000001;
  background: #E9E9E9;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 35px;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
#globalNavBlock #globalNav > ul {
  display: flex;
  gap: 35px;
}
#globalNavBlock #globalNav > ul > li > a {
  line-height: 83px;
}
#globalNavBlock #globalNav > ul > li > a p.title_e {
  display: none;
}
#globalNavBlock #globalNav > ul > li > a p {
  font-weight: 700;
}
#globalNavBlock #globalNav > ul > li.sub_menu {
  padding-right: 20px;
  background: url(../img/common/arrow_6_d_b.svg) no-repeat top 36px right;
  background-size: 10px;
}
#globalNavBlock #globalNav > ul > li.sub_menu > a {
  position: relative;
  display: block;
}
#globalNavBlock #globalNav > ul > li.sub_menu > a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: calc(50% - 10px);
  width: 20px;
  height: 12px;
  background: url(../img/common/globalnav_arrow.svg) no-repeat;
  opacity: 0;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 83px;
  left: 0;
  width: 100%;
  padding: 60px;
  background: #F3F3F3;
  text-align: left;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box {
  display: flex;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > section {
  width: 20%;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > section h2 {
  font-size: 2.66rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  white-space: nowrap;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > section h3 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  background: url(../img/common/arrow_1_r_b.svg) no-repeat center right;
  padding: 20px 30px 20px 0;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 {
  padding: 40px 20px 20px 20px;
  background: #fff;
  display: flex;
  align-items: start;
  gap: 15px;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul li.sub_menu_2 a {
  display: block;
  padding: 5px 0;
}
#globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul li.sub_menu_2 a span {
  font-size: 0.933rem;
  background: url(../img/common/arrow_2_r_g.svg) no-repeat center right;
  padding: 10px 15px 10px 0;
  line-height: 1.4;
}
#globalNavBlock #globalNav > ul > li.active > a::before {
  opacity: 1;
}
#globalNavBlock #globalNav > ul > li.active > .toggle_box {
  visibility: visible;
  opacity: 1;
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1, #globalNavBlock #globalNav > ul > li.sub_menu#menuSupport > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 {
  width: calc((100% - 25px) / 2);
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > img, #globalNavBlock #globalNav > ul > li.sub_menu#menuSupport > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > img {
  width: 35%;
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div, #globalNavBlock #globalNav > ul > li.sub_menu#menuSupport > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div {
  width: 65%;
}
#globalNavBlock #globalNav > ul > li#menuRecruit {
  padding-right: 20px;
  background: url(../img/common/icon_blank_link.svg) no-repeat top 34px right;
  background-size: 10px;
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 {
  width: calc((100% - 50px) / 3);
  display: block;
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > img {
  width: 100%;
  margin-bottom: 20px;
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div {
  width: 100%;
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > a {
  margin-bottom: 20px;
}
#globalNavBlock #globalNav > ul > li.sub_menu#menuCompany {
  /*
  & > .sub_menu_box {
  	& > section {
  		h2 { }
  		h3 { }
  	}
  	& > ul {
  		& > li.sub_menu_1 { width:calc((100% - 25px * 2)/3); display:block; padding:40px 20px 30px 20px;
  			& > img { width:100%; } // ill
  			& > div { width:100%;
  				& > a { padding-top:20px;
  					& > .title_e { display:none; }
  					& > p { background:url(../img/common/arrow_1_r_b.svg) no-repeat center right; }
  				} // 代表挨拶
  				& > ul {
  					li.sub_menu_2 {
  						a { 
  							span { }
  						} // ミッション
  					}
  				}
  			}
  		} 
  	}
  }
  */
}
#globalNavBlock #contactButBlockPc {
  display: flex;
}
#globalNavBlock #contactButBlockPc li a {
  display: block;
  width: 118px;
  height: 83px;
}
#globalNavBlock #contactButBlockPc li:nth-child(1) a {
  background: url(../img/common/icon_remote.svg) no-repeat center;
}
#globalNavBlock #contactButBlockPc li:nth-child(1) a:hover {
  opacity: 0.75;
}
#globalNavBlock #contactButBlockPc li:nth-child(2) a {
  background: url(../img/common/icon_contact.svg) no-repeat center;
}
#globalNavBlock #contactButBlockPc li:nth-child(2) a:hover {
  opacity: 0.75;
}
#globalNavBlock #contactButBlockSp {
  display: none;
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
#footerContactBlock {
  text-align: center;
  margin: 180px auto;
}
#footerContactBlock ul {
  display: flex;
}
#footerContactBlock ul li {
  width: 50%;
  border-left: 1px solid #000;
  padding: 20px;
}
#footerContactBlock ul li section {
  display: inline-block;
}
#footerContactBlock ul li section * {
  font-weight: 700;
  line-height: 2;
  text-align: left;
}
#footerContactBlock ul li section h4 {
  font-size: 1.33rem;
  letter-spacing: 1px;
}
#footerContactBlock ul li section a h5 {
  font-size: 2.33rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding-left: 50px;
}
#footerContactBlock ul li section a h5.tel {
  background: url(../img/common/icon_tel.svg) no-repeat center left;
}
#footerContactBlock ul li section a h5.mail {
  background: url(../img/common/icon_mail.svg) no-repeat center left;
}
#footerContactBlock ul li section p {
  letter-spacing: 1px;
}
#footerContactBlock ul li:last-child {
  border-right: 1px solid #000;
  padding: 20px;
}
#footerContactBlock {
  /*
  div {
  	a { display:block; width:75%; border-radius:12px; background:$sub_color; color:#fff; line-height:1.6; border:1px solid $sub_color; padding:20px; margin:($block_margin/2) auto ($block_margin*2);
  		h4 { font-size:1.33rem; font-weight:700; }
  		p { font-size:0.93rem; }
  	}
  	a:hover { @include opacity_hover; }
  }
  */
}

footer {
  position: relative;
  background: #E9E9E9;
  padding: 60px 70px 40px;
  text-align: left;
}
footer h1 {
  margin-bottom: 50px;
}
footer h1 img {
  width: 300px;
}
footer #spNavBlock {
  display: none;
}
footer #footerBlock {
  display: flex;
  justify-content: space-between;
}
footer #footerBlock dl#addressBlock dt {
  font-weight: 600;
}
footer #footerBlock dl#addressBlock dd {
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
footer #footerBlock dl#addressBlock dd p {
  font-size: 0.8rem;
}
footer #footerBlock dl#addressBlock dd:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
footer #footerBlock #footerNav nav {
  display: flex;
  gap: 50px;
}
footer #footerBlock #footerNav nav > ul > li > a {
  position: relative;
  font-weight: 500;
  line-height: 3;
}
footer #footerBlock #footerNav nav > ul > li > a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
footer #footerBlock #footerNav nav > ul > li > a:hover {
  color: #000;
}
footer #footerBlock #footerNav nav > ul > li > a:hover::before {
  width: 100%;
}
footer #footerBlock #footerNav nav > ul > li > ul > li > a {
  font-size: 0.86rem;
  color: #666;
  background: url(../img/common/arrow_2_r_g.svg) no-repeat center left;
  padding-left: 15px;
}
footer #footerBlock #footerNav nav > ul > li > ul > li > a:hover {
  color: #000;
}
footer #footerBlock #footerNav #mark_logos {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 115px;
}
footer #footerBlock #footerNav #mark_logos .fLogo a img {
  width: 45px;
}
footer #footerBlock #footerNav ul#privacyNav {
  display: flex;
  justify-content: flex-end;
  line-height: 1;
  margin-top: 20px;
}
footer #footerBlock #footerNav ul#privacyNav li {
  border-right: 1px solid #CBCBCB;
}
footer #footerBlock #footerNav ul#privacyNav li a {
  font-size: 0.8rem;
  padding: 0 10px;
  color: #989898;
}
footer #footerBlock #footerNav ul#privacyNav li a:hover {
  color: #000;
}
footer #footerBlock #footerNav #copyright {
  font-size: 0.8rem;
  text-align: right;
  color: #989898;
  margin-top: 10px;
}
footer .ill_box ul li:nth-child(1) {
  position: absolute;
  content: "";
  top: -60px;
  right: 200px;
  height: 100px;
}
footer .ill_box ul li:nth-child(2) {
  position: absolute;
  content: "";
  top: -60px;
  right: 100px;
  height: 100px;
}

/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/
#mainBlock {
  text-align: left;
}

/*--------------------------------------------------------------
	parts
--------------------------------------------------------------*/
/*-------------------- title --------------------*/
#pageTitleBlock {
  position: relative;
  margin-top: 83px;
  background: url(../img/common/bg_pagetitle.svg) no-repeat bottom left #E9E9E9;
  margin-bottom: 200px;
  display: flex;
  align-items: center;
  height: 350px;
}
#pageTitleBlock #titleBlock {
  width: 60%;
  margin-left: 40%;
}
#pageTitleBlock #titleBlock section {
  display: inline-block;
  text-align: left;
  line-height: 1.4;
}
#pageTitleBlock #titleBlock section h2 {
  font-size: 4.5rem;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
#pageTitleBlock #titleBlock section h3 {
  position: relative;
  font-size: 1.33rem;
  font-weight: 700;
  padding-left: 45px;
}
#pageTitleBlock #titleBlock section h3::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 35px;
  height: 2px;
  background: #1932BC;
}
#pageTitleBlock #titleBlock section h4 {
  font-size: 2.53rem;
  font-weight: 700;
}
#pageTitleBlock figure {
  position: absolute;
  top: 120px;
  left: 0;
  width: 736px;
  height: 430px;
}
#pageTitleBlock figure img {
  width: 80%;
}

.headline {
  font-size: 2.13rem;
  font-weight: 600;
  line-height: 1.1;
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.headline span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1932BC;
  vertical-align: baseline;
  margin-left: 15px;
}

.headline_s {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
  padding-left: 30px;
  margin-bottom: 20px;
}

.headline_s::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 20px;
  height: 1px;
  background: #1932BC;
}

/*-------------------- breadcrumb --------------------*/
#breadcrumbBlock {
  position: absolute;
  bottom: -70px;
  right: 70px;
  display: inline;
  text-align: right;
}
#breadcrumbBlock li {
  display: inline;
  font-size: 0.93rem;
  line-height: 1;
}
#breadcrumbBlock li a {
  position: relative;
  padding-right: 20px;
  margin-right: 12px;
  text-decoration: underline;
}
#breadcrumbBlock li a:after {
  position: absolute;
  content: ">";
  top: 0.2rem;
  right: 0;
  color: #1932BC;
}

/*-------------------- button --------------------*/
.but_more {
  text-align: right;
}
.but_more a {
  position: relative;
  display: inline-block;
  background: url(../img/common/arrow_4_r_w.svg) no-repeat center right 15px;
  padding: 14px 45px 10px 0;
  font-weight: 500;
  letter-spacing: 1px;
}
.but_more a::before {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
.but_more a:hover {
  color: #000 !important;
}
.but_more a:hover::before {
  width: calc(100% - 45px);
}

.but_back {
  margin: 0 auto;
  text-align: center;
}
.but_back a {
  display: inline-block;
  width: 300px;
  text-align: center;
  line-height: 1;
  color: #1932BC;
  border: 1px solid #1932BC;
  padding: 25px 0;
  margin: 0 20px;
  border-radius: 50px;
}
.but_back {
  /*a:hover { color:#fff !important; background:$key_color; }*/
}
.but_back a:hover {
  opacity: 0.75;
}

.but_next a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  color: #1932BC;
  background: url(../img/common/arrow_3_r_b.svg) no-repeat center right 20px #fff;
  border: 1px solid #1932BC;
  padding: 25px 0;
  border-radius: 50px;
}
.but_next a:hover {
  opacity: 0.75;
}

.but_blank a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  color: #80A4FF;
  background: url(../img/common/icon_blank.svg) no-repeat center right 20px #fff;
  border: 1px solid #1932BC;
  padding: 25px 0;
  border-radius: 50px;
}
.but_blank a:hover {
  opacity: 0.75;
}

/*
nav.anchor_nav { padding:$block_margin;
	ul { display:flex; gap:25px; 
		li { width:calc((100% - 75px)/4);
			a { display:block; color:#fff; background:url(../img/common/arrow_d_w.svg) center right 20px no-repeat $key_color; border:1px solid $key_color; text-align:center; padding:5px; }
			a:hover { color:$key_color; background:url(../img/common/arrow_d_r.svg) center right 20px no-repeat #fff;  }
		}
	}
}


.but_entry { text-align:center; line-height:1.6; margin-top:($block_margin/2);
	a { display:inline-block; color:#fff; background:$key_color; border:1px solid $key_color; padding:10px 30px; margin:0 auto ($block_margin/2);
		p { }
		h5 { font-size:1.25rem; background:url(../img/common/arrow_r_w.svg) center right no-repeat; padding-right:20px; }
	}
	a:hover { color:$key_color; background:#fff; 
		h5 { background:url(../img/common/arrow_r_r.svg) center right no-repeat; }
	}
}
*/
/*-------------------- box --------------------*/
.quote_box {
  display: inline-block;
  padding: 0 50px;
  background: url(../img/common/quote_1.svg) no-repeat top left, url(../img/common/quote_2.svg) no-repeat bottom right;
}

/*-------------------- modal --------------------*/
/*
.modal_open{ }
.modal { position:fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5);
	overflow:auto; opacity:0; visibility:hidden; transition:.3s; box-sizing:border-box; padding:40px; z-index:20000000;
}
.modal:before{ content:""; display:inline-block; vertical-align:middle; height:100vh; }
.modal_container{ position:relative; display:inline-block; vertical-align:middle; max-width:1000px; width:90%; background:#fff; padding:30px 50px; }
.modal_close{ position:absolute; top:10px; right:10px; width:30px; height:30px; background:$key_color; font-size:1.6rem; line-height:30px; color:#fff; }

// active
.modal.active{ opacity:1; visibility:visible; }

//recruit
.modal {
	.modal_container { 
		section {
			h3 { font-size:1.5rem; font-weight:bold; }
			.modal_container_inner { height:70vh; overflow-y:auto; }
			table { width:100%; 
				tr { border-bottom:1px solid #9b9b9b;
					th,td { padding:20px; }
					th { width:180px; text-align:center;
						span { display:inline-block; background:#e7e7e7; border-radius:5px; font-weight:bold; padding:0 10px; }
					}
					td { width:calc(100% - 180px); text-align:left; }
				}
			}
		}
	}
}
*/
/*-------------------- table --------------------*/
.table_type_1 {
  width: 100%;
}
.table_type_1 caption {
  font-size: 1.2rem;
  font-weight: 600;
}
.table_type_1 tr {
  border-bottom: 1px solid #CBCBCB;
}
.table_type_1 tr th, .table_type_1 tr td {
  padding: 10px 0;
  font-size: 0.93rem;
}

.table_type_2 {
  width: 100%;
}
.table_type_2 thead {
  color: #fff;
  background: #6C6C6C;
}
.table_type_2 thead tr th {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
.table_type_2 thead tr th:not(:last-child) {
  border-right: 1px solid #CBCBCB;
}
.table_type_2 thead tr:not(:last-child) {
  border-bottom: 1px solid #CBCBCB;
}
.table_type_2 tbody {
  background: #E9E9E9;
}
.table_type_2 tbody tr {
  border-bottom: 1px solid #CBCBCB;
}
.table_type_2 tbody tr th, .table_type_2 tbody tr td {
  padding: 20px;
}
.table_type_2 tbody tr th {
  font-size: 1.06rem;
  color: #fff;
  background: #6C6C6C;
  vertical-align: middle;
  white-space: nowrap;
}
.table_type_2 tbody tr td {
  font-size: 0.93rem;
}
.table_type_2 tbody tr td:not(:last-child) {
  border-right: 1px solid #CBCBCB;
}

/*-------------------- list --------------------*/
/* adjust_box */
.adjust_box {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.adjust_box.box_1x1:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.adjust_box.box_16x9:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.adjust_box.box_3x4:before {
  content: "";
  display: block;
  padding-top: 133%;
}
.adjust_box.box_4x3:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.adjust_box.box_4x5:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.adjust_box.box_2x1:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.adjust_box .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.adjust_box .inner img {
  width: 100%;
  height: auto;
}

/*-------------------- text --------------------*/
.marker {
  position: relative;
}

.marker::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: #FFFF00;
  z-index: -1;
}

/*-------------------- Gutenberg --------------------*/
/* iframe */
.post_text_block {
  margin-bottom: 100px;
}

.post_text_block .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.post_text_block .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*-------------------- transform --------------------*/
.set_fade_up {
  opacity: 0;
  transform: translateY(50px);
}

.set_fade_opacity {
  opacity: 0;
}

.set_fade_down {
  opacity: 0;
  transform: translateY(-50px);
}

.fade_in {
  opacity: 1;
  transform: translateY(0);
  bottom: 0;
  transition: 1s cubic-bezier(0.12, 0.59, 0.41, 0.95);
}

.fade_in_opacity {
  opacity: 1;
  transition: 3s cubic-bezier(0.2, 0.9, 0.7, 1);
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	一覧ページ 【archive】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*--------------------------------------------------------------
	pagination
--------------------------------------------------------------*/
/* <  > */
.pagination_prev_next_arrow {
  display: flex;
  justify-content: space-between;
  justify-items: center;
}
.pagination_prev_next_arrow a.prev {
  background: url(../img/common/arrow_4_L_w.svg) no-repeat center left;
  padding: 10px 0 0 30px;
  opacity: 0.5;
}
.pagination_prev_next_arrow a.prev:hover {
  background-image: url(../img/common/arrow_4_l_b.svg);
}
.pagination_prev_next_arrow p.prev_no {
  width: calc(5rem + 30px);
  height: 1px;
}
.pagination_prev_next_arrow a.next {
  background: url(../img/common/arrow_4_r_w.svg) no-repeat center right;
  padding: 10px 30px 0 0;
  opacity: 0.5;
}
.pagination_prev_next_arrow a.next:hover {
  background-image: url(../img/common/arrow_4_r_b.svg);
}
.pagination_prev_next_arrow p.next_no {
  width: calc(5rem + 30px);
  height: 1px;
}
.pagination_prev_next_arrow a.archive {
  display: inline-block;
  padding: 10px;
  border-bottom: 1px solid #1932BC;
  margin: 0 auto;
}

/* 1234 */
.pagination {
  display: flex;
  justify-content: space-between;
  justify-items: center;
}
.pagination ul {
  display: inline-block;
  text-align: center;
}
.pagination ul li {
  display: inline-block;
  min-width: 30px;
  margin-right: 10px;
}
.pagination ul li a {
  display: block;
  font-size: 1.2rem;
  color: #6C6C6C;
  width: 30px;
}
.pagination ul li a.prev,
.pagination ul li a.next {
  color: #9B9893;
}
.pagination ul li a.pager {
  line-height: 30px;
}
.pagination ul li a:hover {
  color: #1932BC;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li.active {
  color: #fff;
  background: #1932BC;
  border-radius: 100%;
}
.pagination #prevNo,
.pagination #nextNo {
  width: calc(5rem + 30px);
  height: 1px;
}
.pagination a.prev {
  background: url(../img/common/arrow_4_L_w.svg) no-repeat center left;
  padding-left: 30px;
  opacity: 0.5;
}
.pagination a.prev:hover {
  background-image: url(../img/common/arrow_4_l_b.svg);
}
.pagination a.next {
  background: url(../img/common/arrow_4_r_w.svg) no-repeat center right;
  padding-right: 30px;
  opacity: 0.5;
}
.pagination a.next:hover {
  background-image: url(../img/common/arrow_4_r_b.svg);
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	 404 【404】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#notfoundBlock {
  margin: 200px auto 0;
}
#notfoundBlock h2,
#notfoundBlock p {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
  font-weight: 800;
  color: #666;
}
#notfoundBlock h2 {
  font-size: 5rem;
  line-height: 1;
}
#notfoundBlock p {
  margin-bottom: 50px;
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	 reCAPTCHA v3

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.grecaptcha-badge[data-style=bottomright] {
  visibility: hidden;
}

@media screen and (max-width: 1200px) {
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  	common　

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  html {
    font-size: 13px;
    line-height: 1.92;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .spBr {
    display: block;
  }
  .spNoBr {
    display: none;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .column_l {
    float: none;
  }
  .column_r {
    float: none;
  }
  .container {
    width: 90%;
  }
  /*--------------------------------------------------------------
  	header
  --------------------------------------------------------------*/
  header {
    width: 100vw;
    height: 60px;
    background: #E9E9E9;
    text-align: left;
    z-index: 10000002;
  }
  header #headerBlock h1,
  header #recruitHeaderBlock h1 {
    margin: 15px 0 0 15px;
  }
  header #headerBlock h1 img,
  header #recruitHeaderBlock h1 img {
    width: 180px !important;
  }
  header {
    /* 三 */
  }
  header #spMenuBut {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10000003;
    background: #1932BC;
  }
  header #spMenuBut span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
  }
  header #spMenuBut span:nth-child(1) {
    top: 24px;
  }
  header #spMenuBut span:nth-child(2) {
    top: 30px;
  }
  header #spMenuBut span:nth-child(3) {
    top: 36px;
  }
  .openNav header {
    background: #fff !important;
  }
  .openNav #spMenuBut span:nth-child(1) {
    top: 30px;
    transform: rotate(-45deg);
  }
  .openNav #spMenuBut span:nth-child(2),
  .openNav #spMenuBut span:nth-child(3) {
    top: 30px;
    transform: rotate(45deg);
  }
  /*--------------------------------------------------------------
  	nav
  --------------------------------------------------------------*/
  #globalNavBlock {
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    top: 60px;
    display: block;
    text-align: left;
    background: #fff !important;
  }
  #globalNavBlock #globalNav {
    padding: 30px 10%;
  }
  #globalNavBlock #globalNav > ul {
    display: block;
  }
  #globalNavBlock #globalNav > ul > li {
    border-bottom: 1px solid #CBCBCB;
  }
  #globalNavBlock #globalNav > ul > li > a {
    position: relative;
    display: block;
    line-height: 1.4;
    padding: 15px 0;
  }
  #globalNavBlock #globalNav > ul > li > a p.title_e {
    display: block;
    font-size: 1.38rem;
    font-weight: 700;
  }
  #globalNavBlock #globalNav > ul > li > a p.title_e + p {
    font-size: 0.92rem;
  }
  #globalNavBlock #globalNav > ul > li > a .link_arrow {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 30px;
    height: 100%;
    background: url(../img/common/arrow_5_r_b.svg) no-repeat center;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu {
    position: relative;
    background: none;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > a::before {
    display: none;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu .link_arrow {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: url(../img/common/arrow_5_d_b.svg) no-repeat top 20px center;
    cursor: pointer;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    background: none;
    padding: 0;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > section {
    display: none;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul {
    display: block;
    width: 100%;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 {
    display: block;
    padding: 0;
    background: none;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > img {
    display: none;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > a {
    font-size: 0.92rem;
    margin-bottom: 15px;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul li.sub_menu_2 a {
    display: block;
    padding: 8px 0;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul li.sub_menu_2 a span {
    position: relative;
    font-size: 1rem;
    padding: 0;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul li.sub_menu_2 a span::before {
    position: absolute;
    content: "-";
    top: 10px;
    left: 0;
  }
  #globalNavBlock #globalNav > ul > li.active > a::before {
    display: none; /*opacity:1;*/
  }
  #globalNavBlock #globalNav > ul > li.sub_menu.active .link_arrow {
    background-image: url(../img/common/arrow_5_u_b.svg);
  }
  #globalNavBlock #globalNav > ul > li.sub_menu.active > a {
    color: #1932BC;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1, #globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 {
    width: 100%;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div, #globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div {
    width: 100%;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > a, #globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > a {
    margin-bottom: 10px;
    color: #1932BC;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul, #globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul {
    margin-bottom: 20px;
  }
  #globalNavBlock #globalNav > ul > li.sub_menu#menuProducts > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul li.sub_menu_2 a span, #globalNavBlock #globalNav > ul > li.sub_menu#menuCompany > .toggle_box > .sub_menu_box > ul > li.sub_menu_1 > div > ul li.sub_menu_2 a span {
    background: url(../img/common/arrow_1_r_b.svg) no-repeat center right;
    padding: 10px 25px 10px 10px;
  }
  #globalNavBlock #globalNav > ul > li#menuRecruit {
    background: none;
    padding-right: 0;
  }
  #globalNavBlock #globalNav > ul > li#menuRecruit > a {
    position: relative;
  }
  #globalNavBlock #globalNav > ul > li#menuRecruit > a .link_arrow {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 30px;
    height: 100%;
    background: url(../img/common/icon_blank.svg) no-repeat center;
  }
  #globalNavBlock #contactButBlockPc {
    display: none;
  }
  #globalNavBlock #contactButBlockSp {
    display: block;
  }
  #globalNavBlock #contactButBlockSp > a {
    display: inline-block;
    padding: 0 10% 30px;
    background: url(../img/common/arrow_1_r_b.svg) no-repeat top 2px right;
  }
  #globalNavBlock #contactButBlockSp > section {
    position: relative;
    background: #1932BC;
    text-align: center;
    padding: 30px 10% 100px;
    overflow: visible;
  }
  #globalNavBlock #contactButBlockSp > section h6 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }
  #globalNavBlock #contactButBlockSp > section ul li a {
    position: relative;
    display: block;
    width: 250px;
    font-size: 1.38rem;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    border-radius: 40px;
    padding: 18px 20px 18px 30px;
    margin: 0 auto 10px;
    background: #fff;
  }
  #globalNavBlock #contactButBlockSp > section ul li a::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: url(../img/common/icon_tel.svg) no-repeat center #1932BC;
    border-radius: 100%;
  }
  #globalNavBlock #contactButBlockSp > section ul li a:hover {
    color: #1932BC;
  }
  #globalNavBlock #contactButBlockSp > section ul li:nth-child(2) a::before {
    background-image: url(../img/common/icon_mail.svg);
  }
  #globalNavBlock #contactButBlockSp > section::before {
    position: absolute;
    content: "";
    top: -40px;
    right: 10px;
    width: 58px;
    height: 60px;
    background: url(../img/common/ill_contact_nav.svg) no-repeat center;
  }
  .openNav #globalNavBlock {
    visibility: visible;
    opacity: 1;
    overflow: auto;
  }
  /*--------------------------------------------------------------
  	footer
  --------------------------------------------------------------*/
  #footerContactBlock {
    margin: 50px auto;
  }
  #footerContactBlock ul {
    display: block;
  }
  #footerContactBlock ul li {
    width: 90%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 40px 0;
    margin: 0 auto;
  }
  #footerContactBlock ul li section * {
    text-align: center;
  }
  #footerContactBlock ul li section h4 {
    font-size: 1.23rem;
    font-weight: 700;
  }
  #footerContactBlock ul li section a h5 {
    font-size: 1.84rem;
  }
  #footerContactBlock ul li section p {
    font-size: 0.92rem;
  }
  #footerContactBlock ul li:last-child {
    border: none;
    padding: 40px 0;
  }
  #footerContactBlock {
    /*
    div {
    	a { width:90%;  padding:20px; margin:($block_margin/4) auto ($block_margin*0.8);
    		h4 { font-size:1.15rem; font-weight:700; }
    		p { font-size:1rem; }
    	}
    	a:hover { }
    }
    */
  }
  footer {
    padding: 40px 5% 20px;
  }
  footer h1 {
    margin-bottom: 40px;
  }
  footer h1 img {
    width: 180px;
  }
  footer #spNavBlock {
    display: flex;
    margin-bottom: 30px;
  }
  footer #spNavBlock ul {
    width: 50%;
  }
  footer #spNavBlock ul li a {
    display: block;
    font-size: 1.07rem;
    font-weight: 700;
    padding: 10px 0;
  }
  footer #footerBlock {
    display: block;
  }
  footer #footerBlock dl#addressBlock dt {
    font-size: 1rem;
  }
  footer #footerBlock dl#addressBlock dd p {
    font-size: 0.92rem;
  }
  footer #footerBlock dl#addressBlock dd:last-child {
    border: none;
  }
  footer #footerBlock #footerNav {
    position: relative;
  }
  footer #footerBlock #footerNav nav {
    display: flex;
    gap: 40px;
    display: none;
  }
  footer #footerBlock #footerNav #mark_logos {
    position: absolute;
    bottom: 0px;
    right: 0;
    gap: 10px;
    z-index: 1;
  }
  footer #footerBlock #footerNav #mark_logos .fLogo a img {
    width: 35px;
  }
  footer #footerBlock #footerNav ul#privacyNav {
    display: block;
    line-height: 2;
    margin-top: 0;
    margin-top: 40px;
  }
  footer #footerBlock #footerNav ul#privacyNav li {
    border: none;
  }
  footer #footerBlock #footerNav ul#privacyNav li a {
    display: block;
    font-size: 11px;
    padding: 0;
  }
  footer #footerBlock #footerNav #copyright {
    text-align: left;
    font-size: 10px;
  }
  footer .ill_box ul li:nth-child(1) {
    position: absolute;
    content: "";
    top: -20px;
    right: 70px;
  }
  footer .ill_box ul li:nth-child(1) img {
    width: 58px;
  }
  footer .ill_box ul li:nth-child(2) {
    position: absolute;
    content: "";
    top: -20px;
    right: 20px;
  }
  footer .ill_box ul li:nth-child(2) img {
    width: 38px;
  }
  /*--------------------------------------------------------------
     parts
   --------------------------------------------------------------*/
  #pageTitleBlock {
    margin-top: 60px;
    background-size: 400px;
    margin-bottom: 100px !important;
    display: flex;
    align-items: center;
    height: 150px;
  }
  #pageTitleBlock #titleBlock section h2 {
    font-size: 3rem;
  }
  #pageTitleBlock #titleBlock section h3 {
    font-size: 1rem;
  }
  #pageTitleBlock #titleBlock section h3::before {
    top: 8px;
  }
  #pageTitleBlock #titleBlock section h4 {
    font-size: 2.53rem;
  }
  #pageTitleBlock figure {
    top: 40px;
    width: 350px;
    height: auto;
  }
  .headline {
    font-size: 1.75rem;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .headline span {
    font-size: 0.9rem;
  }
  .headline_s {
    font-size: 1.25rem;
    line-height: 1.2;
    padding-left: 25px;
    margin-bottom: 15px;
  }
  .headline_s::before {
    top: 6px;
    width: 15px;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*
  .caution_list { font-size:0.8rem; line-height:1.6; color:#666;
  	li { position:relative; padding-left:1.0rem; }
  	li::before { position:absolute; content:'※'; left:0; }
  }
  .decimal_list { list-style-type:decimal; padding-left:2rem; }
  */
  .dot_list li {
    padding-left: 1.25rem;
  }
  .dot_list li::before {
    top: 0.6rem;
    width: 7px;
    height: 7px;
    text-indent: -1.25rem;
  }
  /*--------------------------------------------------------------
      main
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
      parts
  --------------------------------------------------------------*/
  /*-------------------- title --------------------*/
  #pageTitleBlock {
    margin-top: 60px;
    background-size: 200px;
    margin-bottom: 80px !important;
    height: 120px;
  }
  #pageTitleBlock #titleBlock {
    width: calc(100% - 100px);
    margin-left: 100px;
  }
  #pageTitleBlock #titleBlock section h2 {
    font-size: 1.84rem;
    margin-bottom: 5px;
  }
  #pageTitleBlock #titleBlock section h3 {
    font-size: 0.84rem;
    padding-left: 20px;
    letter-spacing: 0;
  }
  #pageTitleBlock #titleBlock section h3::before {
    top: 6px;
    width: 15px;
  }
  #pageTitleBlock #titleBlock section h4 {
    font-size: 1.84rem;
    margin-bottom: 5px;
  }
  #pageTitleBlock figure {
    top: 60px;
    width: 200px;
    height: auto;
  }
  #pageTitleBlock figure img {
    width: 100%;
  }
  /*
  .headline { font-size:2.13rem; font-weight:600; line-height:1.1; border-bottom:1px solid $bg_color; padding-bottom:30px; margin-bottom:50px;
  	span { @include text_e; font-size:1rem; font-weight:700; color:$key_color; vertical-align:baseline; margin-left:15px; }
  }

  .headline_s { position:relative; font-size:1.6rem; font-weight:600; line-height:1.1; padding-left:30px; margin-bottom:20px; }
  .headline_s::before { position:absolute; content:''; top:10px; left:0; width:20px; height:1px; background:$key_color; }
  */
  /*-------------------- breadcrumb --------------------*/
  #breadcrumbBlock {
    bottom: -50px;
    right: 5%;
    width: 70% !important;
    line-height: 1.2; /* background: #80A4FF;*/
  }
  #breadcrumbBlock li {
    font-size: 0.76rem;
  }
  #breadcrumbBlock li a {
    padding-right: 15px;
    margin-right: 10px;
  }
  /*-------------------- button --------------------*/
  .but_more {
    text-align: right;
  }
  .but_more a {
    background-position: center right 5px;
    padding: 14px 30px 10px 0;
    background-size: 15px;
  }
  .but_more a:hover::before {
    width: calc(100% - 30px);
  }
  .but_back a {
    width: 250px;
  }
  /*-------------------- box --------------------*/
  .quote_box {
    display: block;
    padding: 0;
    background: none;
  }
  /*-------------------- modal --------------------*/
  /*-------------------- table --------------------*/
  /*
  .table_type_1 { width:100%;
  	caption { font-size:1.2rem; font-weight:600; }
  	tr { border-bottom:1px solid $border_color;
  		th,td { padding:10px 0; font-size:0.93rem; }
  	}
  }

  .table_type_2 { width:100%;
  	thead{ color:#fff; background:#6C6C6C;
  		tr {
  			th { padding:20px; text-align:center; vertical-align:middle; }
  			th:not(:last-child) { border-right:1px solid $border_color; }
  		}
  		tr:not(:last-child) { border-bottom:1px solid $border_color; }
  	}
  	tbody { background:$bg_color;
  		tr { border-bottom:1px solid $border_color;
  			th,td { padding:20px; }
  			th { font-size:1.06rem; color:#fff; background:#6C6C6C; vertical-align:middle; white-space:nowrap; }
  			td { font-size:0.93rem; }
  			td:not(:last-child) { border-right:1px solid $border_color; }
  		}
  	}
  }
  */
  /*-------------------- list --------------------*/
  /* adjust_box */
  /*-------------------- Gutenberg --------------------*/
  /* iframe */
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

      一覧ページ 【archive】

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*--------------------------------------------------------------
  	pagination
  --------------------------------------------------------------*/
  /* <  > */
  .pagination_prev_next_arrow a.prev {
    padding-left: 20px;
    background-size: 15px;
    padding: 6px 0 0 20px;
  }
  .pagination_prev_next_arrow p.prev_no {
    width: calc(5rem + 20px);
  }
  .pagination_prev_next_arrow a.next {
    padding-left: 20px;
    background-size: 15px;
    padding: 6px 20px 0 0;
  }
  .pagination_prev_next_arrow p.next_no {
    width: calc(5rem + 20px);
  }
  .pagination_prev_next_arrow a.archive {
    padding: 5px;
  }
  /* 1234 */
  .pagination ul li {
    min-width: 20px;
  }
  .pagination ul li a {
    font-size: 1.2rem;
    width: 20px;
  }
  .pagination ul li a.prev,
  .pagination ul li a.next {
    color: #9B9893;
  }
  .pagination ul li a.pager {
    line-height: 20px;
  }
  .pagination ul li a:hover {
    color: #1932BC;
  }
  .pagination #prevNo,
  .pagination #nextNo {
    width: calc(5rem + 20px);
  }
  .pagination a.prev {
    padding-left: 20px;
    background-size: 15px;
  }
  .pagination a.next {
    padding-right: 20px;
    background-size: 15px;
  }
  /*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

       404 【404】

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  #notfoundBlock {
    margin: 100px auto 0;
  }
  #notfoundBlock h2 {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
