@charset "UTF-8";
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* Scss Document */
/* Scss Document */
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : base.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* reset */
/* -------------------------------------------------- */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  padding: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/* font */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media print, screen and (min-width: 560px) and (max-width: 1080px) {
  /* ---------------------tablet END----------------------------- */
}
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  body {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
  }
  /* -------------------------------------------------- */
}
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* body */
/* -------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

/* link */
/* -------------------------------------------------- */
a {
  color: #000;
}
a:link {
  text-decoration: none;
  word-break: break-all;
}
a:visited {
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ---------------全デバイス共通--------------------- */
.pc {
  display: block;
}

.sp {
  display: none;
}

/* ---------------全デバイス共通(sp)--------------------- */
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* Scss Document */
/*　inview
----------------------------------------------- */
.view01 {
  position: relative;
  top: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view01.fadeInDown {
  top: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view02 {
  position: relative;
  right: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view02.fadeInLeft {
  right: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view03 {
  position: relative;
  left: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view03.fadeInRight {
  left: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view04 {
  position: relative;
  bottom: 30px;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view04.fadeInTop {
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view05.fadeInStay {
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

@media screen and (min-width: 751px) {
  .view01 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view01.fadeInDown {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view02 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view02.fadeInLeft {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view03 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view03.fadeInRight {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view04 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view04.fadeInTop {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view05 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .view05.fadeInStay {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
}
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2022                                      */
/* -------------------------------------------------- */
/*============================
    header
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.header {
  border-bottom: 2px solid #0c538f;
  background: #FFF;
  position: relative;
  z-index: 10;
}

.header-sns {
  padding: 11px 0;
  background: #0c538f;
}

.inner.header-sns_inner {
  max-width: 1065px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
}

.header-sns_ttl {
  font-size: 14px;
  color: #FFF;
}

.header-sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
}

.header_sns01 {
  width: 25px;
}

.header_sns02 {
  width: 18px;
}

.header_sns03 {
  width: 19px;
}

.header_sns04 {
  width: 25px;
}

.header-logo {
  width: 265px;
}
.header-logo a {
  display: block;
}
.header-logo a:hover img {
  opacity: 1;
}

.header-inner {
  max-width: 1073px;
  margin: 0 auto;
  padding: 20px 15px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_r {
  padding-right: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 85px;
}

.header_main-navi {
  padding-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}

.header-link {
  text-align: center;
  position: relative;
}
.header-link a {
  display: block;
  position: relative;
}
.header-link a:hover::after {
  width: 100%;
}
.header-link a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: #ff0000;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-link_en {
  min-height: 36px;
  font-size: 18px;
  line-height: 1.05;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-link_ja {
  margin-top: 5px;
  font-size: 12px;
  display: block;
}

.no-link {
  pointer-events: none;
}

.header-link-box {
  width: 195px;
  padding: 9px 0;
  position: absolute;
  top: 44px;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  opacity: 0;
  pointer-events: none;
  background: #0c538f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-link-box.active {
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.header-link-box_item {
  position: relative;
}
.header-link-box_item:first-child {
  padding-top: 7px;
}
.header-link-box_item:first-child::before {
  content: "";
  width: 17px;
  height: 14px;
  display: block;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #0c538f;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header-link-box_item a {
  padding: 3px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  display: block;
  background: #0c538f;
}
.header-link-box_item a:hover {
  color: #ff0000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-link-box_item a:hover::after {
  display: none;
}

.header-btn-fixed {
  max-width: 1073px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: fixed;
  top: 107px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}

.header-btn {
  width: 35px;
  height: 25px;
  position: relative;
  z-index: 13;
}

.menu-trigger {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.menu-trigger.active span {
  background: #FFF;
}
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0c538f;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

.header-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  background: #0c538f;
  display: none;
}

.header-menu-list {
  max-width: 400px;
  height: 100%;
  margin: 0 auto;
  padding: 140px 0 40px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-menu-list::-webkit-scrollbar {
  display: none;
}

.header-menu_item {
  border-bottom: 1px solid #FFF;
}
.header-menu_item a {
  padding: 6px 0 6px 24px;
  font-size: 21px;
  font-weight: 700;
  color: #FFF;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-menu_item a:hover {
  color: #ff0000;
}

.header-menu_ttl {
  padding: 6px 0 6px 24px;
  font-size: 21px;
  font-weight: 700;
  color: #FFF;
  display: block;
  border-bottom: 1px dashed #FFF;
}

.header-sub-menu_item {
  padding-left: 24px;
  border-bottom: 1px dashed #FFF;
}
.header-sub-menu_item:last-child {
  border: none;
}

.header-menu_login {
  margin-top: 14px;
}
.header-menu_login a {
  padding: 9px 0;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFF;
  background: #58b231;
  border-radius: 20px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-menu_login a:hover {
  background: #ff0000;
}

.header-menu_logout {
  margin-top: 14px;
}
.header-menu_logout a {
  padding: 9px 0;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFF;
  background: #aeaeae;
  border-radius: 20px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-menu_logout a:hover {
  background: #ff0000;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .header {
    border-top: 10px solid #0c538f;
    border-bottom: 2px solid #0c538f;
  }
  .header-sns {
    padding: 8px 0;
    background: #0c538f;
  }
  .header-sns_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 8px;
  }
  .header-sns_ttl {
    font-size: 14px;
    color: #FFF;
  }
  .header-sns_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 15px;
  }
  .header_sns01 {
    width: 25px;
  }
  .header_sns02 {
    width: 18px;
  }
  .header_sns03 {
    width: 19px;
  }
  .header_sns04 {
    width: 25px;
  }
  .header-logo {
    width: 46.6%;
  }
  .header-logo a {
    display: block;
  }
  .header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 28px 12px 10px;
  }
  .header_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 85px;
  }
  .header_main-navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 25px;
  }
  .header-link {
    text-align: center;
    position: relative;
  }
  .header-link_en {
    min-height: 36px;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-link_ja {
    margin-top: 10px;
    font-size: 12px;
    display: block;
  }
  .no-link {
    pointer-events: none;
  }
  .header-link-box {
    width: 195px;
    position: absolute;
    top: 35px;
    left: 50%;
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-link-box.active {
    pointer-events: all;
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .header-link-box_item {
    position: relative;
  }
  .header-link-box_item:first-child {
    padding-top: 7px;
  }
  .header-link-box_item:first-child::before {
    content: "";
    width: 17px;
    height: 14px;
    display: block;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #0c538f;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-link-box_item a {
    padding: 3px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #FFF;
    display: block;
    background: #0c538f;
  }
  .header-btn-fixed {
    max-width: 100%;
    margin: 0;
    padding: 0 28px 0 0;
    top: 13vw;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header-btn {
    width: 35px;
    height: 25px;
    position: relative;
    z-index: 13;
  }
  .menu-trigger {
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  .menu-trigger.active span {
    background: #FFF;
  }
  .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0c538f;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .menu-trigger.active span:nth-of-type(3) {
    opacity: 0;
  }
  .header-menu-list {
    max-width: 100%;
    margin: 0;
    padding: 85px 60px 20px;
  }
  .header-menu_item a {
    padding: 5px 10px;
    font-size: 13px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .header-menu_item a:hover {
    color: #FFF;
  }
  .header-menu_ttl {
    padding: 5px 10px;
    font-size: 13px;
  }
  .header-sub-menu_item {
    padding-left: 24px;
  }
  .header-sub-menu_item:last-child {
    border: none;
  }
  .header-menu_login {
    margin-top: 12px;
  }
  .header-menu_login a {
    padding: 9px 0;
    font-size: 13px;
    border-radius: 15px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .header-menu_login a:hover {
    background: #58b231;
  }
  .header-menu_logout {
    margin-top: 10px;
  }
  .header-menu_logout a {
    padding: 9px 0;
    font-size: 13px;
    border-radius: 15px;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .header-menu_logout a:hover {
    background: #aeaeae;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2022                                      */
/* -------------------------------------------------- */
/*============================
    footer
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.footer-top {
  padding: 19px 0 16px;
  border-top: 2px solid #0c538f;
  border-bottom: 2px solid #0c538f;
}

.footer-flex {
  max-width: 1068px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-logo {
  width: 36.32%;
}

.footer-r {
  padding-right: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-r_ch {
  width: 210px;
  margin-right: 25px;
}

.footer-r_contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-bottom {
  max-width: 1068px;
  margin: 28px auto 0;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-bottom_l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 38px;
}

.footer-bottom_login {
  width: 115px;
}
.footer-bottom_login a {
  height: 100px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  line-height: 1.46;
  background: #58b231;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-bottom_login a:hover {
  opacity: 0.8;
}

.footer-btn {
  text-align: center;
}
.footer-btn a {
  display: block;
  position: relative;
}
.footer-btn a:hover::after {
  width: 100%;
}
.footer-btn a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: #ff0000;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-btn_en {
  min-height: 36px;
  font-size: 15px;
  letter-spacing: -0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-btn_ja {
  margin-top: 10px;
  font-size: 12px;
  display: block;
}

.footer-bottom_r {
  padding-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 28px;
}

.footer-r_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
}

.footer-r_contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 16px;
}

.sns01 {
  width: 25px;
}

.sns02 {
  width: 18px;
}

.sns03 {
  width: 19px;
}

.sns04 {
  width: 25px;
}

.footer-copy {
  width: 100%;
  max-width: 1068px;
  margin: 40px auto 0;
  padding: 0 15px;
  font-size: 12px;
  display: block;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media screen and (max-width: 768px) {
  .footer-bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-r_ch {
    width: 150px;
  }
  .footer-r_contact-ttl {
    font-size: 14px;
  }
  .footer-copy {
    text-align: center;
  }
}
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .footer {
    padding-bottom: 6px;
  }
  .footer-top {
    padding: 15px 0;
  }
  .footer-flex {
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
    display: block;
  }
  .footer-logo {
    width: 100%;
    padding: 0 20px;
  }
  .footer-r {
    margin-top: 18px;
    display: block;
  }
  .footer-r_ch {
    width: 210px;
    margin: 0 auto;
  }
  .footer-r_contact {
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-r_contact-ttl {
    font-size: 15px;
  }
  .footer-bottom {
    max-width: 100%;
    margin: 28px auto 0;
    padding: 0 15px;
    display: block;
  }
  .footer-bottom_l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 38px;
  }
  .footer-bottom_login {
    width: 100%;
  }
  .footer-bottom_login a {
    height: auto;
    padding: 12px 0;
    line-height: 1.33;
  }
  .footer-btn {
    display: none;
  }
  .footer-bottom_r {
    display: none;
  }
  .footer-r_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 8px;
  }
  .footer-r_contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px 15px;
  }
  .sns01 {
    width: 25px;
  }
  .sns02 {
    width: 18px;
  }
  .sns03 {
    width: 19px;
  }
  .sns04 {
    width: 25px;
  }
  .footer-copy {
    max-width: 100%;
    margin: 30px 0 0;
    padding: 0;
    font-size: 9px;
    text-align: center;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2022                                      */
/* -------------------------------------------------- */
/*============================
    共通パーツ
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
body.js-on {
  overflow: hidden;
}

#container {
  overflow: hidden;
}

.inner {
  max-width: 1080px;
  padding: 0 15px;
  margin: 0 auto;
}

.page-ttl {
  margin: 35px 0 38px;
  padding: 0 5px;
}
.page-ttl span {
  display: block;
}

.page-ttl_ja {
  font-family: "Hiragino Sans", HiraginoSans-W8, "ヒラギノ角ゴ ProN W8", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.page-ttl_en {
  margin-top: 5px;
  font-family: "Hiragino Sans", HiraginoSans-W8, "ヒラギノ角ゴ ProN W8", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.page-ttl02 {
  padding: 12px 0;
  font-size: 30px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  background: #0c538f;
}

.business-ttl {
  padding: 15px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.05em;
  color: #FFF;
  text-align: center;
}

.business-ttl--purchase {
  background: #6aae48;
}

.business-ttl--others {
  background: #00b7ed;
}

.business-ttl--technical {
  background: #f4aa00;
}

.news_cat--etc {
  color: #39ac4a;
  border: 1px solid #39ac4a;
}

.news_cat--all {
  color: #f9980b;
  border: 1px solid #f9980b;
}

.news_cat--technical {
  color: #0081dc;
  border: 1px solid #0081dc;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media screen and (max-width: 768px) {
  .business-ttl {
    font-size: 28px;
  }
}
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .inner {
    max-width: 100%;
    padding: 0 8px;
    margin: 0;
  }
  .page-ttl {
    margin: 18px 0 25px;
    padding: 0;
  }
  .page-ttl_ja {
    font-size: 17px;
  }
  .page-ttl_en {
    margin-top: 0;
    font-size: 14px;
  }
  .page-ttl02 {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 0;
    padding: 8px 0;
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .business-ttl {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 0;
    padding: 8px 0;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}
/* -------------------sp END------------------------------- */