@charset "utf-8";

/*--------------------------------------------------------
★レスポンシブ■タブレット対応
--------------------------------------------------------*/
@media screen and (max-width: 1280px) {
  /* layout */
	html {
		width: 1280px;
		overflow-x: hidden !important;
	}
	body {
		width: 1280px;
		overflow-x: hidden !important;
		-webkit-text-size-adjust: 100% !important;
	}
	.wrapper {
		max-width: 1280px;
		width: 98%;
		margin: auto;
		padding: 0 1%;
		position: relative;
	}
	.bx-viewport {
		overflow-x: hidden;
		width: 1280px !important;
	}
}

/*--------------------------------------------------------
★レスポンシブ■スマホ表示切替ボタン
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
	li a#btnSP {
		display: none;
	}
	li a#btnPC {
		position: fixed;
		display: block;
		width: 30%;
		height: auto;
		z-index: 100;
		font-size: 12px;
		padding: 8px 2px;
		border-radius: 8px;
		background-color: #182987;
		box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.2);
		text-align: center;
		color: #fff;
		text-decoration: none;
		bottom: 20px;
		left: 12px;
		z-index: 99999999 !important;
	}
}
@media screen and (min-width: 481px) {
	#switch {
		display: none;
		height: 0;
	}
	li a#btnSP {
		display: none;
	}
	li a#btnPC {
		display: none;
	}
}

@media screen and (min-width: 1021px) {
	#switch {
		display: block;
		height: auto;
	}
	li a#btnPC {
		display: none;
	}
	li a#btnSP {
		position: fixed;
		display: block !important;
		width: 300px;
		height: auto;
		z-index: 100;
		font-size: 24px;
		padding: 8px;
		text-align: center;
		border-radius: 22px;
		background-color: #182987;
		box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.2);
		color: #fff;
		text-decoration: none;
		bottom: 30px;
		left: 30px;
		z-index: 99999999 !important;
	}
}
@media screen and (min-width: 1023px) {
	#switch {
		display: none;
		height: 0;
	}
	li a#btnSP {
		display: none;
	}
	li a#btnPC {
		display: none;
	}
}

/*--------------------------------------------------------
★レスポンシブ■ヘッダ部分
--------------------------------------------------------*/
@media screen and (min-width: 481px) {
	#rd_header {
		width: 0;
		height: 0;
		display: none;
	}
	.pc_none {
		display: none !important;
	}
}
@media screen and (max-width: 480px) {
	.sp_none {
		display: none;
	}

	/* header */
	header {
		max-width: 480px;
		width: 100%;
		height: auto;
		border-top: none;
		padding-top: 0;
	}
	.fixed_header {
		position: fixed;
		display: block;
		width: 100%;
		height: 50px;
		top: 0;
		z-index: 99999;
		background: #fff;
		box-shadow: 0 3px 1px rgba(0, 0, 0, 0.2);
		border-bottom: 5px solid #182987;
		box-sizing: border-box;
	}
	.fix_logo a {
		position: relative;
		display: block;
		float: left;
		width: 80%;
		height: 45px;
		text-indent: -9999px;
		background: url(../images/header_logo.png) no-repeat center left;
		-webkit-background-size: contain;
		background-size: contain;
		margin-left: 2%;
	}
	.nav,#fixed_nav,#header_logo,
	.header_info {
		display: none;
	}

	/* ------------------------------------------------------------
	引出しメニュー
	------------------------------------------------------------ */
	.index #wrapper {
		overflow: hidden;
		min-width: 320px;
		height: auto;
		padding: 0;
	}
	.drawer .contents {
		-webkit-transition: -webkit-transform 0.6s;
		transition: transform 0.6s;
	}
	.drawer #navTgl:checked ~ .contents {
		-webkit-transform: translateX(-250px);
		transform: translateX(-250px);
	}

	/* :::::: toggle button :::::: */
	#navTgl {
		display: none;
		overflow: hidden;
	}
	.drawer label {
		cursor: pointer;
		position: fixed;
		top: 0;
		right: 0;
	}
	.drawer .open {
		z-index: 99999999;
		width: 50px;
		height: 50px;
		color: #182987;
		background-color: #fff;
		font-size: 2em;
		line-height: 48px;
		text-align: center;
		-webkit-transition: background-color 0.6s, -webkit-transform 0.6s;
		transition: background-color 0.6s, transform 0.6s;
		border-bottom: 5px solid #182987;
		box-sizing: border-box;
	}
	.drawer #navTgl:checked + .open {
		background-color: #182987;
		color: #fff;
		-webkit-transform: translateX(-250px);
		transform: translateX(-250px);
	}
	.drawer .close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: background-color 0.6s;
	}
	.drawer #navTgl:checked ~ .close {
		pointer-events: auto;
		background-color: rgba(0, 0, 0, 0.3);
	}
	/* :::::: drawer menu :::::: */

	.menu {
		z-index: 10000;
		position: fixed;
		overflow: auto;
		top: 0;
		right: 0;
		width: 250px;
		height: 100%;
		padding: 10px;
		background: rgba(0, 0, 0, 0.7);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: -webkit-transform 0.6s;
		transition: transform 0.6s;
		box-sizing: border-box;
	}
	.drawer #navTgl:checked ~ .menu {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.menu li a {
		color: #fff;
		font-weight: 400;
	}
	.menu ul {
		padding: 0;
	}
	.menu li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		font-size: 0.9em;
		line-height: 1.4;
	}
	header li:nth-child(2)::before,
	header li:nth-child(2)::after {
		content: none !important;
	}
	.menu li a {
		-moz-transition: 0.2s;
		-webkit-transition: 0.2s;
		-o-transition: 0.2s;
		-ms-transition: 0.2s;
		transition: 0.2s;
		display: block;
		padding: 1em 1em 0.8em 1.5em;
		text-decoration: none;
		transition: background-color 0.6s;
	}
	.menu li a:hover {
		transition: 0.2s;
		color: #fff;
		background-color: #a9dade;
	}
	.sub_menu {
		border: none !important;
	}
	.sub_menu label {
		background: #a9dade;
		color: #fff;
		padding: 10px;
		display: block;
		margin: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		position: relative;
		background: none;
		padding: 1em 1em 0.8em 1.5em;
	}
	.sub_menu input[type="checkbox"].on-off {
		display: none;
	}
	.sub_menu ul {
		transition: all 0.5s;
		margin: 0;
		padding: 0;
		list-style: none;
		font-size: 14px;
	}
	.sub_menu li a {
		padding-left: 36px;
	}
	.sub_menu input[type="checkbox"].on-off + ul {
		height: 0;
		overflow: hidden;
	}
	.sub_menu input[type="checkbox"].on-off:checked + ul {
		height: 290px;
	}
}

