@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese&display=swap");
html {
  /*↓↓↓remで指定しない時は切ること*/
  font-size: 62.5%;
}

body {
  color: #222;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
  word-wrap: break-word;
  /*スマホの文字の大きさ一定*/
  -webkit-text-size-adjust: 100%;
  /*fontアンチエイリアス*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-top: 60px;
}

@media print, screen and (min-width: 992px) {
  body {
    padding-top: 100px;
  }
}

body.top {
  padding-top: 0;
}

@media print, screen and (min-width: 992px) {
  body.top {
    padding-top: 0;
  }
}

body:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値では非表示 */
  -webkit-transition: opacity 0.6s ease;
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.6s ease;
}

body.fadeout:after {
  opacity: 1;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* icomoon用設定 */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?1sn1zx");
  src: url("../fonts/icomoon.eot?1sn1zx#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?1sn1zx") format("truetype"), url("../fonts/icomoon.woff?1sn1zx") format("woff"), url("../fonts/icomoon.svg?1sn1zx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^='icon-'],
[class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-pinch:before {
  content: '\e90a';
}

.icon-target:before {
  content: '\e909';
  color: #fff;
}

.icon-arrow-down:before {
  content: '\e907';
}

.icon-company:before {
  content: '\e906';
}

.icon-list:before {
  content: '\e905';
  color: #fff;
}

.icon-search:before {
  content: '\e900';
  color: #0e326f;
}

.icon-earth:before {
  content: '\e901';
  color: #0e326f;
}

.icon-mail:before {
  content: '\e902';
  color: #fff;
}

.icon-pdf:before {
  content: '\e903';
  color: #f4524b;
}

.icon-access:before {
  content: '\e904';
  color: #0e326f;
}

.icon-blank:before {
  content: '\e908';
  color: #fff;
}

/* clearfix */
.cf:before,
.cf:after {
  content: ' ';
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/*breakpoint display*/
.sp {
  display: block;
}

.sp_inline {
  display: inline-block;
}

.pc,
.pc_inline {
  display: none !important;
}

.tab,
.tab_inline {
  display: none !important;
}

.sp.tab {
  display: block !important;
}

.sp_s {
  display: none !important;
}

@media print, screen and (max-width: 321px) {
  .sp_s {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
  .tab_inline {
    display: none !important;
  }
  .sp.tab {
    display: block !important;
  }
}

@media print, screen and (min-width: 992px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .pc {
    display: block !important;
  }
  .pc_inline {
    display: inline-block !important;
  }
  .sp.tab {
    display: none !important;
  }
}

@media print, screen and (min-width: 1240px) {
  .tab {
    display: none !important;
  }
  .tab_inline {
    display: none !important;
  }
}

/*box-sizing default*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
* :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*box-sizing default*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* スマホ時のfocusの青枠削除 */
a,
a:focus,
button,
button:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* a アニメーション */
a {
  color: #222;
}

@media print, screen and (min-width: 992px) {
  a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

@media print, screen and (min-width: 992px) {
  a:hover {
    color: #0E4A8C;
    text-decoration: none;
  }
}

/*============================================================================

		共通パーツ

============================================================================*/
#container {
  position: relative;
  overflow: hidden;
}

.ta_center {
  text-align: center !important;
}

.ta_left {
  text-align: left !important;
}

.ta_right {
  text-align: right !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.mb_s {
  margin-bottom: 15px !important;
}

@media print, screen and (min-width: 992px) {
  .mb_s {
    margin-bottom: 20px !important;
  }
}

.mb_l {
  margin-bottom: 40px !important;
}

@media print, screen and (min-width: 992px) {
  .mb_l {
    margin-bottom: 60px !important;
  }
}

/*============================================================================

		header

============================================================================*/
.header {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 20;
}

@media print, screen and (min-width: 992px) {
  .header {
    height: 100px;
  }
}

.header_logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.header_logo .logo {
  padding: 0 20px 0 10px;
}

@media print, screen and (min-width: 992px) {
  .header_logo .logo {
    padding: 0 0 0 15px;
  }
}

@media print, screen and (min-width: 1240px) {
  .header_logo .logo {
    padding: 0 25px 0 25px;
  }
}

.header_logo .logo img {
  width: 170px;
}

@media print, screen and (min-width: 1024px) {
  .header_logo .logo img {
    width: 220px;
  }
}

@media print, screen and (min-width: 1240px) {
  .header_logo .logo img {
    width: 250px;
  }
}

@media print, screen and (min-width: 1300px) {
  .header_logo .logo img {
    width: 260px;
  }
}

@media print, screen and (min-width: 992px) {
  .header_info {
    display: flex;
  }
}

.header_nav {
  display: none;
}

@media print, screen and (min-width: 992px) {
  .header_nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 20px;
  }
}

@media print, screen and (min-width: 1240px) {
  .header_nav {
    padding-right: 40px;
  }
}

.header_sub_nav {
  margin-bottom: 15px;
}

.header_sub_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 1.2rem;
}

.header_sub_nav_list li {
  flex-basis: auto;
  margin-left: 15px;
}

.header_sub_nav_list a {
  position: relative;
  color: #0E4A8C;
  text-decoration: none;
}

.header_sub_nav_list a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  border-bottom: 1px solid #0E4A8C;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media print, screen and (min-width: 992px) {
  .header_sub_nav_list a:hover:after {
    opacity: 1;
    width: 100%;
  }
}

.header_sub_nav_list .search a {
  padding-left: 20px;
}

.header_sub_nav_list .search a:before {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 1.45rem;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e900';
}

.header_sub_nav_list .pharmacy-management {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .header_sub_nav_list .pharmacy-management {
    margin-bottom: 0;
  }
}

.header_sub_nav_list .lang_en a {
  padding-left: 23px;
}

.header_sub_nav_list .lang_en a:before {
  position: absolute;
  top: -1px;
  left: 0;
  font-size: 1.9rem;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e901';
}

.header_sub_nav_list .access a {
  padding-left: 17px;
}

.header_sub_nav_list .access a:before {
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 1.7rem;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e904';
}

.header_gl_nav_list {
  display: flex;
  justify-content: flex-end;
  font-size: 1.3rem;
}

@media print, screen and (min-width: 1300px) {
  .header_gl_nav_list {
    font-size: 1.4rem;
  }
}

.header_gl_nav_list > li {
  flex-basis: auto;
  padding-bottom: 25px;
}

@media print, screen and (min-width: 1240px) {
  .header_gl_nav_list > li {
    padding-bottom: 20px;
  }
}

.header_gl_nav_list > li.active > a {
  color: #0E4A8C;
}

.header_gl_nav_list > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: bold;
  padding: 0 1vw;
}

@media print, screen and (min-width: 1240px) {
  .header_gl_nav_list > li > a {
    padding: 0 1vw;
  }
}

@media print, screen and (min-width: 992px) {
  .header_gl_nav_list > li > a:hover {
    color: #0E4A8C;
  }
}

.header_gl_nav_list > li > a:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: '';
  height: 25px;
  border-right: 1px solid #222;
}

.header_gl_nav_list > li:last-child > a {
  padding-right: 0;
}

.header_gl_nav_list > li:last-child > a:after {
  border-right: 0;
}

.device_tab .header_sub_nav_list li a {
  white-space: nowrap;
}

.device_tab .header_gl_nav_list > li.active > a {
  color: #0E4A8C !important;
}

.device_tab .header_gl_nav_list > li.active > a:hover {
  color: #222;
}

.device_tab .header_gl_nav_list > li > a {
  display: flex;
  white-space: nowrap;
}

.device_tab .header_gl_nav_list > li > a:hover {
  color: #222;
}

.header_contact {
  height: 100%;
  position: relative;
  background: #0E4A8C;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media print, screen and (min-width: 992px) {
  .header_contact:hover:after {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
}

.header_contact:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  transform: translate(-50%, -50%) scale(0.9, 0.9);
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header_contact a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 75px;
  padding: 0;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media print, screen and (min-width: 992px) {
  .header_contact a {
    width: 110px;
  }
}

@media print, screen and (min-width: 992px) {
  .header_contact a:hover {
    color: #0E4A8C;
  }
}

.header_contact a span {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  transform: scale(0.8);
}

@media print, screen and (min-width: 992px) {
  .header_contact a span {
    font-size: 1.3rem;
    transform: scale(1);
  }
}

.header_contact a:before {
  display: block;
  padding-top: 1px;
  margin-bottom: 2px;
  content: '\e902';
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8rem;
}

@media print, screen and (min-width: 992px) {
  .header_contact a:before {
    margin-bottom: 10px;
    font-size: 3rem;
  }
}

.header_toggle {
  height: 100%;
}

@media print, screen and (min-width: 992px) {
  .header_toggle {
    display: none;
  }
}

.header_toggle_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 60px;
  padding: 0;
  border: 0;
  background: #fff;
}

.header_toggle_btn .toggle_icon span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #222;
  margin: 0px auto 9px;
}

