@charset "UTF-8";
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

#wrapper {
  overflow: hidden;
}

img {
  border: 0;
  height: auto;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: #000;
}

ul, dl, ol {
  text-indent: 0;
}

ul li {
  list-style: none;
}

address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

* html input, * html textarea, * html select {
  font-size: 100%;
}

*:first-child + html + input, *:first-child html + textarea, *:first-child + html select {
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

th, td {
  text-align: left;
  vertical-align: top;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
}

* html pre, * html code, * html kbd, * html samp, * html tt {
  font-size: 100%;
  line-height: 100%;
}

*:first-child + html pre, *:first-child html + code, *:first-child html + kbd, *:first-child + html + samp, *:first-child + html tt {
  font-size: 108%;
  line-height: 100%;
}

input, select, textarea {
  font-size: 100%;
  font-family: Verdana, Helvetica, sans-serif;
}

/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
html {
  font-size: 62.5%;
}

body {
  background: #FFF;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.7;
}

@media all and (max-width: 896px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 896px) {
  .sponly {
    display: block;
  }
}

.portraitonly {
  display: none;
}
@media all and (max-width: 480px) {
  .portraitonly {
    display: block;
  }
}

.span_br {
  display: inline-block;
}

img {
  max-width: 100%;
}
img.fitimg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.width {
  max-width: 1280px; /*適時変更*/
  width: calc(100% - 30px);
  margin: 0 auto;
}

.btn {
  margin-top: 30px;
}
.btn.en_bk a {
  background: #000;
  color: #fff;
  border-radius: 0;
  max-width: 200px;
}
.btn.wide a {
  max-width: 350px;
}
.btn a {
  display: block;
  max-width: 250px;
  width: 100%;
  text-align: center;
  border: 1px solid #000;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 100px;
}

.fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 500ms;
}
.fade.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

a.a_none {
  pointer-events: none;
}

.head_w100 header {
  width: 100% !important;
}