/*--------------------------------------------------------
★レスポンシブ■コンテンツ部分
--------------------------------------------------------*/
@media screen and (max-width: 480px) {
	html {
		width: 100%;
		-webkit-text-size-adjust: 100% !important;
		overflow-x: hidden !important;
	}
	body {
		max-width: 480px !important;
		min-width: 320px !important;
		width: 100%;
		font-size: 14px;
		line-height: 1.6em;
		letter-spacing: 0.02em;
		overflow-x: hidden !important;
		-webkit-text-size-adjust: 100% !important;
		font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ","Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
	.sp_none {
		display: none !important;
	}

	/* layout */
	.wrapper {
		max-width: 480px !important;
		width: 94% !important;
		height: auto;
		padding: 0 3% !important;
	}
	article section {
		margin: 0 !important;
	}

	/* Slider
	------------------------------ */
	#bxslider{
		margin-top: 50px;
	}
	.header_slider {
		margin-bottom: 40px !important;
		position: relative;
		height: auto !important;
		overflow: hidden;
	}
	.header_slider {
		height: auto !important;
		margin-bottom: 50px;
	}
	.header_slider li {
		max-width: 480px;
		width: 100%;
		height: auto;
		padding: 0 0 9%;
		position: relative;
	}
	.header_slider li a {
		width: 100%;
		height: auto;
		position: absolute;
		padding: 0 0 50%;
		display: block;
	}
	.bx-viewport {
		max-width: 480px !important;
		width: auto !important;
		height: auto !important;
	}
	.bx-wrapper .bx-pager {
		bottom: 0 !important;
	}
	.bx-wrapper {
		margin: 7px auto !important;
	}
	.bx-controls {
		display: none;
	}
	.header_slider .slider1 {
		background: url(../images/slider1_sp.jpg) no-repeat;
		background-size: 100% auto;
		background-position: center bottom;
	}
	.header_slider .slider2 {
		background: url(../images/slider2_sp.jpg) no-repeat;
		background-size: 100% auto;
		background-position: center bottom;
	}
	.header_slider .slider3 {
		background: url(../images/slider3_sp.jpg) no-repeat;
		background-size: 100% auto;
		background-position: center bottom;
	}

	/* Sub
    ------------------------------ */
	#topcontrol {
		z-index: 10000 !important;
	}

	/* Body
	------------------------------ */
	html {
		overflow-x: hidden !important;
	}
	body {
		box-shadow: none;
		color: #333333;
		font-family: Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-size: 16px;
		line-height: 1.7em;
		letter-spacing: 0.1em;
		-webkit-text-size-adjust: 100% !important;
		top: 0 !important;
		background: url(../images/background.jpg);
	}
	a:link {
		color: #182987;
		text-decoration: none;
	}
	a:visited {
		color: #182987;
	}
	a:active {
		color: #182987;
	}
	a:hover {
		color: #182987;
	}
	a[href*="tel:"] {
		pointer-events: auto;
		cursor: pointer;
	}

	/* layout
	------------------------------ */
	.bg {
		background: url(../images/bg.jpg);
		background-repeat: repeat;
		background-size: 592px 842px;
		padding-bottom: 70px;
	}

	/* Common
	------------------------------ */
	.clear {
		clear: both;
		float: none;
		margin: 0 !important;
		padding: 0 !important;
		height: 0 !important;
	}

	.fl_l {
		float: left;
	}
	.fl_r {
		float: right;
	}
	.pb_0 {
		padding-bottom: 0 !important;
	}
	.mb_0 {
		margin-bottom: 0 !important;
	}
	.mb_10 {
		margin-bottom: 10px !important;
	}
	.mb_20 {
		margin-bottom: 20px !important;
	}
	.mb_30 {
		margin-bottom: 30px !important;
	}
	.mb_60 {
		margin-bottom: 60px !important;
	}
	.contact_banner {
		position: relative;
		border: 4px solid #fbf467;
		width: 100%;
		height: auto;
		padding: 0;
		background: none;
	}
	.contact_banner div {
		border: 4px solid #f3b52e;
		padding: 20px 10px;
		width: 100%;
		height: auto;
		box-sizing: border-box;
	}
	.contact_banner p {
		font-size: 4.5vw;
		letter-spacing: 0;
		text-align: center;
		line-height: 1.2em;
	}
	.contact_banner p span {
		font-weight: 600;
		font-size: 6vw;
		display: block;
		letter-spacing: 0;
		margin-top: 8px;
		color: #182987;
	}
	.contact_banner a.tel {
		position: relative;
		display: block;
		font-size: 10vw;
		text-align: center;
		margin: 30px 0 10px;
		font-weight: 600;
		letter-spacing: 0;
		color: #000;
	}
	.contact_banner a.contact {
		position: relative;
		display: block;
		right: 0;
		left: 0;
		max-width: 310px;
		margin: 30px auto 0;
		background: #e95513;
		padding: 18px 10px 14px 50px;
		border-radius: 4px;
		color: #fff;
		transition: 0.4s;
		border: solid 1px #e95513;
		font-size: 15px;
		width: 100%;
		box-sizing: border-box;
		top: auto;
		letter-spacing: 0;
	}
	.contact_banner a.contact::before {
		content: "\f0e0";
		font-family: "Font Awesome 5 Free";
		position: absolute;
		left: 14px;
		top: 0;
		transition: 0.4s;
		font-size: 22px;
		height: 27px;
		bottom: 0;
		margin: auto 0;
	}
	/*
	.contact_banner a::before{
		content:"\f0e0";
		font-family: "Font Awesome 5 Free";
		position: absolute;
		left: 14px;
		top: 4px;
		transition: .4s;
		font-size: 16px;
	}
	*/
	.contact_banner a.contact:hover {
		background: #fff;
		color: #e95513;
	}
	.contact_banner a.contact:hover::before {
		content: "\f0e0";
		font-family: "Font Awesome 5 Free";
		position: absolute;
		transition: 0.4s;
		color: #e95513;
	}
	.button {
		text-align: center;
	}
	.button a {
		border: solid 1px #e73828;
		color: #e73828 !important;
		text-align: center;
		width: 300px;
		height: 50px;
		box-sizing: border-box;
		padding-top: 10px;
		display: inline-block;
		margin: 0 auto;
		transition: 0.4s;
	}
	.button a:hover {
		background: #e73828 !important;
		color: #fff !important;
	}

	/* Index
	------------------------------ */
	#index {
		vertical-align: top;
		margin-top: -2%;
	}
	#index section {
		padding-top: 40px;
		padding-bottom: 50px !important;
	}
	#caution {
		text-align: center;
		padding: 80px 10px 80px;
		background: #eaeaea;
		margin-top: 80px;
	}
	#caution .center {
		padding: 0;
	}
	#caution ul {
		margin: 8% 0;
	}
	#caution li {
		margin-bottom: 6%;
	}
	#caution h2 {
		font-size: 22px;
		line-height: 1.4em;
		color: red;
		margin-bottom: 30px;
		border-bottom: 4px solid red;
		display: inline-block;
		padding-bottom: 8px;
	}
	#caution li p,
	#caution li .line {
		margin-left: 0;
	}
	#caution .line {
		min-width: auto;
		margin: 2% 0 0;
		padding: 4%;
	}
	#caution .contact01 span,
	#caution .contact02 span {
		display: inline-block;
	}
	#caution .contact03 span {
		width: auto;
		display: block;
	}
	#caution .under {
		background: #a8eaff;
	}
	#caution .stamp {
		text-align: left;
	}
	#reason {
		padding-top: 0!important;
	}
	#reason h2 {
		text-indent: -9999px;
		background: url(../images/index_reason_h2_sp.jpg) no-repeat;
		background-size: contain;
		background-position: center center;
		width: 100%;
		padding-bottom: 8%;
		margin: 0 auto 30px;
	}
	#reason ul {
		margin: 0 auto;
		text-align: center;
		margin-bottom: 40px;
	}
	#reason li {
		display: inline-block;
		position: relative;
		width: 90%;
		height: auto;
		box-sizing: border-box;
		vertical-align: top;
		background: rgba(169, 218, 222, 0.8);
		padding: 4%;
		margin-bottom: 30px;
	}
	#reason li img {
		width: 100%;
		height: auto;
		border: solid 9px #fff;
		box-sizing: border-box;
	}
	#reason li p {
		text-align: left;
		line-height: 1.5em;
	}
	#reason li:nth-child(2) {
		margin: 0 0 30px;
	}
	#reason li:last-child {
		margin-bottom: 0;
	}
	#reason li h3 {
		color: #182987;
		font-size: 20px;
		padding-bottom: 4px;
		border-bottom: 1px solid #fff;
		margin-bottom: 8px;
	}
	#reason li:nth-child(1)::before {
		content: " ";
		position: absolute;
		background: url(../images/index_reason1.png);
		background-size: contain;
		width: 54px;
		height: 54px;
		top: -16px;
		left: -16px;
	}
  #reason li:nth-child(2)::before {
    content: " ";
    position: absolute;
    background: url(../images/index_reason2.png);
    background-size: contain;
    width: 54px;
    height: 54px;
    top: -16px;
    left: -16px;
  }
  #reason li:nth-child(3)::before {
    content: " ";
    position: absolute;
    background: url(../images/index_reason3.png);
    background-size: contain;
    width: 54px;
    height: 54px;
    top: -16px;
    left: -16px;
  }
  #reason .contact_banner {
    margin-bottom: 0;
  }
  #reason video {
    width: 100%;
    display: block;
    margin: 0 auto 40px;
  }
  #top_products {
    background: #eeeeee;
    padding: 40px 0;
  }
  #top_products h2 {
    text-indent: -9999px;
    background: url(../images/index_product_h2.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
    width: 36%;
    height: 50px;
    margin: 0 auto 20px;
  }
  #top_products p {
    width: 100%;
    margin: 0 auto;
  }
  #top_products ul {
    margin: 30px auto 30px;
    text-align: center;
  }
  #top_products li {
    background: #fff;
    display: inline-block;
    width: 23%;
    height: auto;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    padding-top: 16px;
    margin-left: 2%;
    margin-bottom: 10px;
    vertical-align: top;
  }
  #top_products li:nth-child(4n + 1) {
    margin-left: 0;
  }
  #top_products li:first-child {
    margin-left: 0;
  }
  #top_products h3 {
    font-weight: normal;
    font-size: 4vw;
    letter-spacing: 0;
    color: #182987;
  }
  #top_products li a {
    width: 100%;
    height: auto;
    background: none;
    border-radius: 0;
    display: block;
    text-align: center;
    margin: 6px auto 0;
    transition: 0.4s;
  }
  #top_products li a:hover {
    width: 100%;
    height: auto;
    margin-top: 6px;
  }
  #top_products li img {
    width: 90%;
    height: auto;
    margin-top: 0px;
    transition: 0.4s;
  }
  #top_products li:first-child img {
    margin-top: 0;
  }
  #top_products li:nth-child(2) img {
    margin-top: 0;
  }
  #top_products li:nth-child(5) img {
    margin-top: 0;
  }
  #top_products li:nth-child(6) img {
    margin-top: 0;
  }
  #top_products li a:hover img {
    width: 90%;
    height: auto;
    margin-top: 0px;
  }
  .banner_24h {
    display: block;
    background: url(../images/24hour_banner_sp.jpg) no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: auto;
    margin-top: 60px;
    transition: 0.4s;
    padding-bottom: 100%;
    padding-top: 42%;
  }
  .banner_24h:hover {
    opacity: 0.8;
  }
  #top_greeting .wrapper {
    box-sizing: border-box;
    padding: 0 !important;
    width: 100%;
    background: none;
  }
  #top_greeting h2 {
    text-indent: -9999px;
    background: url(../images/index_greeting_h2.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
    width: 42%;
    height: 50px;
    margin: 0 auto 20px;
  }
  #top_greeting p {
    margin-bottom: 16px;
    padding: 0 10px 0;
  }
  #top_greeting .button {
    margin: 30px 0 0;
  }
  #top_c_n {
    background: #eeeeee;
    padding: 0;
  }
  #top_c_n .fl_l h2 {
    text-indent: -9999px;
    background: url(../images/index_company_h2.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
    width: 32%;
    height: 50px;
    margin: 0 auto 20px;
  }
  #top_c_n .fl_r h2 {
    text-indent: -9999px;
    background: url(../images/index_news_h2.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
    width: 32%;
    height: 50px;
    margin: 0 auto 20px;
  }
  #top_c_n .fl_l,
  #top_c_n .fl_r {
    float: none;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  #top_c_n .fl_l p {
    width: 100%;
    text-align: left;
    margin: 0 auto 16px;
    padding: 0 10px;
    box-sizing: border-box;
  }
  #top_c_n .fl_l .button {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  #top_c_n .fl_r dl {
    width: 90%;
    height: 280px;
    margin: 0 auto;
    background: url(../images/border_dashed.png) repeat-x;
    background-size: auto 1px;
    background-position: left top;
    text-align: left;
  }
  #top_c_n .fl_r dt {
    padding-top: 20px;
  }
  #top_c_n .fl_r dd {
    padding-bottom: 20px;
    background: url(../images/border_dashed.png) repeat-x;
    background-size: auto 1px;
    background-position: left bottom;
  }
  /* Sub Page Common
------------------------------ */
  .sub_top {
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-top: 24px;
    margin-top: 50px;
    margin-bottom: 20px;
    /* for modan browser */
    text-shadow: 0px 1px 1px #fff, 0px 0px 1px #fff, 1px 0px 1px #fff,
      0px -1px 1px #fff, -1px -1px 1px #fff, -1px 0px 1px #fff;

    /* for IE */
    filter: dropshadow(color=#fff, offx=0, offy=1, positive=1),
      dropshadow(color=#fff, offx=0, offy=0, positive=1),
      dropshadow(color=#fff, offx=0, offy=-1, positive=1),
      dropshadow(color=#fff, offx=-1, offy=-1, positive=1),
      dropshadow(color=#fff, offx=-1, offy=0, positive=1);
  }
  .sub_top h1 {
    font-size: 28px;
    line-height: 1.4em;
    color: #182987;
  }
  .sub h2 {
    position: relative;
    width: 100%;
    background: none;
    background-size: auto 100%;
    background-position: right center;
    box-sizing: border-box;
    padding-left: 26px;
    border-bottom: solid 1px #182987;
    padding-bottom: 6px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .sub h2::before {
    content: " ";
    position: absolute;
    background: url(../images/sub_h2_before.jpg) no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    left: 0;
    top: 2px;
  }
  .sub section {
    padding-bottom: 40px;
    padding-top: 50px;
    margin-top: -50px !important;
  }
  /* Company
------------------------------ */
  #company .sub_top {
    background: url(../images/company_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
  }
  #company #greeting .fl_l {
    width: 100%;
  }
  #company #greeting h2 {
    text-align: left;
  }
  #company #greeting {
    text-align: center;
  }
  #company #greeting p {
    margin-bottom: 10px;
  }
  #company #greeting dl {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
  }
  #company #greeting dl dt {
    width: 100%;
    padding-top: 10px;
    float: none;
    clear: both;
    box-sizing: border-box;
    padding-left: 8px;
    position: relative;
    padding-bottom: 8px;
    background: url(../images/border_dashed.png) repeat-x;
    background-position: left bottom;
    background-size: auto 1px;
    text-align: left;
  }
  #company #greeting dl dt::after {
    content: none;
    position: absolute;
    background: #a6dade;
    width: 1px;
    height: 28px;
    top: 4px;
    right: 20px;
  }
  #company #greeting dl dd {
    padding-left: 8px;
    padding-top: 10px;
    padding-bottom: 8px;
    background: none;
    background-position: left bottom;
    background-size: auto 1px;
    box-sizing: border-box;
    border-bottom: 1px solid #a6dade;
  }
  #company #greeting dl p {
    position: relative;
    padding-left: 30px;
    display: block;
    border-bottom: solid 1px #a6dade;
    margin-bottom: 0;
  }
  #company #greeting dl p:before {
    content: " ";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/sub_before_icon.jpg) no-repeat;
    background-size: contain;
    left: 0;
    top: 3px;
  }
  #company #greeting img {
    width: 60%;
    height: auto;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto 10px;
    position: relative;
    float: none;
  }
  #company #greeting p {
    margin-bottom: 16px;
    text-align: left;
  }
  #company #greeting .sign {
    font-size: 6vw;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
      "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
    padding-top: 0;
    margin-bottom: 0;
    letter-spacing: 0;
  }
  #company #greeting .sign span {
    font-size: 5.4vw;
    padding-right: 10px;
  }
  #company #idea dt {
    background: url(../images/company_idea_bg.jpg) repeat-x;
    background-size: auto 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
      "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
    font-size: 18px;
    padding: 16px 20px 54px;
    margin-bottom: 15px;
  }
  #company #idea dd {
    height: 0;
    /*
    padding-left: 8px;
    margin-bottom: 20px;
    */
  }
  #company #idea dd:nth-child(6) {
    margin-bottom: 0;
  }
  /* 230421追加 */
  #company #idea h3.philosophy {
    font-size: 28px;
    margin: 50px auto 30px;
  }
  #company #idea dt.mission {
    display: block;
  }
  #company #idea dt.mission span {
    font-size: 22px;
    display: block;
    text-align: center;
    margin-bottom: 8px;
  }

  #history dt::after {
    content: none;
    position: absolute;
    width: 1px;
    height: 54px;
    right: 16px;
    top: 7px;
    background: #56b0b2;
  }
  #company #history dl,
  #company #info dl {
    background: none;
    background-position: left top;
    background-size: auto 1px;
    border-top: 1px solid #56b0b2;
  }
  #company #history dt,
  #company #info dt {
    width: 100%;
    padding-top: 10px;
    float: none;
    clear: both;
    box-sizing: border-box;
    padding-left: 8px;
    position: relative;
    padding-bottom: 8px;
    background: url(../images/border_dashed.png) repeat-x;
    background-position: left bottom;
    background-size: auto 1px;
  }
  #company #history dd,
  #company #info dd {
    padding-left: 8px;
    padding-top: 10px;
    padding-bottom: 8px;
    background: none;
    background-position: left bottom;
    background-size: auto 1px;
    box-sizing: border-box;
    border-bottom: 1px solid #56b0b2;
  }
  #company #address div {
    width: 100%;
    box-sizing: border-box;
  }
  #company #address h3 {
    margin-bottom: 0;
  }
  #company #address div.fl_l {
    width: auto;
    margin-bottom: 16px;
  }
  #company #address div.fl_l p {
    margin-bottom: 0;
  }
  #company #address p {
    line-height: 1.4em;
    margin-bottom: 8px;
  }
  #company #address img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  #company #address .fl_l {
    float: none;
    padding-right: 0;
  }
  #company #address .fl_r {
    float: none;
    padding-left: 0;
  }
  #company #address iframe {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
  }
  /* Links
------------------------------ */
  #link .sub_top {
    background: url(../images/link_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
  }
	#link section ul{
		letter-spacing: -.4em;
	}
	#link section li {
		display: inline-block;
		width: 49%;
		margin-right: 2%;
		text-align: center;
		transition: 0.4s;
		vertical-align: top;
		margin-bottom: 10px;
	}
	#link section li:nth-child(2n) {
		margin-right: 0;
	}
	#link li a{
		position: relative;
		display: block;
		width: 100%;
		height: auto;
	}
	#link li img {
		width: 100%;
		height: auto;
	}
	#link li p {
		text-align: center;
		font-size: 14px;
		color: #182987;
		line-height: 145%;
		letter-spacing: .05em;
	}
	#link li:hover {
		opacity: 0.8;
	}

	/* Privacy Policy
	------------------------------ */
  #policy .sub_top {
    background: url(../images/policy_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
    letter-spacing: 0;
  }
  #policy section div {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  #policy section .fl_r {
    clear: both;
    margin-bottom: 20px;
    text-align: right;
    line-height: 2em;
    padding: 0;
  }
  #policy h3 {
    margin-top: 30px;
    position: relative;
    padding-left: 26px;
    font-weight: normal;
    padding-bottom: 6px;
  }
  #policy .pl_0 {
    padding-left: 0 !important;
  }
  #policy .pb_6 {
    padding-bottom: 6px;
  }
  #policy p,#policy .item_list{
    padding-left: 26px;
  }
  #policy .num {
    text-indent: -28px;
    padding-left: 50px;
  }
  #policy h3::before {
    content: " ";
    background: url(../images/sub_before_icon.jpg) no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
    position: absolute;
    left: 0;
    top: 2px;
  }
  #policy p.box {
    text-align: center;
    margin: 10px 0;
    padding-left: 26px;
  }
  #policy p.box span {
    border: 1px dashed #182987;
    padding: 6px;
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  #policy table{
    width: 100%;
    margin: 10px auto 20px;
    background: none;
    border-top: 1px solid #56b0b2;
  }
  #policy table tr th,#policy table tr td{
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 8px 8px;
    box-sizing: border-box;
  }
  #policy table tr th{
    width: auto;
    text-align: left;
  }
  #policy table tr td{
    background: none;
    border-bottom: 1px solid #56b0b2;
  }
  #policy table tr td::before{
    display: none;
  }
  #policy p.caution{
    margin-left: 0;
  }
  /* Solititation
------------------------------ */
  #solititation .sub_top {
    background: url(../images/solititation_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
  }
  #solititation section p {
    padding-bottom: 20px;
    letter-spacing: 0;
  }
  #solititation .num {
    text-indent: -14px;
    padding-left: 18px;
  }
  #solititation .num_line,
  #solititation .num_text {
    padding-left: 1em;
  }
  #customer_policy .num_text.kpi_box{
    margin-left: 1em;
  }
  #solititation .line {
    margin: 0 1em 2em;
  }
  #customer_policy .num2 li {
    margin-bottom: 0.5em;
    text-indent: -1.8em;
    padding-left: 2.8em;
  }
  #customer_policy h3 {
    font-size: 17px;
  }
  /* Recruit
------------------------------ */
  #recruit .sub_top {
    background: url(../images/recruit_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
  }
  #recruit dl {
    background: none;
    background-position: left top;
    background-size: auto 1px;
    margin-bottom: 20px;
    border-top: 1px solid #56b0b2;
  }
  #recruit dt {
    width: 100%;
    padding-top: 10px;
    float: none;
    clear: both;
    box-sizing: border-box;
    padding-left: 8px;
    position: relative;
    padding-bottom: 8px;
    background: url(../images/border_dashed.png) repeat-x;
    background-position: left bottom;
    background-size: auto 1px;
  }
  #recruit dt::after {
    content: none;
    position: absolute;
    width: 1px;
    height: 54px;
    right: 16px;
    top: 7px;
    background: #56b0b2;
  }
  #recruit dd {
    padding-left: 8px;
    padding-top: 10px;
    padding-bottom: 8px;
    background: none;
    background-position: left bottom;
    background-size: auto 1px;
    box-sizing: border-box;
    border-bottom: 1px solid #56b0b2;
  }

  #recruit .button {
    display: block;
    margin: 40px 0 0;
  }
  /* 231027追加 */
  #recruit_message {
    padding: 40px 0 60px;
  }
  #recruit_message .box {
    padding: 5%;
    width: 90%;
    margin: 15px 0 0;
  }
  #recruit_message .box .philosophy span {
    font-size: 24px;
  }
  #recruit .button a:last-of-type {
    margin-top: 10px;
  }
	.recruit_guidelines h3{
		font-size: 20px;
		margin-top: 30px;
	}
	.recruit_guidelines p{
		margin-top: 20px;
	}

  /* Questionnair
------------------------------ */
  #questionnair .sub_top {
    background: url(../images/questionnair_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
  }
  #questionnair section .fl_l p {
    margin-bottom: 20px;
  }
  #questionnair section a {
    transition: 0.4s;
  }
  #questionnair section a:hover {
    opacity: 0.8;
  }
  #questionnair section .fl_l,
  #questionnair section .fl_r {
    float: none;
  }
  #questionnair section .fl_r a {
    text-indent: -9999px;
    background: url(../images/question_banner.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-bottom: 46%;
    display: block;
    margin: 20px 0 0;
  }
  /* quest_form
    ------------------------------ */
  #quest_form textarea {
    width: 100% !important;
  }
  #quest_form .form_contents .list > li {
    display: block;
    margin-bottom: 6px;
  }
  #quest_form .form_contents .form_list > li {
    margin-bottom: 20px;
  }
  #quest_form h3 {
    font-size: 17px;
    margin-bottom: 10px;
    padding-left: 1.5em;
  }
  /* Staff
------------------------------ */
  #staff .sub_top {
    background: url(../images/staff_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
  }
  /*
#staff section ul li{
    display: inline-block;
    background: rgba(169,218,222,.4);
    width: 100%;
    height: auto;
    margin-right: 0;
    text-align: center;
    box-sizing: border-box;
    padding: 5%;
    margin-bottom: 10px;
}
*/
  #staff section img {
    width: 100%;
    height: auto;
  }
  #staff .staff .fl_l,
  #staff .staff .fl_r {
    float: none;
  }
  #staff .staff ul li {
    width: 100%;
    position: relative;
    padding-left: 26px;
    box-sizing: border-box;
  }
  #staff .staff ul li::before {
    content: " ";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/sub_before_icon.jpg) no-repeat;
    background-size: contain;
    left: 4px;
    top: 3px;
  }
  #staff section ul li:nth-child(2n) {
    margin-right: 0;
  }
  #staff section ul li:nth-child(5n) {
    margin-right: 2%;
  }
  #staff section ul li img {
    width: 50%;
    height: auto;
  }
  #staff section ul li p {
    text-align: left;
    letter-spacing: -0.02em;
  }
  #staff ul li h3 .sp_small {
    font-size: 14px;
  }
  #staff ul li h3 {
    font-size: 16px;
    color: #182987;
    border-bottom: 1px solid #fff;
    margin: 4px 0 8px;
    padding-bottom: 4px;
    /* text-indent: -30px; */
    padding-left: 8px;
  }
  #staff .character li {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    padding: 0;
    background: none;
    height: auto;
    margin-right: 0;
    text-align: center;
    padding: 10px 0 0;
    font-size: 16px;
    margin-bottom: 20px;
  }
  #staff .character li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  #staff .character li img {
    display: inline-block;
    vertical-align: top;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 40%;
    height: auto;
    padding-top: 0;
    text-align: center;
    float: none;
  }

  #staff .character li h3 {
    text-align: center;
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 10px;
    display: block;
  }
  #staff .character li .fl_r {
    width: 100%;
    height: auto;
    background: none;
    background-size: 100% 100%;
    padding: 10px 2% 0;
    box-sizing: border-box;
    text-align: center;
    vertical-align: top;
    display: inline-block;
    float: none;
  }
  #staff .character li .fl_r p {
    letter-spacing: 0.03em;
    line-height: 1.6em;
  }
  #staff .character h3 {
    border-bottom: none;
    margin-bottom: 0;
  }

	/* Product
	------------------------------ */
	.product_senior_pict + .product_senior_pict{
		margin-top: 40px;
	}

	/* Contact
	------------------------------ */
  #contact .sub_top {
    background: url(../images/contact_top.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
  }
  #contact #tel div {
    background: #eeeeee;
    text-align: center;
    height: auto;
    padding-top: 10px;
    box-sizing: border-box;
    margin-top: 20px;
  }
	#contact #tel ul {
		flex-direction: column;
		border-bottom: 1px solid #182987;
		padding-bottom: 10px;
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	#contact #tel li {
		display: block;
		width: 96%;
		height: auto;
		margin: 0 auto;
	}
	.contact_item_name{
		height: 35px;
	}
	.contact_tel_item .contact_item_name img,
	.contact_fax_item .contact_item_name img{
		width: auto;
		height: 100%;
	}
	#contact #tel div p {
		width: 90%;
		height: auto;
		margin: 10px auto 0;
		padding: 0;
		line-height: 1.4em;
	}
	#contact #tel div p a{
		position: relative;
		display: block;
		width: 100%;
		height: auto;
	}
	.contact_tel_item img,
	.contact_fax_item img{
		width: 100%;
		height: auto;
	}
  #contact #form dl {
    width: 100%;
    margin-top: 20px;
    border-top: solid 1px #56b0b2;
    background: none;
    background-size: 370px auto;
    background-position: left center;
  }
  #contact #form dt {
    float: none;
    padding: 12px 0 8px 8px;
    float: left;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    background: url(../images/contact_bg.jpg) repeat-y;
    margin-bottom: 8px;
  }
  #contact #form dd {
    padding: 10px 0 8px 8px;
    border-bottom: solid 1px #56b0b2;
    width: 100%;
    box-sizing: border-box;
  }
  #contact #form .bg {
    background: none;
  }
  #contact #form dd input {
    width: 96%;
    height: 40px;
    font-size: 16px;
    padding: 0;
    border-radius: 4px;
    border: 1px solid #dbdcdc;
  }
  /*
#contact #form dt:nth-child(9){
    padding-bottom: 254px;
}
*/
  #contact #form textarea {
    width: 96% !important;
    height: 164px !important;
    padding: 0;
    border-radius: 4px;
    border: 1px solid #dbdcdc;
    font-size: 186px;
  }
  #contact #form span {
    display: inline-block;
    margin-left: 10px;
    background: #182987;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    padding: 2px 4px 0;
    margin-top: -6px;
  }
  #contact #privacy_policy {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 50px;
    border: solid 1px #56b0b2;
    height: 180px;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 16px;
  }
  #contact #privacy_policy h3 {
    font-size: 18px;
    color: #182987;
    margin-bottom: 20px;
  }
  #contact #privacy_policy p {
    margin-bottom: 16px;
  }
  #contact button {
    position: relative;
    display: block;
    color: #e73828 !important;
    font-size: 18px;
    line-height: 1em;
    width: 300px;
    height: 50px;
    padding-top: 0;
    text-align: center;
    background: #fff;
    border: solid 1px #e73828;
    box-sizing: border-box;
    margin: 0 auto 20px;
    transition: 0.4s;
  }
  #contact button:hover {
    background: #e73828 !important;
    color: #fff !important;
    cursor: pointer;
  }
  #contact #sitemap li {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-right: 20px;
    font-size: 16px;
    margin-bottom: 20px;
  }
  #contact #sitemap li::before {
    content: " ";
    width: 20px;
    height: 20px;
    background: url(../images/sub_before_icon.jpg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0px;
    top: 2px;
  }
  #contact #sitemap li ul {
    margin-left: -20px;
  }
  #contact #sitemap li ul li {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    font-size: 16px;
    padding-left: 20px;
    margin-top: 6px;
    margin-bottom: 6px;
  }
  #contact #sitemap li ul li::before {
    content: "・";
    background: none;
    position: absolute;
    left: 0;
    top: 0;
  }
  #contact #sitemap li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  #contact #sitemap li a::after {
    position: absolute;
    bottom: 2px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #182987;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  #contact #sitemap li a:hover::after {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }
	/* Footer
	------------------------------ */
	footer {
		padding-top: 50px;
	}
	footer .contact_banner {
		margin-bottom: 50px;
	}
	.f_bottom_wrapper{
		flex-direction: column;
	}
	footer h2::before {
		content: none !important;
	}
	footer .f_banner li {
		border: solid 5px #dbdcdc;
		box-sizing: border-box;
		width: 250px;
		height: 150px;
		display: inline-block;
		margin-right: 7px;
		position: relative;
		transition: 0.4s;
	}
	footer .f_banner li:hover {
		opacity: 0.8;
	}
	footer .f_banner li:last-child {
		margin-right: 0;
	}
	footer .f_banner li a {
		display: block;
	}
	footer .f_banner p {
		display: inline-block;
		vertical-align: bottom;
		bottom: 0;
		width: 100%;
		position: relative;
		margin-top: 98px;
		bottom: 0;
		font-size: 15px;
		background: rgba(64, 34, 15, 0.9);
		color: #fff;
		box-sizing: border-box;
		padding: 8px 0 4px 32px;
	}
	footer .f_banner p::before {
		content: " ";
		background: url(../images/f_banner_before.png) no-repeat;
		background-size: contain;
		width: 21px;
		height: 21px;
		left: 6px;
		top: 10px;
		position: absolute;
	}
	footer .f_banner li:first-child {
		background: url(../images/banner_customers.jpg) no-repeat;
		background-size: contain;
	}
	footer .f_banner li:nth-child(2) {
		background: url(../images/banner_solicitation.jpg) no-repeat;
		background-size: contain;
	}
	footer .f_banner li:nth-child(3) {
		background: url(../images/banner_idea.jpg) no-repeat;
		background-size: contain;
	}
	footer .f_banner li:nth-child(4) {
		background: url(../images/banner_questionnair.jpg) no-repeat;
		background-size: contain;
	}
	footer .f_banner li:last-child {
		background: url(../images/banner_recruit.jpg) no-repeat;
		background-size: contain;
	}
	footer .f_banner {
		margin-bottom: 20px;
	}
	.f_bottom {
		background: linear-gradient(90deg,#e5f4f5 0%,#e5f4f5 50%,#d8eef0 50%,#d8eef0 100%);
	}
	.f_bottom h2 {
		text-indent: 0;
		background: none;
		background-size: contain;
		width: 100%;
		height: auto;
		padding-bottom: 1%;
		margin-bottom: 10px;
		transition: 0.4s;
		font-size: 5.5vw;
		letter-spacing: 0;
		text-align: center;
	}
  .f_bottom h2:hover {
    opacity: 0.8;
  }
  .f_bottom .wrapper {
    padding: 40px 0 90px !important;
    background: url(../images/footer_bg.jpg) no-repeat, #e5f4f5;
    background-size: auto 100%;
    background-position: right top, center center;
  }
  .f_bottom address {
    font-style: normal;
    margin-bottom: 16px;
  }
  .f_bottom .fl_l {
    width: 100%;
  }
  .f_bottom .fl_r {
    padding-top: 0;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
  .f_bottom .fl_r ul {
    margin-bottom: 26px;
  }
  .f_bottom .fl_r li {
    display: inline-block;
    padding: 0 20px;
    position: relative;
  }
  .f_bottom .fl_r li:last-child {
    padding-right: 0;
  }
  .f_bottom .fl_r li:first-child {
    padding-left: 0;
  }
	.f_bottom small {
		width: 100%;
		font-size: 10px;
		text-align: center;
		margin-top: 30px;
	}
  .f_bottom .fl_r li:nth-child(2)::before,
  .f_bottom .fl_r li:nth-child(4)::before {
    content: " ";
    border-left: solid 1px #3e3a39;
    position: absolute;
    left: 0;
    top: 5px;
    height: 17px;
  }
  .f_bottom .fl_r li:nth-child(2)::after,
  .f_bottom .fl_r li:nth-child(4)::after {
    content: " ";
    border-left: solid 1px #3e3a39;
    position: absolute;
    right: 0;
    top: 5px;
    height: 17px;
  }
  .f_bottom .company_banner {
    margin-top: 4px;
    margin-bottom: 28px !important;
  }
  .f_bottom .company_banner li {
    padding: 0;
  }
  .f_bottom .company_banner li a {
    width: 160px;
    height: 80px;
    margin-top: 4px;
    margin-right: 10px;
    padding: 0;
    display: block;
    transition: 0.4s;
  }
  .f_bottom .company_banner li a:hover {
    opacity: 0.8;
  }
  .f_bottom .company_banner li:first-child a {
    background: url(../images/banner_msandad.jpg) no-repeat;
    background-size: contain;
  }
  .f_bottom .company_banner li:last-child a {
    background: url(../images/banner_metlife.jpg) no-repeat;
    background-size: contain;
  }
  .f_bottom .company_banner li:last-child::before,
  .f_bottom .company_banner li:last-child::after {
    content: none;
  }
  footer small a {
    transition: 0.4s;
  }
  footer small a:hover {
    opacity: 0.8;
  }
  .f_menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .f_menu a::after {
    position: absolute;
    bottom: 2px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #182987;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .f_menu a:hover::after {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }
  /* Bread Crumb
------------------------------ */
  #bread_crumb {
    position: relative;
    height: 27px;
    vertical-align: top;
    margin-bottom: 20px;
    padding-right: 5px;
    display: inline-block;
    right: 0;
    top: 0;
  }
  #bread_crumb li {
    position: relative;
    display: inline-block;
    font-size: 12px;
    padding-left: 16px;
    vertical-align: top;
  }
  #bread_crumb li:first-child {
    padding-left: 0;
  }
  #bread_crumb li p {
    padding-left: 30px;
    color: #323232;
  }
  #bread_crumb li a {
    padding-left: 30px;
  }
  #bread_crumb li:first-child:before {
    content: none;
  }
  #bread_crumb li:before {
    content: "＞";
    left: 0;
    position: absolute;
    color: #323232;
  }
  #bread_crumb li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    height: auto;
    padding: 0;
  }
  #bread_crumb li a::after {
    position: absolute;
    bottom: 8px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #182987;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  #bread_crumb li a:hover::after {
    bottom: 4px;
    opacity: 1;
    visibility: visible;
  }

  /* Page Top
------------------------------ */
	.pagetop {
		position: fixed;
		bottom: 20px;
		right: 20px;
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 100000 !important;
	}
  .pagetop a {
    display: block;
    width: 50px;
    height: 30px;
    text-indent: -9999px;
    background: #182987;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 30px;
    padding-top: 20px;
    border: 1px solid #182987;
  }
  .pagetop a::before,
  .pagetop a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    margin: auto;
    content: "";
    vertical-align: middle;
  }

  .pagetop a:before {
    width: 50px;
    height: 30px;
    background: #182987;
  }
  .pagetop a:after {
    left: 15px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .pagetop.show {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  .pagetop a:hover {
    text-decoration: none;
    background: #fff;
  }
  .pagetop a:hover:before {
    border-color: #182987;
    background: #fff;
  }
  .pagetop a:hover:after {
    background: #fff;
    border-top: 1px solid #182987;
    border-right: 1px solid #182987;
  }
}
@media screen and (max-width: 443px) {
  #corporate dl dd:nth-of-type(5) {
    height: 42px;
  }
}
@media screen and (max-width: 422px) {
  #corporate dl dt:nth-of-type(9),
  #corporate dl dd:nth-of-type(9) {
    height: 106px;
  }
}
@media screen and (max-width: 410px) {
  #corporate dl dt:nth-of-type(10),
  #corporate dl dd:nth-of-type(10) {
    height: 42px;
  }
}
@media screen and (min-width: 401px) and (max-width: 480px) {
  #product .individual_list li {
    width: 49%;
  }
  #product .individual_list li:nth-of-type(odd) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 396px) {
  #corporate dl dt:nth-of-type(11) {
    height: 42px;
  }
}
@media screen and (max-width: 379px) {
  #corporate dl dd:nth-of-type(6) {
    height: 42px;
  }
}
@media screen and (max-width: 359px) {
  #rd_gnav li:nth-child(2) {
    top: -10px;
  }
}
@media screen and (max-width: 365px) {
  #corporate dl dt:nth-of-type(7) {
    height: 42px !important;
  }
}
@media screen and (max-width: 348px) {
  #corporate dl dt:nth-of-type(9),
  #corporate dl dd:nth-of-type(9) {
    height: 126px;
  }
}