.header_toggle_btn .toggle_icon span:last-of-type {
  margin-bottom: 0;
}

.header_toggle_btn.closed .toggle_icon span {
  position: relative;
  margin-bottom: 0;
}

.header_toggle_btn.closed .toggle_icon span:nth-of-type(1) {
  top: 1px;
  transform: rotate(45deg);
}

.header_toggle_btn.closed .toggle_icon span:nth-of-type(2) {
  top: -1px;
  transform: rotate(-45deg);
}

.header_toggle_btn.closed .toggle_icon span:last-of-type {
  opacity: 0;
  margin-bottom: 0;
}

.header_sp .header_toggle {
  height: 100%;
}

@media print, screen and (min-width: 992px) {
  .header_sp .header_toggle {
    display: block;
  }
}

@media print, screen and (min-width: 992px) {
  .header_sp .header_toggle .header_toggle_btn {
    width: 100px;
  }
}

.pc_mega_menu {
  position: absolute;
  display: none;
  left: 0;
  top: 100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.pc_mega_menu_inner {
  display: flex;
  margin: 0 20px;
  padding: 40px 0;
}

@media print, screen and (min-width: 1240px) {
  .pc_mega_menu_inner {
    width: 1160px;
    margin: 0 auto;
    padding: 60px 0;
  }
}

.pc_mega_menu_box {
  border-left: 1px solid #8698b7;
  padding: 0 25px;
}

@media print, screen and (min-width: 1240px) {
  .pc_mega_menu_box {
    padding: 0 55px;
  }
}

.pc_mega_menu_box .index_link {
  display: block;
  text-decoration: none;
}

.pc_mega_menu_box .index_link:hover .btn {
  padding-right: 30px;
}

.pc_mega_menu_box .index_link:hover .btn:after {
  right: 15px;
  opacity: 1;
}

.pc_mega_menu_box .index_link .title {
  display: block;
  margin-bottom: 20px;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.4;
  color: #0E4A8C;
}

.pc_mega_menu_box .index_link .img {
  display: block;
  margin-bottom: 20px;
}

.pc_mega_menu_box .index_link .btn {
  position: relative;
  display: inline-block;
  background: #0E4A8C;
  color: #fff;
  line-height: 1;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 1.3rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.pc_mega_menu_box .index_link .btn:after {
  display: block;
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(0, -50%);
  top: 50%;
  right: 18px;
  margin-top: -2px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pc_mega_menu_box.index {
  width: 335px;
  padding-left: 0;
  border-left: 0;
}

@media print, screen and (min-width: 1024px) {
  .pc_mega_menu_box.index {
    width: 355px;
  }
}

.pc_mega_menu_list {
  font-size: 1.6rem;
}

.pc_mega_menu_list li {
  margin-bottom: 25px;
}

.pc_mega_menu_list li:last-child {
  margin-bottom: 0;
}

.pc_mega_menu_list li a {
  position: relative;
  color: #0E4A8C;
  text-decoration: none;
  font-weight: bold;
  padding-right: 18px;
}

@media print, screen and (min-width: 992px) {
  .pc_mega_menu_list li a:hover:after {
    right: -4px;
  }
  .pc_mega_menu_list li a:hover:before {
    opacity: 1;
    width: calc(100% + 10px);
  }
}

.pc_mega_menu_list li a:after {
  display: block;
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #0E4A8C;
  border-right: 2px solid #0E4A8C;
  transform: rotate(45deg) translate(0, -50%);
  top: 50%;
  right: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.pc_mega_menu_list li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  border-bottom: 1px solid #0e4a8c;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/*============================================================================

		main_contents

============================================================================*/
.btn_box,
.btn_box_list {
  text-align: center;
  margin-bottom: 20px;
}

@media print, screen and (min-width: 992px) {
  .btn_box,
  .btn_box_list {
    text-align: left;
    margin-bottom: 40px;
  }
}

.btn_box .btn_base,
.btn_box .btn_pdf,
.btn_box_list .btn_base,
.btn_box_list .btn_pdf {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 11px 20px 10px;
  background: #0E4A8C;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media print, screen and (min-width: 992px) {
  .btn_box .btn_base,
  .btn_box .btn_pdf,
  .btn_box_list .btn_base,
  .btn_box_list .btn_pdf {
    width: auto;
    min-width: 192px;
    font-size: 1.6rem;
  }
}

.btn_box .btn_base:before,
.btn_box .btn_pdf:before,
.btn_box_list .btn_base:before,
.btn_box_list .btn_pdf:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #0E4A8C;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn_box .btn_base:after,
.btn_box .btn_pdf:after,
.btn_box_list .btn_base:after,
.btn_box_list .btn_pdf:after {
  content: '';
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #fff transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn_box .btn_base span,
.btn_box .btn_pdf span,
.btn_box_list .btn_base span,
.btn_box_list .btn_pdf span {
  position: relative;
  z-index: 1;
}

@media print, screen and (min-width: 992px) {
  .btn_box .btn_base:hover,
  .btn_box .btn_pdf:hover,
  .btn_box_list .btn_base:hover,
  .btn_box_list .btn_pdf:hover {
    background: #fff;
    color: #0E4A8C;
  }
}

@media print, screen and (min-width: 992px) {
  .btn_box .btn_base:not(.disabled):hover:before,
  .btn_box .btn_pdf:not(.disabled):hover:before,
  .btn_box_list .btn_base:not(.disabled):hover:before,
  .btn_box_list .btn_pdf:not(.disabled):hover:before {
    opacity: 1;
    border-width: 1px;
  }
  .btn_box .btn_base:not(.disabled):hover:after,
  .btn_box .btn_pdf:not(.disabled):hover:after,
  .btn_box_list .btn_base:not(.disabled):hover:after,
  .btn_box_list .btn_pdf:not(.disabled):hover:after {
    transform: translate(2px, 2px) scale(1.3);
    border-color: transparent transparent #0E4A8C transparent;
  }
}

.btn_box .btn_pdf,
.btn_box_list .btn_pdf {
  background: #fff;
  color: #0E4A8C;
  border: 1px solid #b9b9b9;
  padding: 13px 20px 13px;
  padding-left: 65px;
  font-weight: normal;
  color: #222;
}

.btn_box .btn_pdf:before,
.btn_box_list .btn_pdf:before {
  background: #f4524b;
  width: 0;
  height: calc(100%);
  top: 0;
  left: 0;
  border: 0;
  transform: translate(0, 0) scale(1, 1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn_box .btn_pdf:after,
.btn_box_list .btn_pdf:after {
  display: flex;
  align-items: center;
  justify-content: center;
  right: auto;
  left: 0;
  top: 0;
  bottom: auto;
  width: 45px;
  height: 100%;
  color: #fff;
  background: #f4524b;
  font-size: 2rem;
  vertical-align: middle;
  border: 0;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e903';
}

.btn_box .btn_pdf span,
.btn_box_list .btn_pdf span {
  display: block;
}

.btn_box .btn_pdf span:after,
.btn_box_list .btn_pdf span:after {
  content: '';
  position: absolute;
  right: -13px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #b2b2b2 transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media print, screen and (min-width: 992px) {
  .btn_box .btn_pdf:hover,
  .btn_box_list .btn_pdf:hover {
    color: #fff;
  }
  .btn_box .btn_pdf:hover span:after,
  .btn_box_list .btn_pdf:hover span:after {
    transform: translate(2px, 2px) scale(1.2);
    transition-delay: 0.1s;
    border-color: transparent transparent #fff transparent;
  }
}

@media print, screen and (min-width: 992px) {
  .btn_box .btn_pdf:not(.disabled):hover:before,
  .btn_box_list .btn_pdf:not(.disabled):hover:before {
    width: 100%;
    border: 0;
    transform: translate(0, 0) scale(1, 1);
  }
  .btn_box .btn_pdf:not(.disabled):hover:after,
  .btn_box_list .btn_pdf:not(.disabled):hover:after {
    transform: translate(0, 0) scale(1);
  }
}

.btn_box.right,
.btn_box_list.right {
  text-align: right;
}

.btn_box.center,
.btn_box_list.center {
  text-align: center;
}

.btn_box.left,
.btn_box_list.left {
  text-align: left;
}

.btn_box.icon_list .btn_base:not(.no_icon),
.btn_box_list.icon_list .btn_base:not(.no_icon) {
  min-width: 244px;
  padding-left: 45px;
  padding-right: 45px;
}

@media print, screen and (min-width: 992px) {
  .btn_box.icon_list .btn_base:not(.no_icon),
  .btn_box_list.icon_list .btn_base:not(.no_icon) {
    padding-left: 15px;
  }
}

@media print, screen and (min-width: 992px) {
  .btn_box.icon_list .btn_base:not(.no_icon):hover:after,
  .btn_box_list.icon_list .btn_base:not(.no_icon):hover:after {
    color: #0E4A8C;
    opacity: 1;
    border: 0;
    transform: translate(0, -50%) scale(1);
  }
}

.btn_box.icon_list .btn_base:not(.no_icon):after,
.btn_box_list.icon_list .btn_base:not(.no_icon):after {
  content: '\e905';
  width: auto;
  height: auto;
  border: 0;
  bottom: auto;
  top: 50%;
  right: 15px;
  color: #fff;
  transform: translate(0, -50%) scale(1);
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn_box.icon_list .no_icon,
.btn_box_list.icon_list .no_icon {
  margin-bottom: 10px;
}

@media print, screen and (min-width: 992px) {
  .btn_box.icon_list .no_icon,
  .btn_box_list.icon_list .no_icon {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

.btn_column .btn_box {
  margin: 40px 20px 0;
}

@media print, screen and (min-width: 992px) {
  .btn_column .btn_box {
    margin: 60px 20px 0;
  }
}

.btn_column .btn_box .btn_base {
  display: block;
  padding: 18px 20px 18px;
  margin-bottom: 15px;
}

@media print, screen and (min-width: 992px) {
  .btn_column .btn_box .btn_base {
    display: inline-block;
    width: 360px;
    margin: 0 10px 0;
    padding: 18px 20px 18px;
  }
}

.btn_box_list li {
  margin-bottom: 10px;
}

.btn_box_list li:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 992px) {
  .btn_box_list.left {
    display: flex;
  }
  .btn_box_list.left li {
    margin-right: 10px;
  }
}

.btn_pick_up {
  background: #f7f7f7;
  padding: 20px;
  margin-bottom: 40px;
}

@media print, screen and (min-width: 992px) {
  .btn_pick_up {
    padding: 30px 20px;
    margin-bottom: 60px;
  }
}

.btn_pick_up .btn_box {
  margin-bottom: 0;
}

.btn_pick_up .btn_box .btn_base {
  padding: 21px 20px 20px;
  font-size: 1.8rem;
}

@media print, screen and (min-width: 992px) {
  .btn_pick_up .btn_box .btn_base {
    min-width: 400px;
    font-size: 2rem;
    padding: 20px 20px 21px;
  }
}

/*============================================================================

		footer

============================================================================*/
#page_top {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #fff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media print, screen and (min-width: 992px) {
  #page_top {
    right: 30px;
    width: 48px;
    height: 48px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

@media print, screen and (min-width: 992px) {
  #page_top:hover {
    background: #0E4A8C;
  }
  #page_top:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

#page_top:after {
  display: block;
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  margin-top: -2px;
  margin-left: 2px;
  border-top: 2px solid #0E4A8C;
  border-right: 2px solid #0E4A8C;
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media print, screen and (min-width: 992px) {
  #page_top:after {
    margin-top: -3px;
    margin-left: 3px;
    width: 14px;
    height: 14px;
  }
}

#page_top.view {
  opacity: 1;
  visibility: visible;
}

.footer_inner {
  position: relative;
}

@media print, screen and (min-width: 992px) {
  .footer_inner {
    margin: 0 60px;
  }
}

@media print, screen and (min-width: 1240px) {
  .footer_inner {
    margin: 0 auto;
    width: 1160px;
  }
}

.footer_sitemap {
  position: relative;
  background: #7c8ba3;
  color: #fff;
}

.footer_sitemap a {
  color: #fff;
  text-decoration: none;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_inner {
    display: flex;
    width: 100%;
    padding-top: 75px;
    padding-bottom: 120px;
  }
}

.footer_sitemap_box {
  padding: 50px 20px 0;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box {
    padding: 0;
  }
}

.footer_sitemap_box .footer_sitemap_head {
  position: relative;
  border-bottom: 1px solid #fff;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box .footer_sitemap_head {
    padding-top: 0;
  }
}

.footer_sitemap_box .footer_sitemap_head a {
  display: block;
  width: 100%;
  padding: 0 0 5px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box .footer_sitemap_head a {
    position: relative;
    padding: 0 0 5px;
    font-size: 1.6rem;
  }
}

.footer_sitemap_box .footer_sitemap_head a:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #fff transparent;
}

.footer_sitemap_box .footer_sitemap_list {
  padding: 20px 0 0 0;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.footer_sitemap_box .footer_sitemap_list li {
  display: block;
  margin-bottom: 10px;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box .footer_sitemap_list li {
    padding-right: 10px;
  }
}

.footer_sitemap_box .footer_sitemap_list li > a {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  padding-left: 15px;
  text-align: left;
  text-decoration: none;
  color: #fff;
}

.footer_sitemap_box .footer_sitemap_list li > a:hover {
  text-decoration: underline;
}

.footer_sitemap_box .footer_sitemap_list li > a:before {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  content: '';
  width: 6px;
  border-top: 1px solid #fff;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box .footer_sitemap_list.colm2_wrap {
    display: flex;
  }
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box .footer_sitemap_list.colm2_wrap .colm2 {
    width: 50%;
  }
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box.sitemap_about {
    flex-shrink: 0;
    padding-right: 40px;
  }
}

@media print, screen and (min-width: 1240px) {
  .footer_sitemap_box.sitemap_about {
    width: 37%;
    padding-right: 60px;
  }
}

.footer_sitemap_box.sitemap_ir {
  padding-top: 20px;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box.sitemap_ir {
    width: 42%;
    padding-top: 0;
    padding-right: 40px;
  }
}

@media print, screen and (min-width: 1240px) {
  .footer_sitemap_box.sitemap_ir {
    padding-right: 60px;
  }
}

.footer_sitemap_box.sitemap_etc {
  padding-top: 30px;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box.sitemap_etc {
    padding-top: 25px;
    width: 21%;
  }
}

.footer_sitemap_box.sitemap_etc .footer_sitemap_list {
  display: block;
  background: none;
  padding: 0;
}

.footer_sitemap_box.sitemap_etc .footer_sitemap_list li {
  margin-bottom: 10px;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box.sitemap_etc .footer_sitemap_list li {
    padding-right: 0;
  }
}

.footer_sitemap_box.sitemap_etc .footer_sitemap_list li > a {
  display: inline-block;
  padding: 0;
  border-bottom: 0;
}

.footer_sitemap_box.sitemap_etc .footer_sitemap_list li > a:before {
  content: none;
}

.footer_sitemap_box.sitemap_etc .footer_sitemap_list.second {
  padding-top: 20px;
  padding-bottom: 30px;
}

@media print, screen and (min-width: 992px) {
  .footer_sitemap_box.sitemap_etc .footer_sitemap_list.second {
    padding-top: 45px;
    padding-bottom: 0;
  }
}

.footer_site_info {
  border-top: 10px solid #f5ab2d;
}

@media print, screen and (min-width: 992px) {
  .footer_site_info {
    border-top-width: 16px;
  }
}

@media print, screen and (min-width: 992px) {
  .footer_site_info_inner {
    display: flex;
    align-items: center;
  }
}

.footer_site_info_inner .footer_logo {
  text-align: center;
  padding: 20px;
  margin-right: auto;
}

@media print, screen and (min-width: 992px) {
  .footer_site_info_inner .footer_logo {
    padding: 25px 0;
  }
}

.footer_site_info_inner .footer_logo img {
  width: 240px;
}

@media print, screen and (min-width: 992px) {
  .footer_site_info_inner .footer_logo img {
    width: 300px;
  }
}

.footer_site_info_inner .footer_copy {
  padding: 0 0 20px;
  text-align: center;
}

.footer_site_info_inner .footer_copy small {
  font-size: 1.1rem;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

@media print, screen and (min-width: 992px) {
  .footer_site_info_inner .footer_copy small {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 992px) {
  .footer_site_info_inner .footer_copy {
    padding: 0;
  }
}

/*============================================================================

		プリント設定

============================================================================*/
@media print {
  body {
    width: 1200px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
}

/*============================================================================

		remodal

============================================================================*/
.remodal {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 0;
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Keyframes */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.remodal-overlay {
  background: rgba(255, 255, 255, 0.9);
}

.remodal-overlay.hd_modal_search {
  background: rgba(10, 26, 48, 0.6);
}

.hd_modal {
  padding-top: 60px;
}

.sp_header_info .sp_search {
  padding: 20px 20px;
}

.sp_header_info .sp_search_box {
  position: relative;
}

.sp_header_info .sp_search_box input {
  width: 100%;
  border: 1px solid #0E4A8C;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 50px;
  height: 50px;
  padding: 0 48px 0 15px;
}

.sp_header_info .sp_search_box button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 2rem;
}

.sp_header_info .sp_search_box button:before {
  content: '\e900';
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #0E4A8C;
}

.sp_header_info .sp_sub_nav {
  padding: 0 20px;
}

.sp_header_info .sp_sub_nav .header_sub_nav_list {
  font-size: 1.4rem;
  justify-content: flex-start;
}

.sp_header_info .sp_sub_nav .header_sub_nav_list li {
  margin-left: 0;
  margin-right: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0E4A8C;
}

.sp_header_info .sp_sub_nav .header_sub_nav_list .lang_en a {
  padding-left: 26px;
}

.sp_header_info .sp_sub_nav .header_sub_nav_list .lang_en a:before {
  top: -2px;
  font-size: 2.2rem;
}

.sp_header_info .sp_sub_nav .header_sub_nav_list .access a {
  padding-left: 20px;
}

.sp_header_info .sp_sub_nav .header_sub_nav_list .access a:before {
  top: 0px;
  font-size: 1.9rem;
}

.sp_header_info .sp_gl_nav {
  margin-top: 26px;
  border-top: 1px solid #0E4A8C;
}

.sp_header_info .sp_gl_nav a {
  display: block;
  text-align: left;
  text-decoration: none;
  color: #0E4A8C;
}

.sp_header_info .sp_gl_nav_head {
  position: relative;
  display: flex;
  border-bottom: 1px solid #0E4A8C;
}

.sp_header_info .sp_gl_nav_head a {
  display: block;
  width: 100%;
  padding: 13px 20px;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: bold;
}

.sp_header_info .sp_gl_nav_head .toggle {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 50px;
}

.sp_header_info .sp_gl_nav_head .toggle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 100%;
  border-left: 1px solid #0E4A8C;
  transform: translate(0, -50%);
}

.sp_header_info .sp_gl_nav_head .toggle i {
  display: block;
  position: absolute;
  background-color: #0E4A8C;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sp_header_info .sp_gl_nav_head .toggle i:nth-of-type(2) {
  width: 2px;
  height: 16px;
}

.sp_header_info .sp_gl_nav_head .toggle.active i:nth-of-type(2) {
  opacity: 0;
}

.sp_header_info .sp_gl_nav_list {
  display: none;
  background: rgba(239, 239, 239, 0.95);
  padding: 10px 20px 35px;
}

.sp_header_info .sp_gl_nav_list > li > a {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 12px 28px 12px 0;
  border-bottom: 1px solid #8698b7;
}

.sp_header_info .sp_gl_nav_list > li > a:after {
  display: block;
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0E4A8C;
  border-right: 2px solid #0E4A8C;
  transform: rotate(45deg) translate(0, -50%);
  top: 50%;
  right: 16px;
}

.sp_header_info .sp_gl_nav_list > li .second_toggle {
  display: flex;
  border-bottom: 1px solid #8698b7;
}

.sp_header_info .sp_gl_nav_list > li .second_toggle a {
  width: 100%;
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 12px 0 12px 0;
}

.sp_header_info .sp_gl_nav_list > li .second_toggle .toggle {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 30px;
  margin-left: 10px;
}

.sp_header_info .sp_gl_nav_list > li .second_toggle .toggle i {
  display: block;
  position: absolute;
  background-color: #0E4A8C;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 14px;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sp_header_info .sp_gl_nav_list > li .second_toggle .toggle i:nth-of-type(2) {
  width: 2px;
  height: 14px;
}

.sp_header_info .sp_gl_nav_list > li .second_toggle .toggle.active i:nth-of-type(2) {
  opacity: 0;
}

.sp_header_info .sp_gl_nav_list > li .second_list {
  display: none;
  padding: 15px 0 22px;
  border-bottom: 1px solid #8698b7;
}

.sp_header_info .sp_gl_nav_list > li .second_list li {
  margin-bottom: 8px;
}

.sp_header_info .sp_gl_nav_list > li .second_list li a {
  text-decoration: underline;
}

.sp_header_info .sp_etc_nav_list {
  display: block;
  background: none;
  padding: 35px 20px;
}

.sp_header_info .sp_etc_nav_list li {
  margin-bottom: 10px;
  text-align: left;
}

.sp_header_info .sp_etc_nav_list li > a {
  position: relative;
  display: inline-block;
  padding: 0;
  border-bottom: 0;
  font-size: 1.4rem;
  text-align: left;
  text-decoration: none;
}

.hd_modal_search .hd_modal {
  position: relative;
  width: 90%;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  padding-top: 0;
}

@media print, screen and (min-width: 992px) {
  .hd_modal_search .hd_modal {
    max-width: 1200px;
  }
}

.hd_modal_search:after {
  vertical-align: middle;
}

.hd_modal_search_inner {
  background: #f7f7f7;
  width: 100%;
  padding: 20px;
}

@media print, screen and (min-width: 992px) {
  .hd_modal_search_inner {
    display: flex;
    align-items: center;
    padding: 70px 90px;
  }
}

.hd_modal_search_inner .hd_modal_search_title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #0E4A8C;
}

@media print, screen and (min-width: 992px) {
  .hd_modal_search_inner .hd_modal_search_title {
    flex-shrink: 0;
    margin-bottom: 0;
    padding-right: 30px;
    font-size: 2.6rem;
  }
}

.hd_modal_search_inner .parts_search {
  width: 100%;
}

.hd_modal_search_inner .parts_search input {
  border: 1px solid #0E4A8C;
}

.parts_search {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.parts_search input {
  width: 100%;
  border: 0;
  background: #fff;
  border-radius: 10px;
  font-size: 1.6rem;
  padding: 15px 45px 15px 15px;
}

@media print, screen and (min-width: 992px) {
  .parts_search input {
    font-size: 1.8rem;
    padding: 15px 55px 15px 20px;
  }
}

.parts_search input::placeholder, .parts_search input:-ms-input-placeholder, .parts_search input::-ms-input-placeholder {
  color: #939393;
}

.parts_search button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  background: none;
  border: 0;
  padding: 0;
}

@media print, screen and (min-width: 992px) {
  .parts_search button {
    right: 20px;
  }
}

.parts_search button:after {
  color: #23599f;
  font-size: 2.3rem;
  vertical-align: middle;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e900';
}

@media print, screen and (min-width: 992px) {
  .parts_search button:after {
    font-size: 2.5rem;
  }
}

@media print, screen and (min-width: 1240px) {
  .parts_search button:after {
    font-size: 2.8rem;
  }
}

/*============================================================================

		404

============================================================================*/
.page_404 {
  text-align: center;
}

.page_404 img {
  height: 100px;
}

@media print, screen and (min-width: 992px) {
  .page_404 img {
    height: auto;
  }
}

.page_404 .page_contents_body {
  padding-top: 80px;
  padding-bottom: 30px;
}

@media print, screen and (min-width: 992px) {
  .page_404 .page_contents_body {
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 70px;
  }
}

.page_404 p {
  margin: 0 20px;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

@media print, screen and (min-width: 992px) {
  .page_404 p {
    font-size: 1.5rem;
  }
}

.page_404 .btn_box {
  margin: 40px 20px 0;
}

@media print, screen and (min-width: 992px) {
  .page_404 .btn_box {
    margin: 60px 20px 0;
  }
}

.page_404 .btn_box .btn_base {
  display: block;
  padding: 18px 20px 18px;
  margin-bottom: 15px;
}

@media print, screen and (min-width: 992px) {
  .page_404 .btn_box .btn_base {
    display: inline-block;
    width: 360px;
    margin: 0 10px 0;
    padding: 18px 20px 18px;
  }
}