header {
  position: fixed;
  top: 0;
  z-index: 1002;
  width: 35%;
  height: 55px;
  padding: 10px;
  background: #fff;
  transform: translateY(-150%);
  transition: all 0.5s;
}
header.is-show {
  transform: translateY(0);
}
header:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: url(/common/images/nav_line.jpg) no-repeat center center/100% 100%;
  position: absolute;
  left: 0;
  bottom: -5px;
}
@media all and (max-width: 896px) {
  header {
    width: 100%;
  }
}
header .area_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .area_head .head_logo {
  position: relative;
  z-index: 1002;
}
header .area_head .head_logo img {
  max-width: 160px;
  width: 100%;
}
@media all and (max-width: 480px) {
  header .area_head .head_logo img {
    max-width: 130px;
  }
}
header .sp_menu > ul {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 5px;
  right: 65px;
  z-index: 1002;
}
header .sp_menu > ul li {
  padding: 5px;
}
header .sp_menu > ul li.language {
  cursor: pointer;
}
header .sp_menu > ul li.inner {
  display: none;
  position: absolute;
  z-index: 10;
  top: 55px;
  right: 0;
  width: 130px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
  z-index: 1002;
}
header .sp_menu > ul li.inner > ul li {
  padding: 0px;
}
header .sp_menu > ul li.inner > ul li:last-child a {
  border-bottom: none;
}
header .sp_menu > ul li.inner > ul li a {
  display: block;
  padding: 3px 10px;
  font-size: 1.3rem;
  border-bottom: 1px dashed #ddd;
}
header .sp_menu > ul li img {
  height: 40px;
}
header .sp_menu .menu-trigger {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 3px;
  right: 10px;
  z-index: 1002;
  padding: 10px;
  box-sizing: border-box;
}
header .sp_menu .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
  left: 9px;
  top: 14px;
}
header .sp_menu .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header .sp_menu .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
  bottom: 19px;
  left: 9px;
}
header .sp_menu .menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #000;
  transition: all 0.5s;
}
header .sp_menu .menu-trigger span:nth-of-type(1) {
  top: 15px;
}
header .sp_menu .menu-trigger span:nth-of-type(2) {
  top: 25px;
}
header .sp_menu .menu-trigger span:nth-of-type(3) {
  bottom: 13px;
}
header .sp_menu nav {
  width: 100vw;
  height: 100dvh;
  background: #fff;
  position: fixed;
  padding-top: 60px;
  top: 0;
  left: 0;
  z-index: 1001;
  transform: translateY(-150%);
  transition: all 0.5s;
  display: flex;
  flex-wrap: wrap;
  overflow: auto !important;
}
header .sp_menu nav.open {
  transform: translateZ(0);
}
header .sp_menu nav .nav_img {
  background: url(/top/images/bg02.jpg) no-repeat center right/cover;
  width: 35%;
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_img {
    width: 100%;
    height: 150px;
    background: url(/top/images/bg02.jpg) no-repeat top right/cover;
  }
}
header .sp_menu nav .nav_list {
  overflow-y: scroll;
  width: 65%;
  padding: 0 30px 30px 30px;
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list {
    width: 100%;
    padding: 15px;
  }
}
header .sp_menu nav .nav_list > div > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list > div > ul {
    gap: 10px;
    width: 100%;
  }
}
header .sp_menu nav .nav_list > div > ul.block_other {
  padding: 20px;
  background: #efefef;
  gap: 10px;
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list > div > ul.block_other {
    gap: 5px;
    margin-top: 20px;
  }
}
header .sp_menu nav .nav_list > div > ul.block_other li {
  width: calc(25% - 15px);
}
@media all and (max-width: 1367px) {
  header .sp_menu nav .nav_list > div > ul.block_other li {
    width: calc(50% - 15px);
  }
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list > div > ul.block_other li {
    width: 100%;
  }
}
header .sp_menu nav .nav_list > div > ul.block_other li.wide {
  width: calc(50% - 15px);
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list > div > ul.block_other li.wide {
    width: 100%;
  }
}
header .sp_menu nav .nav_list > div > ul.block_other li a {
  padding: 5px;
  font-size: 1.3rem;
}
header .sp_menu nav .nav_list > div > ul > li {
  border-bottom: 1px solid #efefef;
  width: calc(25% - 15px);
  height: auto;
}
@media all and (max-width: 1367px) {
  header .sp_menu nav .nav_list > div > ul > li {
    width: calc(33.333% - 15px);
  }
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list > div > ul > li {
    width: 100%;
  }
}
@media all and (max-width: 1367px) {
  header .sp_menu nav .nav_list > div > ul > li.large_link {
    width: calc(50% - 15px);
  }
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list > div > ul > li.large_link {
    width: calc(50% - 5px);
  }
}
header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl {
  height: 80px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 15px !important;
}
@media all and (max-width: 896px) {
  header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl {
    width: 100%;
  }
}
header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl:before, header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl:after {
  background: #fff !important;
}
header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl.blue {
  background: #6bc8f2;
}
header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl.green {
  background: #76c5ab;
}
header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl.yellow {
  background: #d4c9aa;
}
header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl.pink {
  background: #ef8d9a;
}
header .sp_menu nav .nav_list > div > ul > li.large_link .large_ttl.pink:before {
  display: none !important;
}
header .sp_menu nav .nav_list > div > ul > li.large_link a {
  height: auto;
}
header .sp_menu nav .nav_list > div > ul > li > a {
  padding: 10px 0;
  font-weight: bold;
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1.3;
  font-size: 1.5rem;
}
header .sp_menu nav .nav_list > div > ul > li > a:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dt.accTitle {
  padding: 10px 40px 10px 0;
  position: relative;
  cursor: pointer;
  position: relative;
  top: 1px;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dt.accTitle::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  border-radius: 5px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dt.accTitle::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dt.accTitle.accOn::after {
  transform: rotate(0);
  transition: 0.5s;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dt.accTitle span {
  font-weight: bold;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dt.accTitle span:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner {
  display: none;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul {
  margin: 10px 0 10px 5px;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li {
  padding: 5px;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li:last-child {
  border-bottom: none;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li.ttl {
  font-weight: bold;
  border-bottom: 1px solid #000;
  margin: 10px 0;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li.ttl::before {
  content: "-";
  margin-right: 5px;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li.indent a {
  text-indent: -1em;
  margin-left: 1em;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li.indent a:before {
  display: none;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li a {
  display: block;
  position: relative;
  padding-left: 0.5em;
  color: #000;
  font-weight: bold;
  font-size: 90%;
}
header .sp_menu nav .nav_list > div > ul > li dl.accArea dd.accInner ul li a::before {
  content: "-";
  margin-right: 5px;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.5s;
}
.overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
  position: fixed;
}

.notfound {
  padding: 100px 0;
  text-align: center;
}
.notfound h1 {
  font-size: 3rem;
}
.notfound .area_notfound {
  margin-top: 50px;
}

footer {
  background: #323232;
  position: relative;
  z-index: 1002;
  color: #fff;
  padding: 50px 10px 0 10px;
  font-size: 1.2rem;
}
@media all and (max-width: 896px) {
  footer {
    text-align: center;
  }
}
footer a {
  color: #fff;
}
footer .area_foot .sec_top {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  footer .area_foot .sec_top {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .area_foot .sec_top .block_info {
  width: 530px;
}
@media all and (max-width: 896px) {
  footer .area_foot .sec_top .block_info {
    width: 100%;
    margin-bottom: 10px;
  }
}
footer .area_foot .sec_top .block_info .box_logo {
  margin-bottom: 10px;
}
footer .area_foot .sec_top .block_info .box_logo span {
  display: block;
  margin-top: 10px;
}
footer .area_foot .sec_top .block_info img {
  max-width: 300px;
}
@media all and (max-width: 896px) {
  footer .area_foot .sec_top .block_info img {
    width: 80%;
  }
}
footer .area_foot .sec_top .block_util .sns {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
@media all and (max-width: 896px) {
  footer .area_foot .sec_top .block_util .sns {
    justify-content: center;
  }
}
footer .area_foot .sec_top .block_util .sns li {
  width: 60px;
}
footer .area_foot .sec_top .block_util .box_util_user {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
@media all and (max-width: 896px) {
  footer .area_foot .sec_top .block_util .box_util_user {
    justify-content: center;
  }
}
footer .area_foot .sec_top .block_util .box_util_user li {
  margin-left: 1em;
}
footer .area_foot .sec_top .block_util .box_util_user li a {
  display: block;
  padding: 2px 20px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
}
footer .area_foot .sec_top .block_util .box_util_company {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media all and (max-width: 896px) {
  footer .area_foot .sec_top .block_util .box_util_company {
    justify-content: center;
  }
}
footer .area_foot .sec_top .block_util .box_util_company li {
  margin: 2px;
}
footer .area_foot .sec_top .block_util .box_util_company li a {
  display: block;
  padding: 0 10px;
  border-right: 1px solid #fff;
  color: #fff;
}
footer .area_foot .area_list {
  padding: 10px 0;
  margin-top: 30px;
  border-top: 1px solid #3f3f3f;
}
footer .area_foot .area_list > div .groplink {
  display: block;
  width: 200px;
  padding: 5px 10px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
}
footer .area_foot .area_list > div .groplink:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 1em;
}
footer .area_foot .area_list > div .groplink.active:after {
  content: "\f106";
}
footer .area_foot .area_list > div .sec_list {
  padding-top: 50px;
  display: none;
}
@media all and (max-width: 896px) {
  footer .area_foot .area_list > div .sec_list {
    padding-top: 20px;
  }
}
footer .area_foot .area_list > div .sec_list .block_list {
  display: flex;
}
@media all and (max-width: 896px) {
  footer .area_foot .area_list > div .sec_list .block_list {
    display: block;
    text-align: left;
  }
}
footer .area_foot .area_list > div .sec_list .block_list > div > h2 {
  width: 100%;
  font-weight: bold;
  margin-bottom: 10px;
}
footer .area_foot .area_list > div .sec_list .block_list > div ul {
  padding-left: 1em;
}
footer .area_foot .area_list > div .sec_list .block_list > div:first-child {
  width: 25%;
}
@media all and (max-width: 896px) {
  footer .area_foot .area_list > div .sec_list .block_list > div:first-child {
    width: 100%;
  }
}
footer .area_foot .area_list > div .sec_list .block_list > div:last-child {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 896px) {
  footer .area_foot .area_list > div .sec_list .block_list > div:last-child {
    width: 100%;
  }
}
footer .area_foot .area_list > div .sec_list .block_list > div:last-child h2 {
  padding: 0 0 0 30px;
}
@media all and (max-width: 896px) {
  footer .area_foot .area_list > div .sec_list .block_list > div:last-child h2 {
    padding: 0;
    margin-top: 30px;
  }
}
footer .area_foot .area_list > div .sec_list .block_list > div:last-child > div {
  display: flex;
  flex-wrap: wrap;
  padding-left: 2em;
}
@media all and (max-width: 896px) {
  footer .area_foot .area_list > div .sec_list .block_list > div:last-child > div {
    padding-left: 0;
  }
}
footer .area_foot .area_list > div .sec_list .block_list > div:last-child > div > div {
  width: 33.333%;
  padding: 0 0 50px 30px;
}
@media all and (max-width: 896px) {
  footer .area_foot .area_list > div .sec_list .block_list > div:last-child > div > div {
    width: 100%;
    padding: 0 0 30px 0;
  }
}
footer .area_foot .area_list > div .sec_list .block_list > div:last-child > div > div h3 {
  font-weight: bold;
  margin-bottom: 5px;
}
footer .area_foot .area_list > div .sec_list .block_list > div:last-child > div > div ul li {
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.3;
  padding: 4px 0;
}
footer .area_foot .area_list > div .sec_list .block_list > div:last-child > div > div ul li:before {
  content: "-";
  margin-right: 0.5em;
}
footer .copyright {
  background: #2d2d2d;
  padding: 15px 0;
  text-align: center;
}
footer .copyright p {
  color: #fff;
}
footer #pagetop {
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 1500;
}

input[type=submit], input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}