@charset "UTF-8";
/*-----------------------------------------------------------
 Color
-----------------------------------------------------------*/
/*-----------------------------------------------------------
 Font Family
-----------------------------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  src: url(../fonts/NotoSansJP-Regular.otf);
  font-weight: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url(../fonts/NotoSansJP-Bold.otf);
  font-weight: bold;
}
/*-----------------------------------------------------------
 Font Size
-----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
*/
/*-----------------------------------------------------------
 Media Queries
-----------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font-size: 71.4%;
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333333;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

main {
  display: block;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

div {
  font-size: 1.4rem;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  /*font-size:100%;*/
  vertical-align: baseline;
  background: transparent;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button {
  background: none;
  border: none;
  display: block;
  cursor: pointer;
}

/*-----------------------------------------------------------
 Breadcrumbs
-----------------------------------------------------------*/
.breadcrumbs, .breadcrumbs-white, .breadcrumbs-black {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 30px 0;
}
.breadcrumbs ol, .breadcrumbs-white ol, .breadcrumbs-black ol {
  display: table;
}
.breadcrumbs ol li, .breadcrumbs-white ol li, .breadcrumbs-black ol li {
  list-style: none;
  margin: 0 10px 0 0;
  font-size: 1.2rem;
  float: left;
  color: #999999;
}
.breadcrumbs ol li::after, .breadcrumbs-white ol li::after, .breadcrumbs-black ol li::after {
  padding: 0 0 0 10px;
  content: "＞";
}
.breadcrumbs ol li:last-child:after, .breadcrumbs-white ol li:last-child:after, .breadcrumbs-black ol li:last-child:after {
  content: "";
}
.breadcrumbs ol li a, .breadcrumbs-white ol li a, .breadcrumbs-black ol li a {
  display: inline-block;
  color: #999999;
}
.breadcrumbs ol li a::after, .breadcrumbs-white ol li a::after, .breadcrumbs-black ol li a::after {
  content: "";
  display: block;
  width: 0;
  transition: width 0.3s;
  border-bottom: 1px solid #999999;
}
.breadcrumbs ol li a:hover, .breadcrumbs-white ol li a:hover, .breadcrumbs-black ol li a:hover {
  color: #999999;
  opacity: 1;
}
.breadcrumbs ol li a:hover:after, .breadcrumbs-white ol li a:hover:after, .breadcrumbs-black ol li a:hover:after {
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .breadcrumbs, .breadcrumbs-white, .breadcrumbs-black {
    width: 100%;
    padding: 30px 15px 0;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs, .breadcrumbs-white, .breadcrumbs-black {
    margin: 0;
    width: 100%;
    padding: 10px;
    overflow: hidden;
  }
  .breadcrumbs ol, .breadcrumbs-white ol, .breadcrumbs-black ol {
    display: flex;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    padding: 0 0 5px;
  }
  .breadcrumbs ol li, .breadcrumbs-white ol li, .breadcrumbs-black ol li {
    font-size: 0.86rem;
    float: none;
  }
}
@media print {
  .breadcrumbs, .breadcrumbs-white, .breadcrumbs-black {
    margin: 0 auto 30px;
  }
}

.breadcrumbs-black ol li {
  color: #333333;
}
.breadcrumbs-black ol li a {
  color: #333333;
}
.breadcrumbs-black ol li a::after {
  border-bottom: 1px solid #333333;
}
.breadcrumbs-black ol li a:hover {
  color: #333333;
}

.breadcrumbs-white ol li {
  color: #F4F2EF;
}
.breadcrumbs-white ol li a {
  color: #F4F2EF;
}
.breadcrumbs-white ol li a::after {
  border-bottom: 1px solid #FFFFFF;
}
.breadcrumbs-white ol li a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

/*-----------------------------------------------------------
 Header
-----------------------------------------------------------*/
header {
  width: 100%;
  height: 80px;
  z-index: 500;
  transition: 0.5s;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  header {
    height: 54px;
    position: relative;
  }
}
@media print {
  header {
    position: relative;
    height: 80px;
    background-size: 20%;
  }
}
header .hd-logo {
  width: 30%;
  max-width: 320px;
  padding: 0 0 0 15px;
}
header .hd-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1080px) {
  header .hd-logo a {
    line-height: 1;
  }
}
header .hd-logo img {
  width: 100%;
  max-width: 140px;
}
header .hd-logo span {
  display: inline-block;
  color: #666666;
}
@media screen and (max-width: 1080px) {
  header .hd-logo {
    max-width: 200px;
    width: calc(15% + 20px);
    flex-wrap: wrap;
  }
  header .hd-logo img {
    width: 100%;
    max-width: 100px;
    margin: 0;
  }
  header .hd-logo span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .hd-logo {
    width: 25%;
    max-width: 110px;
    padding-left: 0;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 100;
  }
  header .hd-logo img {
    max-height: 34px;
  }
}
header nav {
  width: calc(70% - 140px);
}
@media screen and (max-width: 1080px) {
  header nav {
    width: calc(85% - 160px);
  }
}
header nav ul.lang-select {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: right;
  padding: 0 15px 0 0;
  margin: 0 0 5px 0;
}
header nav ul.lang-select li {
  padding: 0;
  margin: 0;
  font-weight: bold;
  color: #1d7fcf;
}
header nav ul.lang-select li:first-child {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #999;
}
@media screen and (max-width: 768px) {
  header nav ul.lang-select {
    width: auto;
    position: absolute;
    top: 15px;
    right: 154px;
    z-index: 100;
    padding: 0;
    margin: 0;
  }
}
header nav ul.g-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav {
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100vw;
    height: 100%;
    position: fixed;
    right: -100vw;
    top: 0;
    padding: 60px 30px;
    background-color: #FFFFFF;
    transition: all 0.5s;
    overflow-y: scroll;
  }
}
header nav ul.g-nav li {
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li {
    width: 100%;
  }
}
header nav ul.g-nav li button.trigger {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5px 15px;
  color: #666666;
  position: relative;
}
header nav ul.g-nav li button.trigger.active::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: calc(50% - 13px);
  bottom: -16px;
  border: 12px solid;
  border-color: transparent #fff #fff transparent;
  transform: rotate(45deg);
  z-index: 90;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li button.trigger.active::after {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  header nav ul.g-nav li button.trigger {
    font-size: 1.2rem;
    padding: 3px 8px;
  }
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li button.trigger {
    width: 100%;
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #D3D3D3;
  }
  header nav ul.g-nav li button.trigger::before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    right: 15px;
    top: 18px;
    border: 1px solid;
    border-color: #D3D3D3 #D3D3D3 transparent transparent;
    transform: rotate(135deg);
    transition: all 0.2s;
  }
  header nav ul.g-nav li button.trigger.active::before {
    transform: rotate(-45deg);
    top: 22px;
  }
}
header nav ul.g-nav li div.target {
  position: fixed;
  left: 0;
  top: 80px;
  width: 100%;
  background-color: rgba(28, 92, 153, 0.7);
  backdrop-filter: blur(4px);
  z-index: 80;
  display: none;
}
header nav ul.g-nav li div.target .nav-close {
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
header nav ul.g-nav li div.target .nav-close::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: calc(50% - 13px);
  top: 0;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  z-index: 90;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li div.target .nav-close {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li div.target {
    position: static;
    background-color: #FFFFFF;
    padding: 0;
  }
}
header nav ul.g-nav li .menu {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu {
    padding: 20px 0;
  }
}
header nav ul.g-nav li .menu__title {
  margin-bottom: 0;
}
@media screen and (max-width: 1080px) {
  header nav ul.g-nav li .menu__title {
    width: 100%;
  }
}
header nav ul.g-nav li .menu__top {
  margin-bottom: 20px;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #fff;
  text-align: left;
}
header nav ul.g-nav li .menu__top a {
  color: #FFFFFF;
  position: relative;
  padding: 0 20px 0 0;
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__top a {
    color: #666666;
    font-size: 1em;
    padding: 0 20px 0 15px;
  }
}
header nav ul.g-nav li .menu__top a::after, header nav ul.g-nav li .menu__top a::before {
  position: absolute;
  content: "";
}
header nav ul.g-nav li .menu__top a::before {
  width: 16px;
  height: 16px;
  right: 0;
  top: 11px;
  border-radius: 50%;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__top a::before {
    top: 6px;
    background-color: #1d7fcf;
  }
}
header nav ul.g-nav li .menu__top a::after {
  width: 8px;
  height: 8px;
  right: 6px;
  top: 15px;
  border: 2px solid;
  border-color: #1d7fcf #1d7fcf transparent transparent;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__top a::after {
    top: 10px;
    border-color: #FFFFFF #FFFFFF transparent transparent;
  }
}
header nav ul.g-nav li .menu h2 {
  color: #FFFFFF;
  text-align: left;
  line-height: 1.6rem;
}
header nav ul.g-nav li .menu h2 span {
  font-size: 1rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu h2 {
    display: none;
  }
}
header nav ul.g-nav li .menu__nav {
  width: 100%;
}
header nav ul.g-nav li .menu__main, header nav ul.g-nav li .menu__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__main, header nav ul.g-nav li .menu__sub {
    gap: 20px;
  }
}
header nav ul.g-nav li .menu__main li, header nav ul.g-nav li .menu__sub li {
  width: calc(25% - 30px);
}
header nav ul.g-nav li .menu__main {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__main {
    margin-bottom: 20px;
  }
}
header nav ul.g-nav li .menu__main li a {
  display: block;
  text-align: center;
  color: #FFFFFF;
}
header nav ul.g-nav li .menu__main li a figure {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}
header nav ul.g-nav li .menu__main li a img {
  width: 100%;
  transition: all 0.5s;
}
header nav ul.g-nav li .menu__main li a:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__main li {
    width: 100%;
    margin-right: 0;
  }
  header nav ul.g-nav li .menu__main li a {
    color: #666666;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
  }
  header nav ul.g-nav li .menu__main li a::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 18px;
    top: 16px;
    border: 2px solid;
    border-color: #D3D3D3 #D3D3D3 transparent transparent;
    transform: rotate(45deg);
  }
  header nav ul.g-nav li .menu__main li a figure {
    width: 25%;
    margin: 0 15px 0 0;
  }
}
header nav ul.g-nav li .menu__sub li {
  background-color: #FFFFFF;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__sub li {
    width: calc(50% - 10px);
    margin: 0 0 20px 0;
    border: 1px solid #1d7fcf;
  }
}
header nav ul.g-nav li .menu__sub li a {
  display: block;
  color: #1d7fcf;
  padding: 15px;
  text-align: center;
  min-height: 100%;
  line-height: 1.15;
}
header nav ul.g-nav li .menu__sub li a img {
  height: 40px;
  display: block;
  margin: 0 auto 10px;
}
@media print, screen and (min-width: 769px) {
  header nav ul.g-nav li .menu__sub li a:hover {
    background-color: #F0EDEB;
  }
  header nav ul.g-nav li .menu__sub li a:hover img {
    transform: rotateY(360deg);
  }
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__sub li a {
    background-color: transparent;
  }
  header nav ul.g-nav li .menu__sub li a img {
    height: 30px;
  }
}
header nav ul.g-nav li .menu__txt {
  display: flex;
  flex-wrap: wrap;
  gap: 0 25px;
  text-align: left;
  border-top: 1px solid #fff;
  padding: 10px 0;
}
header nav ul.g-nav li .menu__txt dt {
  color: #999999;
}
@media print, screen and (min-width: 769px) {
  header nav ul.g-nav li .menu__txt dt {
    color: #fff;
  }
}
header nav ul.g-nav li .menu__txt dd {
  position: relative;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__txt dd {
    width: 100%;
  }
}
header nav ul.g-nav li .menu__txt dd a {
  padding-left: 12px;
}
@media print, screen and (min-width: 769px) {
  header nav ul.g-nav li .menu__txt dd a {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__txt dd a {
    display: block;
    color: #666;
    padding: 7px 0 7px 15px;
    border-top: 1px solid #D3D3D3;
  }
}
header nav ul.g-nav li .menu__txt dd a:hover {
  border-bottom: 1px solid #fff;
}
header nav ul.g-nav li .menu__txt dd::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li .menu__txt dd::after {
    top: 16px;
    border-color: #ccc #ccc transparent transparent;
  }
}
header nav ul.g-nav li.contact-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav ul.g-nav li.contact-sp {
    display: block;
    margin-top: 20px;
  }
  header nav ul.g-nav li.contact-sp a {
    display: block;
    color: #FFFFFF;
    background-color: #1d7fcf;
    padding: 15px 0;
  }
}
header nav.nav-open ul.g-nav {
  transform: translateX(-100vw);
}
header .h-bg {
  display: none;
}
@media screen and (max-width: 768px) {
  header .h-bg {
    display: block;
    width: 100%;
    height: 54px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 95;
  }
}
header a.hd-contact {
  width: 140px;
  display: block;
  margin: 0;
  padding: 32px 0;
  line-height: 1em;
  text-align: center;
  background-color: #1d7fcf;
  color: #FFFFFF;
  font-size: 1.4rem;
}
header a.hd-contact:hover {
  background-color: #38b383;
}
@media screen and (max-width: 1080px) {
  header a.hd-contact {
    width: 92px;
    padding: 33px 0;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  header a.hd-contact {
    position: absolute;
    top: 0;
    right: 50px;
    padding: 21px 0;
    font-size: 0.76em;
    z-index: 100;
  }
}

@media print, screen and (min-width: 769px) {
  header.hd-on {
    background-color: #FFFFFF;
  }
  header.hd-on .trigger a {
    color: #333333;
  }
  header.hd-on .nav-box div.hd-logo a::after {
    content: "";
    position: fixed;
    left: 30px;
    top: 40px;
    width: 320px;
    height: 60px;
    background-size: 100%;
    z-index: 120;
  }
  header.hd-on .nav-box div.hd-logo a img {
    display: none;
  }
}
@media print {
  header.hd-on .nav-box div.hd-logo a::after {
    position: static;
  }
}

@media print, screen and (min-width: 769px) {
  header.hd-fix {
    height: 50px;
    transition: all 0s;
  }
  header.hd-fix:hover {
    background-color: #FFFFFF;
  }
  header.hd-fix .hd-logo img {
    max-height: 40px;
  }
  header.hd-fix nav ul.lang-select {
    display: none;
  }
  header.hd-fix nav ul.g-nav li div.target {
    top: 50px;
  }
  header.hd-fix a.hd-contact {
    padding: 17px 0;
  }
}
@media screen and (max-width: 768px) {
  header.hd-fix .nav-box div.hd-logo {
    display: none;
  }
}
@media print {
  header.hd-fix {
    position: static;
  }
  header.hd-fix .nav-box div.hd-logo a::after {
    position: static;
  }
}
header.hd-fix nav.hd-nav ul.hd-nav_list div.trigger a, header.hd-fix nav.hd-sub ul li a {
  color: #333333;
}
@media print, screen and (min-width: 769px) {
  header.hd-fix div.nav-wrap {
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
  header.hd-fix div.nav-wrap .hd-nav {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1080px) {
  header.hd-fix div.nav-wrap {
    display: block;
  }
  header.hd-fix div.nav-wrap .hd-nav {
    margin-top: 15px;
  }
}

.hd-nav {
  margin: 10px;
}
@media screen and (max-width: 768px) {
  .hd-nav {
    border-top: 1px solid #D3D3D3;
    margin: 0;
    width: 100%;
    background-color: #FFFFFF;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: calc(100vh - 200px);
    top: 200px;
    left: 0;
    padding-bottom: 100px;
  }
}
.hd-nav .trigger {
  z-index: 95;
}
@media screen and (max-width: 768px) {
  .hd-nav .trigger {
    text-align: left;
  }
  .hd-nav .trigger a {
    width: 100%;
    position: relative;
  }
  .hd-nav .trigger a:before,
  .hd-nav .trigger a:after {
    position: absolute;
    display: block;
    content: "";
    background-color: #666666;
    -webkit-transition: 0.25s all ease;
    transition: 0.25s all ease;
    top: 1.2em;
    width: 2px;
    height: 16px;
    right: 30px;
  }
  .hd-nav .trigger a:after {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.hd-nav .trigger,
.hd-nav .direct {
  line-height: 1;
  text-align: center;
  font-size: 1.3rem;
}
.hd-nav .trigger a,
.hd-nav .direct a {
  position: relative;
  display: inline-block;
  padding: 10px 5px;
  margin: 0 5px;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: 0.35s all ease;
  transition: 0.35s all ease;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .hd-nav .trigger a,
  .hd-nav .direct a {
    font-size: 1.6rem;
    padding: 1.3em;
    height: 3.6em;
    color: #333333;
  }
}
@media print, screen and (min-width: 769px) {
  .hd-nav .trigger a::after,
  .hd-nav .direct a::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    background-color: #1d7fcf;
    left: 0;
    bottom: -10px;
    height: 3px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
}
@media print, screen and (min-width: 769px) {
  .hd-nav .trigger a:hover::after,
  .hd-nav .direct a:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .hd-nav .trigger a:hover,
  .hd-nav .direct a:hover {
    background-color: #FFFFFF;
    color: #333333;
  }
}
@media screen and (max-width: 768px) {
  .hd-nav .trigger,
  .hd-nav .direct {
    text-align: left;
    background-color: #fff;
  }
}
@media print, screen and (min-width: 769px) {
  .hd-nav .active a::after {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .hd-nav .active a {
    background-color: #FFFFFF;
    color: #333333;
  }
  .hd-nav .active a:before {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 768px) {
  .hd-nav > ul > li {
    border-bottom: 1px solid #D3D3D3;
    margin-bottom: 0;
  }
}

.hd-nav_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.hd-nav_list > li .target a {
  height: auto;
  transition-duration: 0.5s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hd-nav_list > li {
    width: 100%;
    display: block;
    height: auto;
  }
  .hd-nav_list > li a {
    padding: 1em 0 1em 3em;
    background-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .hd-nav_list {
    display: block;
  }
}
.hd-nav_list .target {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  z-index: 80;
  display: none;
  margin: 0 auto;
  padding: 0;
  font-size: 1.1rem;
  color: #333333;
}
.hd-nav_list .target a {
  display: block;
  color: #333333;
  -webkit-transition: 0.35s all ease;
  transition: 0.35s all ease;
}
@media print, screen and (min-width: 769px) {
  .hd-nav_list .target {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100px;
  }
}
.hd-nav_list .target .nav-close {
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  transition-duration: 0.5s;
  position: absolute;
  right: 20px;
  top: 20px;
}
.hd-nav_list .target .nav-close span {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-size: 40px;
}
@media screen and (max-width: 768px) {
  .hd-nav_list .target .nav-close {
    display: none;
  }
}

@media print, screen and (min-width: 769px) {
  header.hd-fix nav.hd-nav ul.hd-nav_list .target {
    top: 60px;
  }
}
@media print {
  header.hd-fix nav.hd-nav ul.hd-nav_list .target {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

@media print {
  body header nav.hd-nav ul.hd-nav_list div.target {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: static;
  }
}

/* hamburger
================================================== */
.btn_hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .btn_hamburger {
    display: block;
    margin: 0 0 2em !important;
    width: 50px;
    padding: 15px 10px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 102;
  }
  .btn_hamburger::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 20px;
  }
}

.btn_hamburger a {
  position: relative;
  display: block;
  height: 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  box-sizing: border-box;
}

.btn_hamburger span {
  position: absolute;
  display: inline-block;
  right: 13%;
  width: 74%;
  height: 2px;
  background-color: #666666;
  border-radius: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  box-sizing: border-box;
}

.btn_hamburger span:nth-of-type(1) {
  top: 1px;
}

.btn_hamburger span:nth-of-type(2) {
  top: 9px;
}

.btn_hamburger span:nth-of-type(3) {
  bottom: 1px;
}

.btn_hamburger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #666666;
  border-radius: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn_hamburger .active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn_hamburger .active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.btn_hamburger .active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) scale(0);
  -ms-transform: translateY(20px) scale(0);
  transform: translateY(20px) scale(0);
}

.btn_hamburger .active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) scale(0);
  -ms-transform: translateY(-20px) scale(0);
  transform: translateY(-20px) scale(0);
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
footer {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  padding: 100px 30px;
  position: relative;
  background: #f4f4f4 url(../img/footer/footer-bg.png) center top no-repeat;
  background-size: cover;
}
footer .contact {
  width: 100%;
}
footer .contact h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 769px) {
  footer .contact h2 {
    font-size: 3.4rem;
  }
}
footer .contact address {
  max-width: 1280px;
  margin: 0 auto 100px;
  background-color: #FFFFFF;
  padding: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  font-style: normal;
}
@media screen and (max-width: 1080px) {
  footer .contact address {
    flex-wrap: wrap;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  footer .contact address {
    flex-wrap: wrap;
    padding: 30px;
  }
}
footer .contact address > div {
  width: calc(33.3333333333% - 34px);
}
@media screen and (max-width: 1080px) {
  footer .contact address > div {
    width: calc(50% - 34px);
  }
}
@media screen and (max-width: 768px) {
  footer .contact address > div {
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  footer .contact address > div.ft-link {
    width: 100%;
    display: flex;
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #F0EDEB;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  footer .contact address > div.ft-link {
    border: none;
    display: block;
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .contact address > div:not(.ft-link) {
    border-bottom: 1px solid #F0EDEB;
    margin-bottom: 1em;
  }
}
footer .contact address p {
  font-size: 0.8em;
  color: #999999;
  margin-bottom: 1em;
  line-height: 1.1;
}
footer .contact address .btn-02 {
  width: 100%;
  margin-top: 15px;
}
footer .contact address .tel-link {
  position: relative;
  color: #999999;
  line-height: 1.1;
  font-size: 0.8em;
  margin-bottom: 1em;
}
footer .contact address .tel-link span {
  font-size: 2.2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  footer .contact address .tel-link a {
    width: 100%;
    height: 2em;
    position: absolute;
    display: block;
    left: 0;
    bottom: 0.5em;
  }
}
footer .footer {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
footer .footer nav {
  width: 70%;
}
@media screen and (max-width: 768px) {
  footer .footer nav {
    width: 100%;
    display: flex;
  }
}
footer .footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  footer .footer nav ul {
    width: 50%;
  }
}
footer .footer nav ul li {
  margin: 0 30px;
}
@media screen and (max-width: 1080px) {
  footer .footer nav ul li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer nav ul li {
    width: 100%;
    margin: 0;
  }
}
footer .footer nav ul li a {
  color: #FFFFFF;
  position: relative;
}
footer .footer nav ul li a:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  footer .footer nav ul li a:hover::after {
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
    animation-name: RippleAnime;
    animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
}
footer .footer nav ul.ft-nav1 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  footer .footer nav ul.ft-nav1 {
    border-top: 1px solid #FFFFFF;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer nav ul.ft-nav1 li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #FFFFFF;
  }
}
@media screen and (max-width: 768px) {
  footer .footer nav ul.ft-nav2 {
    align-content: flex-start;
  }
}
footer .footer nav ul.ft-nav2 li {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  footer .footer nav ul.ft-nav2 li {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer nav ul.ft-nav2 li a {
    display: block;
    text-align: right;
  }
}
footer .footer div {
  width: 30%;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  footer .footer div {
    width: 100%;
    text-align: center;
  }
}
footer .footer div h2 {
  color: #FFFFFF;
  font-size: 1.8rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
}
@media screen and (max-width: 1080px) {
  footer .footer div h2 {
    display: block;
  }
  footer .footer div h2 span {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .footer div h2 {
    text-align: center;
  }
}
footer .footer div h2 img {
  max-width: 130px;
  margin: 0 15px 5px 0;
}
@media screen and (max-width: 768px) {
  footer .footer div h2 img {
    margin: 0 0 5px 0;
  }
}
footer .footer div p {
  font-size: 1rem;
}
footer .page-top {
  position: fixed;
  width: 160px;
  bottom: 0;
  left: calc(50% - 80px);
  color: #FFFFFF;
  font-size: 1rem;
  z-index: 90;
}
footer .page-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 160px;
  background-color: #1d7fcf;
  transform: rotate(45deg);
  z-index: -1;
  transition: all 0.3s;
  border-radius: 30px 0 0 0;
}
@media print, screen and (min-width: 769px) {
  footer .page-top:hover::before {
    top: -10px;
    border-radius: 0;
  }
}
@media print {
  footer .page-top {
    display: none;
  }
}

@keyframes RippleAnime {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
/*-----------------------------------------------------------
 Layout
-----------------------------------------------------------*/
/*
 Display
-----------------------------------------------------------*/
.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 1080px) {
  .is-tab {
    display: block;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc-in {
  display: inline;
}
@media screen and (max-width: 768px) {
  .is-pc-in {
    display: none;
  }
}

.is-sp-in {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp-in {
    display: inline;
  }
}

.fix-hide {
  position: fixed;
  overflow: hidden;
}

.ov-hide {
  overflow: hidden;
}

/*
 Wrap
-----------------------------------------------------------*/
.bg-gray {
  width: 100%;
  background-color: #F4F2EF;
}

.bg-white {
  width: 100%;
  background-color: #FFFFFF;
}

.bg-primary {
  width: 100%;
  background-color: #1d7fcf;
  color: #FFFFFF;
}
.bg-primary p,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary ul li,
.bg-primary dl dt,
.bg-primary dl dd,
.bg-primary ol li,
.bg-primary a,
.bg-primary a p,
.bg-primary ul li a p {
  color: #FFFFFF;
}

.wrap-std, .entry-wrap, .wrap-narrow, .wrap-narrow-nmg {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 70px;
  padding: 30px;
}
@media screen and (max-width: 1080px) {
  .wrap-std, .entry-wrap, .wrap-narrow, .wrap-narrow-nmg {
    margin: 0 auto 50px;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .wrap-std, .entry-wrap, .wrap-narrow, .wrap-narrow-nmg {
    padding: 15px;
    margin: 0 auto 50px;
  }
}

.wrap-nmg {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
}
@media screen and (max-width: 1080px) {
  .wrap-nmg {
    padding: 0 30px;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .wrap-nmg {
    padding: 15px;
    margin: 0 auto;
  }
}

.wrap-narrow, .wrap-narrow-nmg {
  max-width: 1010px;
}

.wrap-narrow-nmg {
  margin: 0 auto;
}

/*
 Margin
-----------------------------------------------------------*/
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .mb20-sp {
    margin-bottom: 20px;
  }
}

.mb30 {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .mb30-sp {
    margin-bottom: 30px;
  }
}

.mb50 {
  margin-bottom: 50px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb100-sp50 {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .mb100-sp50 {
    margin-bottom: 50px;
  }
}

.mr1em {
  margin-right: 1em;
}

.mr2em {
  margin-right: 2em;
}

.mr30 {
  margin-right: 30px;
}

.mr30-pc {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .mr30-pc {
    margin-right: 0;
  }
}

.mr50 {
  margin-right: 50px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

/*
 Padding
-----------------------------------------------------------*/
.p80 {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .p80 {
    padding: 40px 0;
  }
}

.p50 {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .p50 {
    padding: 25px 0;
  }
}

.pb80 {
  padding-bottom: 80px;
}

.pb50 {
  padding-bottom: 50px;
}

.pt80 {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .pt80 {
    padding-top: 40px;
  }
}

.p50-sp25 {
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p50-sp25 {
    padding: 25px;
  }
}

.p30-sp15 {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p30-sp15 {
    padding: 15px;
  }
}

.pr1em {
  padding-right: 1em;
}

/*
 Hr
-----------------------------------------------------------*/
hr {
  margin: 50px 0;
}

/*
 Images
-----------------------------------------------------------*/
.svg {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.img-fw {
  position: relative;
  overflow: hidden;
}
.img-fw img {
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .img-fw img {
    width: 140%;
    margin-left: -20%;
  }
}
.img-fw p {
  width: 100%;
  max-width: 1280px;
  position: absolute;
  left: calc(50% - 640px);
  top: 50px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .img-fw p {
    width: calc(100% - 60px);
    margin: 0 auto;
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .img-fw p {
    position: static;
    margin: 30px auto;
    font-weight: normal;
  }
}

.img-left img {
  width: auto;
  margin: 0 auto 50px 0;
}
@media screen and (max-width: 768px) {
  .img-left img {
    width: 100%;
    margin: 0 0 30px;
  }
}

.img-center img {
  display: block;
  width: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .img-center img {
    width: 100%;
    margin: 0 0 30px;
  }
}

.img-right {
  text-align: right;
}
.img-right img {
  width: auto;
  margin: 0 0 50px auto;
}
@media screen and (max-width: 768px) {
  .img-right img {
    width: 100%;
    margin: 0 0 30px;
  }
}

.img-mw100 {
  max-width: 100%;
}
.img-mw100 img {
  max-width: 100%;
}

.img-100vw {
  width: 100%;
}
.img-100vw img {
  width: 100%;
}

.img-50p img {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .img-50p img {
    max-width: 50%;
  }
}

.img-70p img {
  max-width: 70%;
}
@media screen and (max-width: 768px) {
  .img-70p img {
    max-width: 100%;
  }
}

/*
 Flex box
-----------------------------------------------------------*/
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-aic {
  align-items: center;
}

.flex-jcc {
  justify-content: center;
}

.flex-2col, .flex-2col-nmg {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.flex-2col > div, .flex-2col-nmg > div,
.flex-2col > figure,
.flex-2col-nmg > figure {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .flex-2col > div, .flex-2col-nmg > div,
  .flex-2col > figure,
  .flex-2col-nmg > figure {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
.flex-2col > div img, .flex-2col-nmg > div img,
.flex-2col > figure img,
.flex-2col-nmg > figure img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .flex-2col-nmg > div:nth-child(1),
  .flex-2col-nmg > figure:nth-child(1) {
    margin: 0 0 0 0;
  }
}

.flex-3col {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}
.flex-3col > div,
.flex-3col > figure {
  width: calc(33.3% - 30px);
}
@media screen and (max-width: 768px) {
  .flex-3col > div,
  .flex-3col > figure {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
.flex-3col > div img,
.flex-3col > figure img {
  width: 100%;
}

.flex-4col > div, .flex-4col-s2 > div,
.flex-4col > figure,
.flex-4col-s2 > figure {
  width: calc(25% - 38px);
  margin-right: 50px;
}
.flex-4col > div:nth-child(4n), .flex-4col-s2 > div:nth-child(4n),
.flex-4col > figure:nth-child(4n),
.flex-4col-s2 > figure:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .flex-4col > div, .flex-4col-s2 > div,
  .flex-4col > figure,
  .flex-4col-s2 > figure {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
.flex-4col > div img, .flex-4col-s2 > div img,
.flex-4col > figure img,
.flex-4col-s2 > figure img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .flex-4col-s2 > div,
  .flex-4col-s2 > figure {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .flex-4col-s2 > div:nth-child(2n),
  .flex-4col-s2 > figure:nth-child(2n) {
    margin-right: 0;
  }
}
.flex-4col-s2 > div img,
.flex-4col-s2 > figure img {
  width: 100%;
}

.flex-wrap-row, .flex-wrap-row-7to3 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 30px;
}
.flex-wrap-row > div, .flex-wrap-row-7to3 > div,
.flex-wrap-row > figure,
.flex-wrap-row-7to3 > figure {
  width: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .flex-wrap-row > div, .flex-wrap-row-7to3 > div,
  .flex-wrap-row > figure,
  .flex-wrap-row-7to3 > figure {
    width: 100%;
  }
}
.flex-wrap-row > div img, .flex-wrap-row-7to3 > div img,
.flex-wrap-row > figure img,
.flex-wrap-row-7to3 > figure img {
  width: 100%;
}

.flex-wrap-row-7to3 > div:nth-child(2n+1),
.flex-wrap-row-7to3 > figure:nth-child(2n+1) {
  width: calc(30% - 15px);
  margin-right: 0;
}
.flex-wrap-row-7to3 > div:nth-child(2n),
.flex-wrap-row-7to3 > figure:nth-child(2n) {
  width: calc(70% - 15px);
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .flex-wrap-row-7to3 > div:nth-child(2n+1),
  .flex-wrap-row-7to3 > figure:nth-child(2n+1) {
    width: 100%;
  }
  .flex-wrap-row-7to3 > div:nth-child(2n),
  .flex-wrap-row-7to3 > figure:nth-child(2n) {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

.flex-1to2, .flex-1to2-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.flex-1to2 > div, .flex-1to2-row > div,
.flex-1to2 > figure,
.flex-1to2-row > figure {
  margin-bottom: 30px;
}
.flex-1to2 > div:nth-child(2n+1), .flex-1to2-row > div:nth-child(2n+1),
.flex-1to2 > figure:nth-child(2n+1),
.flex-1to2-row > figure:nth-child(2n+1) {
  width: calc(33.3% - 25px);
}
.flex-1to2 > div:nth-child(2n), .flex-1to2-row > div:nth-child(2n),
.flex-1to2 > figure:nth-child(2n),
.flex-1to2-row > figure:nth-child(2n) {
  width: calc(66.6% - 25px);
}
@media screen and (max-width: 768px) {
  .flex-1to2 > div:nth-child(2n+1), .flex-1to2-row > div:nth-child(2n+1),
  .flex-1to2 > figure:nth-child(2n+1),
  .flex-1to2-row > figure:nth-child(2n+1) {
    width: 100%;
  }
  .flex-1to2 > div:nth-child(2n), .flex-1to2-row > div:nth-child(2n),
  .flex-1to2 > figure:nth-child(2n),
  .flex-1to2-row > figure:nth-child(2n) {
    width: 100%;
  }
}
.flex-1to2 > div img, .flex-1to2-row > div img,
.flex-1to2 > figure img,
.flex-1to2-row > figure img {
  width: 100%;
}

.flex-1to2-row {
  flex-direction: row-reverse;
}
.flex-1to2-row > div:nth-child(2n+1),
.flex-1to2-row > figure:nth-child(2n+1) {
  margin-right: 0;
}
.flex-1to2-row > div:nth-child(2n),
.flex-1to2-row > figure:nth-child(2n) {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .flex-1to2-row > div:nth-child(2n),
  .flex-1to2-row > figure:nth-child(2n) {
    margin-right: 0;
  }
}

.flex-1to3, .flex-1to3-nmg {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .flex-1to3, .flex-1to3-nmg {
    gap: 25px;
  }
}
.flex-1to3 > div:nth-child(2n+1), .flex-1to3-nmg > div:nth-child(2n+1),
.flex-1to3 > figure:nth-child(2n+1),
.flex-1to3-nmg > figure:nth-child(2n+1) {
  width: calc(25% - 25px);
}
.flex-1to3 > div:nth-child(2n), .flex-1to3-nmg > div:nth-child(2n),
.flex-1to3 > figure:nth-child(2n),
.flex-1to3-nmg > figure:nth-child(2n) {
  width: calc(75% - 25px);
}
@media screen and (max-width: 768px) {
  .flex-1to3 > div:nth-child(2n+1), .flex-1to3-nmg > div:nth-child(2n+1),
  .flex-1to3 > figure:nth-child(2n+1),
  .flex-1to3-nmg > figure:nth-child(2n+1) {
    width: 100%;
  }
  .flex-1to3 > div:nth-child(2n), .flex-1to3-nmg > div:nth-child(2n),
  .flex-1to3 > figure:nth-child(2n),
  .flex-1to3-nmg > figure:nth-child(2n) {
    width: 100%;
  }
}
.flex-1to3 > div img, .flex-1to3-nmg > div img,
.flex-1to3 > figure img,
.flex-1to3-nmg > figure img {
  max-width: 100%;
}

.flex-1to3-nmg > div,
.flex-1to3-nmg > figure {
  margin-bottom: 0;
}

.flex-2to1, .flex-2to1-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.flex-2to1 > div:nth-child(2n+1), .flex-2to1-row > div:nth-child(2n+1),
.flex-2to1 > figure:nth-child(2n+1),
.flex-2to1-row > figure:nth-child(2n+1) {
  width: calc(66.6% - 17px);
}
.flex-2to1 > div:nth-child(2n), .flex-2to1-row > div:nth-child(2n),
.flex-2to1 > figure:nth-child(2n),
.flex-2to1-row > figure:nth-child(2n) {
  width: calc(33.3% - 34px);
}
@media screen and (max-width: 768px) {
  .flex-2to1 > div:nth-child(2n+1), .flex-2to1-row > div:nth-child(2n+1),
  .flex-2to1 > figure:nth-child(2n+1),
  .flex-2to1-row > figure:nth-child(2n+1) {
    width: 100%;
  }
  .flex-2to1 > div:nth-child(2n), .flex-2to1-row > div:nth-child(2n),
  .flex-2to1 > figure:nth-child(2n),
  .flex-2to1-row > figure:nth-child(2n) {
    width: 100%;
  }
}
.flex-2to1 > div img, .flex-2to1-row > div img,
.flex-2to1 > figure img,
.flex-2to1-row > figure img {
  width: 100%;
}
.flex-2to1 > figure, .flex-2to1-row > figure {
  overflow: hidden;
}

.flex-2to1-row {
  flex-direction: row-reverse;
}
.flex-2to1-row > div:nth-child(2n+1),
.flex-2to1-row > figure:nth-child(2n+1) {
  margin-right: 0;
}
.flex-2to1-row > div:nth-child(2n),
.flex-2to1-row > figure:nth-child(2n) {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .flex-2to1-row > div:nth-child(2n),
  .flex-2to1-row > figure:nth-child(2n) {
    margin-right: 0;
  }
}

.flex-2to1-all > div,
.flex-2to1-all > figure {
  margin-bottom: 30px;
}
.flex-2to1-all > div:nth-child(2n+1),
.flex-2to1-all > figure:nth-child(2n+1) {
  width: calc(66.6% - 25px);
  margin-right: 50px;
}
.flex-2to1-all > div:nth-child(2n),
.flex-2to1-all > figure:nth-child(2n) {
  width: calc(33.3% - 25px);
}
.flex-2to1-all > div img,
.flex-2to1-all > figure img {
  width: 100%;
}

.flex-3to1 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.flex-3to1 > div:nth-child(2n+1),
.flex-3to1 > figure:nth-child(2n+1) {
  width: calc(75% - 25px);
}
.flex-3to1 > div:nth-child(2n),
.flex-3to1 > figure:nth-child(2n) {
  width: calc(25% - 25px);
}
@media screen and (max-width: 768px) {
  .flex-3to1 > div:nth-child(2n+1),
  .flex-3to1 > figure:nth-child(2n+1) {
    width: 100%;
  }
  .flex-3to1 > div:nth-child(2n),
  .flex-3to1 > figure:nth-child(2n) {
    width: 100%;
  }
}
.flex-3to1 > div img,
.flex-3to1 > figure img {
  width: 100%;
}

.flex-6to4, .flex-4to6 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .flex-6to4, .flex-4to6 {
    gap: 25px;
  }
}
.flex-6to4 > div:nth-child(2n+1), .flex-4to6 > div:nth-child(2n+1),
.flex-6to4 > figure:nth-child(2n+1),
.flex-4to6 > figure:nth-child(2n+1) {
  width: calc(40% - 25px);
}
.flex-6to4 > div:nth-child(2n), .flex-4to6 > div:nth-child(2n),
.flex-6to4 > figure:nth-child(2n),
.flex-4to6 > figure:nth-child(2n) {
  width: calc(60% - 25px);
}
@media screen and (max-width: 768px) {
  .flex-6to4 > div:nth-child(2n+1), .flex-4to6 > div:nth-child(2n+1),
  .flex-6to4 > figure:nth-child(2n+1),
  .flex-4to6 > figure:nth-child(2n+1) {
    width: 100%;
  }
  .flex-6to4 > div:nth-child(2n), .flex-4to6 > div:nth-child(2n),
  .flex-6to4 > figure:nth-child(2n),
  .flex-4to6 > figure:nth-child(2n) {
    width: 100%;
  }
}
.flex-6to4 > div img, .flex-4to6 > div img,
.flex-6to4 > figure img,
.flex-4to6 > figure img {
  width: 100%;
}

.flex-4to6 {
  flex-direction: row;
}

/*
 Box style
-----------------------------------------------------------*/
.box-w {
  padding: 50px;
  background-color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .box-w {
    padding: 25px;
  }
}

.box-bd3 {
  padding: 30px;
  border: 3px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .box-bd3 {
    padding: 15px;
  }
}

.box-bg-pgr {
  padding: 30px;
  background-color: #F0EDEB;
}
@media screen and (max-width: 768px) {
  .box-bg-pgr {
    padding: 15px;
  }
}

.box-bg-ltgr {
  padding: 30px;
  background-color: #F4F2EF;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .box-bg-ltgr {
    padding: 15px;
  }
}

/*
 Image column lauyout
-----------------------------------------------------------*/
.img-2col-txt-l {
  width: 50%;
  background-color: #FFFFFF;
  padding: 50px;
  margin-bottom: 50px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .img-2col-txt-l {
    width: 90%;
    padding: 25px;
    margin: -50px 0 50px 10%;
  }
}

.img-2col-img-r {
  width: 50%;
  margin: 50px 50px 0 -50px;
  z-index: 5;
}
.img-2col-img-r img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .img-2col-img-r {
    width: 90%;
    margin: 0 10% 0 0;
  }
}

.img-2col-txt-r {
  width: 50%;
  background-color: #FFFFFF;
  padding: 50px;
  margin-bottom: 50px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .img-2col-txt-r {
    width: 90%;
    padding: 25px;
    margin: 0 0 50px 10%;
  }
}

.img-2col-img-l {
  width: 50%;
  margin: 50px -50px 0 50px;
  z-index: 5;
}
.img-2col-img-l img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .img-2col-img-l {
    width: 90%;
    margin: 0 10% -50px 0;
  }
}

.img-herf-center {
  width: 50%;
  margin: 0 auto 50px;
}
.img-herf-center img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .img-herf-center {
    width: 100%;
  }
}

/*
 clearfix
-----------------------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix:before {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  display: block;
}

/*
 Image Flex Box
-----------------------------------------------------------*/
.img-p2-s1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.img-p2-s1 figure {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .img-p2-s1 figure {
    width: 100%;
    margin-bottom: 30px;
  }
}
.img-p2-s1 img {
  width: 100%;
}

.img-p3-s1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.img-p3-s1 figure {
  width: calc(33.3% - 33px);
}
@media screen and (max-width: 768px) {
  .img-p3-s1 figure {
    width: 100%;
    margin-bottom: 30px;
  }
}
.img-p3-s1 img {
  width: 100%;
}

.img-p4-s1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.img-p4-s1 figure {
  width: calc(25% - 37px);
}
@media screen and (max-width: 768px) {
  .img-p4-s1 figure {
    width: 100%;
    margin-bottom: 30px;
  }
}
.img-p4-s1 img {
  width: 100%;
}

.img-p4-s2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.img-p4-s2 figure {
  width: calc(25% - 37px);
}
@media screen and (max-width: 768px) {
  .img-p4-s2 figure {
    width: calc(50% - 15px);
    margin-bottom: 15px;
  }
}
.img-p4-s2 img {
  width: 100%;
}

/*
Video set
--------------------------------------------------------*/
main video {
  top: 0;
  width: 100%;
  height: auto;
  background: #000;
  margin: 0 auto;
}

/*
Print set
--------------------------------------------------------*/
@media print {
  body {
    zoom: 0.68;
    print-color-adjust: exact;
  }
}
/*-----------------------------------------------------------
 Local Navigation
-----------------------------------------------------------*/
.l-nav-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 40px;
}
.l-nav-wrap .l-nav-container {
  width: 76%;
  max-width: calc(100% - 280px);
}
@media screen and (max-width: 1080px) {
  .l-nav-wrap .l-nav-container {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-nav-wrap .l-nav-container {
    width: 100%;
  }
}
@media print {
  .l-nav-wrap .l-nav-container {
    width: 100%;
  }
}
.l-nav-wrap .l-nav {
  width: calc(24% - 40px);
  min-width: 240px;
}
@media screen and (max-width: 1080px) {
  .l-nav-wrap .l-nav {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-nav-wrap .l-nav {
    width: 100%;
    margin-right: 0;
  }
}
@media print {
  .l-nav-wrap .l-nav {
    display: none;
  }
}
.l-nav-wrap .l-nav > ul > li {
  margin-bottom: 1px;
}
.l-nav-wrap .l-nav > ul > li a, .l-nav-wrap .l-nav > ul > li button {
  width: 100%;
  display: block;
  padding: 15px 10px;
  background-color: #F0EDEB;
  text-align: left;
  font-size: 0.9em;
  line-height: 1;
  color: #666666;
  transition: all 0.3s;
  position: relative;
}
.l-nav-wrap .l-nav > ul > li a:hover,
.l-nav-wrap .l-nav > ul > li button:hover {
  background-color: #1d7fcf;
  color: #FFFFFF;
  text-decoration: none;
}
.l-nav-wrap .l-nav > ul > li.active a {
  background-color: #1d7fcf;
  color: #FFFFFF;
  text-decoration: none;
}
.l-nav-wrap .l-nav > ul > li button.ac-active {
  background-color: #999999;
  color: #FFFFFF;
}
.l-nav-wrap .l-nav > ul > li a::before,
.l-nav-wrap .l-nav > ul > li button::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 17px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #999999 #999999 transparent transparent;
  transform: rotate(45deg);
}
.l-nav-wrap .l-nav > ul > li button::before {
  right: 17px;
  top: 14px;
  transform: rotate(135deg);
}
.l-nav-wrap .l-nav > ul > li button.ac-active::before {
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  top: 22px;
}
.l-nav-wrap .l-nav > ul > li.active a::before,
.l-nav-wrap .l-nav > ul > li a:hover::before, .l-nav-wrap .l-nav > ul > li.active button::before,
.l-nav-wrap .l-nav > ul > li button:hover::before {
  border-color: #FFFFFF #FFFFFF transparent transparent;
}
.l-nav-wrap .l-nav > ul > li:first-child {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.l-nav-wrap .l-nav > ul > li:last-child {
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}
.l-nav-wrap .l-nav > ul > li .ac-target {
  padding: 0;
}
.l-nav-wrap .l-nav > ul > li .ac-target li:not(:last-child) {
  border-bottom: 1px solid #F0EDEB;
}
.l-nav-wrap .l-nav > ul > li .ac-target li a {
  padding-left: 20px;
  background-color: #FFFFFF;
}
.l-nav-wrap .l-nav > ul > li .ac-target li a span {
  font-size: 0.8em;
}
.l-nav-wrap .l-nav > ul > li .ac-target li a:hover {
  background-color: #1d7fcf;
}
.l-nav-wrap .l-nav > ul > li .ac-target li.active a {
  background-color: #1d7fcf;
  color: #FFFFFF;
}
.l-nav-wrap .l-nav > ul > li .ac-target li.active a::before {
  border-color: #FFFFFF #FFFFFF transparent transparent;
}

.l-menu {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: #1d7fcf;
  z-index: 90;
}
.l-menu h3 {
  color: #FFFFFF;
  height: 40px;
  padding: 10px 100px 10px 50px;
  cursor: pointer;
  position: relative;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 769px) {
  .l-menu h3:hover {
    background-color: #003366;
  }
}
.l-menu h3::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 20px;
  top: 20px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(-45deg);
  transition: transform 0.5s;
}
.l-menu h3.l-menu-up::before {
  transform: rotate(135deg);
  top: 15px;
}
.l-menu ul {
  display: none;
  padding-bottom: 40px;
}
.l-menu ul li {
  margin: 0;
  padding: 0;
}
.l-menu ul li a {
  color: #FFFFFF;
  padding: 10px 60px 10px 2em;
  display: block;
  line-height: 1.3;
  text-indent: -1em;
}
.l-menu ul li a::before {
  content: "・";
}
.l-menu ul li a:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .l-menu ul li a:hover {
    background-color: #003366;
  }
}

/*-----------------------------------------------------------
 Title
-----------------------------------------------------------*/
.main-bg {
  background-image: url(../img/main-bg.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.main-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 40, 126, 0.4);
}
.main-bg__inner {
  padding: 150px 30px 70px 30px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-bg__inner {
    padding: 50px 0;
  }
}
@media print {
  .main-bg__inner {
    padding: 70px 30px 70px 30px;
  }
}
.main-bg h1 {
  text-align: center;
  color: #FFFFFF;
  font-size: 2.8em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .main-bg h1 {
    font-size: 1.4em;
  }
}
.main-bg p {
  text-align: center;
  color: #FFFFFF;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .main-bg p {
    font-size: 1.2rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
}

h1 {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
}

h2 {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.7rem;
  }
}

h3 {
  font-size: 2rem;
}
h3.h-std {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.6rem;
  }
  h3.h-std {
    margin-bottom: 15px;
  }
}

h4 {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 1.4rem;
  }
}

h6 {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  h6 {
    font-size: 1.1rem;
  }
}

.h-center {
  text-align: center;
  margin: 0 0 60px;
}

.h-center-s {
  text-align: center;
  margin: 0 0 30px;
}

.h-dot {
  padding-bottom: 15px;
  background: url(../svg/common/h2-dot.svg) center bottom no-repeat;
  background-size: 50px;
}

.h-line {
  padding-bottom: 10px;
  background: url(../svg/common/h2-line.svg) center bottom no-repeat;
  background-size: 40px;
}

.h-line-g {
  padding-bottom: 10px;
  background: url(../svg/common/h2-line-g.svg) center bottom no-repeat;
  background-size: 40px;
}

.h-border, .h-border-s {
  padding: 0 0 10px;
  margin: 0 0 30px;
  border-bottom: 2px solid #D3D3D3;
  position: relative;
}
.h-border::after, .h-border-s::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #1d7fcf;
}
@media screen and (max-width: 768px) {
  .h-border, .h-border-s {
    margin: 0 0 20px;
  }
}

.h-border-s {
  padding: 0 0 10px;
  margin: 0 0 20px;
}

.h-border-l {
  padding: 0 0 0 0.6em;
  border-left: 4px solid #333333;
  margin: 0 0 20px;
}

.h-border-lb {
  padding: 0 0 0 0.6em;
  border-left: 4px solid #1d7fcf;
  margin: 0 0 20px;
}

.h-weight-l {
  font-weight: normal;
}

.h-color-w {
  color: #FFFFFF;
}

.h-color-blue {
  color: #1d7fcf;
}

.h-bg {
  font-size: 0.8em;
  padding: 5px;
  background-color: #fff;
  font-weight: normal;
}

/* page title box */
.title-l {
  width: 100%;
  padding: 100px 0 70px;
  background-color: #666666;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .title-l {
    padding: 70px 15px 30px;
  }
}
@media print {
  .title-l {
    padding: 10px;
    min-height: 30vh;
  }
}
.title-l h1 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 30px;
  padding: 0 15px;
  color: #FFFFFF;
  line-height: 1.2;
}
.title-l h1 span {
  font-size: 0.6em;
}
@media screen and (max-width: 768px) {
  .title-l h1 {
    padding: 0;
  }
}
.title-l p {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .title-l p {
    padding: 0;
    font-size: 1rem;
  }
}
.title-l::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(80%);
  z-index: -1;
}
.title-l .breadcrumbs {
  margin-bottom: 40vh;
}

.title-m {
  width: 100%;
  padding: 100px 0 70px;
  background-color: #666666;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .title-m {
    padding: 70px 15px 30px;
  }
}
@media print {
  .title-m {
    padding: 10px;
  }
}
.title-m h1 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  color: #FFFFFF;
  line-height: 1.2;
  font-weight: normal;
}
.title-m h1 span {
  font-size: 0.6em;
}
@media screen and (max-width: 768px) {
  .title-m h1 {
    padding: 0;
  }
}
.title-m::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(75%);
  z-index: -1;
}
.title-m p {
  width: 100%;
  max-width: 1280px;
  margin: 30px auto 0;
  padding: 0 15px;
  color: #FFFFFF;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .title-m p {
    font-size: 1rem;
    padding: 0;
  }
}

.title-s {
  width: 100%;
  padding: 100px 0 30px;
  background-color: #666666;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .title-s {
    padding: 70px 15px 15px;
  }
}
@media print {
  .title-s {
    padding: 10px;
  }
}
.title-s .breadcrumbs {
  margin: 0 auto;
}
.title-s::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(75%);
  z-index: -1;
}

/* large title scroll animation */
.scrolldown {
  position: absolute;
  bottom: 80px;
  right: 50%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .scrolldown {
    bottom: 120px;
  }
}

@keyframes mousemove {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}
.scrolldown span {
  position: absolute;
  left: -18px;
  bottom: -55px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.scrolldown span::after {
  content: "";
  position: absolute;
  top: -55px;
  left: 17.5px;
  width: 1px;
  height: 25px;
  background: #eee;
  opacity: 0.5;
  animation: mousepathmove 1.4s linear infinite;
}
@media screen and (max-width: 768px) {
  .scrolldown span::after {
    animation: swipemove 1.4s linear infinite;
  }
}

@keyframes mousepathmove {
  0% {
    height: 0;
    top: -50px;
  }
  30% {
    height: 35px;
    top: -50px;
  }
  70% {
    height: 35px;
    top: -50px;
  }
  100% {
    height: 0;
    top: -15px;
  }
}
@keyframes swipemove {
  0% {
    height: 0;
    top: -10px;
    opacity: 0;
  }
  50% {
    height: 20px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: -45px;
    opacity: 0;
  }
}
.scrolldown:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 20px;
  height: 37px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

body {
  color: #555;
}

p {
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  p {
    line-height: 1.5;
  }
}
p .mb30 {
  margin-bottom: 30px;
}
p .mb50 {
  margin-bottom: 50px;
}
p .mb100 {
  margin-bottom: 100px;
}

/*-----------------------------------------------------------
 Font
-----------------------------------------------------------*/
.serif, .philosophy p, .guidelines ul li, .products hgroup .h-sub, .pro-features-fb h4 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

/*-----------------------------------------------------------
 Text align
-----------------------------------------------------------*/
.t-align-l {
  text-align: left;
}

.t-align-c {
  text-align: center;
}

.t-align-c-spl {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .t-align-c-spl {
    text-align: left;
  }
}

.t-align-r {
  text-align: right;
}

.v-align-b {
  vertical-align: baseline;
}

span.t-align-r {
  display: block;
  text-align: right;
}

/*-----------------------------------------------------------
 Text color
-----------------------------------------------------------*/
.t-color-red {
  color: #E70000;
}

.t-color-glay {
  color: #666666;
}

.t-color-green {
  color: #168452;
}

.t-color-blue {
  color: #1d7fcf;
}

.t-color-white {
  color: #FFFFFF;
}

/*-----------------------------------------------------------
 Text size
-----------------------------------------------------------*/
.t-size-xxsmall {
  font-size: 0.86rem;
}

.t-size-xsmall {
  font-size: 1rem;
}

.t-size-small {
  font-size: 1.2rem;
}

.t-size-medium {
  font-size: 1.4rem;
}

.t-size-large {
  font-size: 1.6rem;
}

.t-size-xlarge {
  font-size: 1.8rem;
}

.t-size-xxlarge {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .t-size-xxlarge {
    font-size: 1.6rem;
  }
}

.annotation {
  margin-bottom: 100px;
}
.annotation li {
  font-size: 0.86em;
  line-height: 1.2;
}

/*-----------------------------------------------------------
 Font set
-----------------------------------------------------------*/
.t-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------
 Text link
-----------------------------------------------------------*/
a {
  outline: none;
  color: #111111;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a, a:hover, a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

section a {
  color: #1d7fcf;
}
section a:hover {
  text-decoration: underline;
}

sub {
  font-size: 0.86rem;
  vertical-align: sub;
}

sup {
  font-size: 0.86rem;
}

.tx-link-std {
  color: #1d7fcf;
}
.tx-link-std:hover {
  text-decoration: underline;
}

.tx-link-blank {
  color: #1d7fcf;
  padding-right: 20px;
  background: url("../svg/txt-icon-blank.svg") right center no-repeat;
  background-size: 20px 20px;
}
.tx-link-blank:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------
 Text paragraph
-----------------------------------------------------------*/
p.p-nmg {
  margin-bottom: 0;
}

/*-----------------------------------------------------------
 Text indent
-----------------------------------------------------------*/
.ind01 {
  margin-left: 1em;
  text-indent: -1em;
}

.ind02 {
  margin-left: 1.8em;
  text-indent: -1.8em;
}

.ind03 {
  margin-left: 3.4em;
  text-indent: -3.4em;
}

.ind04 {
  margin-left: 4em;
  text-indent: -4em;
}

.t-ind {
  text-indent: 1em;
}

/*-----------------------------------------------------------
 Text bgcolor
-----------------------------------------------------------*/
.tx-bg-white {
  background-color: #FFFFFF;
  padding: 30px;
}

.tx-bg-gray {
  background-color: #D3D3D3;
  padding: 30px;
}

/*-----------------------------------------------------------
 Text decoration
-----------------------------------------------------------*/
.tx-underline {
  text-decoration: underline;
}

/*-----------------------------------------------------------
 Text nowrap
-----------------------------------------------------------*/
.tx-nowrap {
  white-space: nowrap;
}

/*-----------------------------------------------------------
 Button
-----------------------------------------------------------*/
/* Btn vars
-----------------------------------------------------------*/
.btn-01, .btn-03, .btn-03-s, .btn-02, .btn-04, .btn-02-s, .btn-01-s {
  background-color: #F4F2EF;
  padding: 15px 20px;
  display: inline-block;
  font-size: 1.6rem;
  color: #333333;
  text-decoration: none;
  position: relative;
  line-height: 1.3;
  border-radius: 25px;
  cursor: pointer;
}
.btn-01:hover, .btn-03:hover, .btn-03-s:hover, .btn-02:hover, .btn-04:hover, .btn-02-s:hover, .btn-01-s:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .btn-01:hover, .btn-03:hover, .btn-03-s:hover, .btn-02:hover, .btn-04:hover, .btn-02-s:hover, .btn-01-s:hover {
    background-color: #38b383;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 768px) {
  .btn-01, .btn-03, .btn-03-s, .btn-02, .btn-04, .btn-02-s, .btn-01-s {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    padding: 10px 30px;
    width: 100%;
  }
}

.btn-01-s {
  font-size: 1.4rem;
  padding: 5px 30px;
}
@media screen and (max-width: 768px) {
  .btn-01-s {
    font-size: 1.2rem;
  }
}

.btn-02, .btn-04, .btn-02-s {
  background-color: #1d7fcf;
  color: #FFFFFF;
}
.btn-02:hover, .btn-04:hover, .btn-02-s:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .btn-02:hover, .btn-04:hover, .btn-02-s:hover {
    background-color: #38b383;
  }
}
@media screen and (max-width: 768px) {
  .btn-02, .btn-04, .btn-02-s {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 30px;
    width: 100%;
  }
}

.btn-02-s {
  font-size: 1.4rem;
  padding: 5px 30px;
}
@media screen and (max-width: 768px) {
  .btn-02-s {
    font-size: 1.2rem;
  }
}

.btn-03, .btn-03-s {
  color: #1d7fcf;
  border: 1px solid #1d7fcf;
}
.btn-03:hover, .btn-03-s:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .btn-03:hover, .btn-03-s:hover {
    color: #FFFFFF;
    border: 1px solid #1d7fcf;
    background-color: #1d7fcf;
  }
}

.btn-03-s {
  font-size: 1.4rem;
  padding: 3px 40px;
}

.btn-04 {
  background-color: #FF8800;
}
@media print, screen and (min-width: 769px) {
  .btn-04:hover {
    background-color: #38b383;
  }
}

/* Btn icons
-----------------------------------------------------------*/
.btn-icon-arrow-r, .btn-icon-arrow-r-bk {
  position: relative;
  padding: 10px 50px 10px 20px;
}
.btn-icon-arrow-r::after, .btn-icon-arrow-r-bk::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 20px;
  top: calc(50% - 4px);
  transform: rotate(45deg);
}

.btn-icon-arrow-r-bk::after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.btn-icon-pdf {
  padding-right: 50px;
  background: #F4F2EF url("../svg/btn-icon-pdf.svg") right 14px center no-repeat;
  background-size: 20px;
}

.btn-icon-pdf-b {
  padding-right: 50px;
  background: #1d7fcf url("../svg/btn-icon-pdf.svg") right 14px center no-repeat;
  background-size: 20px;
}

.btn-icon-digicata {
  padding-right: 50px;
  background: #1d7fcf url("../svg/btn-icon-digicata.svg") right 14px center no-repeat;
  background-size: 20px;
}
@media screen and (max-width: 768px) {
  .btn-icon-digicata {
    background-size: 20px;
  }
}

.btn-icon-blank {
  padding-right: 50px;
  background: #1d7fcf url("../svg/btn-icon-blank.svg") right 14px center no-repeat;
  background-size: 14px;
}
@media screen and (max-width: 768px) {
  .btn-icon-blank {
    background-size: 14px;
  }
}

.more-btn, div[class^=modal-open_],
.more-btn-t,
.more-btn-s {
  display: inline-block;
  margin: 0 auto 100px;
  text-align: center;
  color: #FFFFFF;
  background-color: #1d7fcf;
  border-radius: 30px;
  padding: 5px 15px;
  cursor: pointer;
  transition: 0.5s ease;
  border: 1px solid #FFFFFF;
}
@media print, screen and (min-width: 769px) {
  .more-btn:hover, div[class^=modal-open_]:hover,
  .more-btn-t:hover,
  .more-btn-s:hover {
    color: #333333;
    border: 1px solid #666666;
    background-color: #FFFFFF;
  }
}

.search-btn {
  text-align: center;
  color: #FFFFFF;
  background-color: #1d7fcf;
  border-radius: 30px;
  padding: 5px 20px;
  cursor: pointer;
  transition: 0.5s ease;
  border: 1px solid #FFFFFF;
}
@media print, screen and (min-width: 769px) {
  .search-btn:hover {
    color: #1d7fcf;
    border: 1px solid #1d7fcf;
    background-color: #FFFFFF;
  }
}

.btn-outline-w {
  border: 2px solid #FFFFFF;
  padding: 16px 50px;
  position: relative;
  color: #FFFFFF;
}
.btn-outline-w:hover {
  text-decoration: none;
  background-color: #1d7fcf;
}
.btn-outline-w img {
  width: 22px;
  position: absolute;
  right: 15px;
  top: calc(50% - 11px);
}

/* Btn layout
-----------------------------------------------------------*/
.btn-left {
  text-align: left;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .btn-left {
    text-align: center;
    margin-bottom: 30px;
  }
}

.btn-right {
  text-align: right;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .btn-right {
    text-align: center;
    margin-bottom: 30px;
  }
}

.btn-center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn-center {
    padding: 0 30px;
  }
}

.btn-block {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/*-----------------------------------------------------------
 Banner
-----------------------------------------------------------*/
/* Banner medium
-----------------------------------------------------------*/
.bnr-m {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .bnr-m {
    width: 100%;
  }
}
.bnr-m a {
  display: flex;
  flex-wrap: wrap;
  background-color: #FFFFFF;
  position: relative;
  height: auto;
  color: #333333;
  text-decoration: none;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
}
.bnr-m a div {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bnr-m a div {
    width: 100%;
  }
}
.bnr-m a div h3 {
  font-size: 2rem;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .bnr-m a div h3 {
    padding: 30px;
    font-size: 1.6rem;
  }
}
.bnr-m a div h3 span {
  font-size: 1.6rem;
  color: #999999;
  font-weight: normal;
}
.bnr-m a div p {
  padding: 30px 60px 30px 30px;
}
@media screen and (max-width: 768px) {
  .bnr-m a div p {
    padding: 30px;
  }
}
.bnr-m a div img {
  width: 100%;
}
.bnr-m a:hover {
  background-color: #F0EDEB;
  text-decoration: none;
}

/*-----------------------------------------------------------
 Tab
-----------------------------------------------------------*/
.tab-area {
  display: flex;
  border-bottom: 2px solid #1d7fcf;
  margin-bottom: 30px;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .tab-area {
    gap: 4px;
  }
}
.tab-area li {
  margin-bottom: 0;
}
.tab-area .tab {
  width: calc(25% - 9px);
  font-size: 1.6rem;
  padding: 15px 0;
  text-align: center;
  color: #666666;
  position: relative;
  cursor: pointer;
  background-color: #F4F2EF;
  transition: 0.25s all ease;
  border-radius: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .tab-area .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: calc(25% - 3px);
    padding: 10px 0;
  }
}
.tab-area .tab:hover {
  color: #FFFFFF;
  background-color: #1d7fcf;
  transition: 0.25s all ease;
}
.tab-area .tab.active {
  color: #FFFFFF;
  background-color: #1d7fcf;
  position: relative;
  border-color: #1d7fcf #1d7fcf transparent #1d7fcf;
}

.tab-area-btm {
  display: flex;
  justify-content: center;
  border-top: 1px solid #D3D3D3;
}
.tab-area-btm .tab-btm {
  width: 200px;
  max-width: 50%;
  font-size: 2rem;
  padding: 20px 0;
  text-align: center;
  color: #999999;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
}
.tab-area-btm .tab-btm:hover {
  color: #333333;
}
.tab-area-btm .tab-btm::after {
  content: "";
  background-color: #1d7fcf;
  width: 0;
  height: 3px;
  position: absolute;
  top: -2px;
  left: 50%;
  transition: 0.25s all ease;
}
.tab-area-btm .tab-btm:hover::after {
  width: 100%;
  left: 0;
}
.tab-area-btm .tab-btm:last-child {
  margin-right: 0;
}
.tab-area-btm .tab-btm.active {
  color: #333333;
  position: relative;
}
.tab-area-btm .tab-btm.active::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: -2px;
  border-bottom: 3px solid #1d7fcf;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: 0.7s;
}
.tab-content.active {
  display: block;
  opacity: 1;
}

/*-----------------------------------------------------------
 Table
-----------------------------------------------------------*/
table th {
  font-weight: normal;
  color: #333333;
}

.table-std, .table-ir, .table-ir2, .table-fit, .table-nmg, .table-scr, .table-align-c {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.6;
}
.table-std th, .table-ir th, .table-ir2 th, .table-fit th, .table-nmg th, .table-scr th, .table-align-c th {
  background-color: #F0EDEB;
  padding: 15px 20px;
  border-bottom: 1px solid #D3D3D3;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .table-std th, .table-ir th, .table-ir2 th, .table-fit th, .table-nmg th, .table-scr th, .table-align-c th {
    padding: 10px;
  }
}
.table-std thead th, .table-ir thead th, .table-ir2 thead th, .table-fit thead th, .table-nmg thead th, .table-scr thead th, .table-align-c thead th {
  background-color: #D3D3D3;
}
.table-std td, .table-ir td, .table-ir2 td, .table-fit td, .table-nmg td, .table-scr td, .table-align-c td {
  background-color: #FFFFFF;
  padding: 15px 20px;
  border-bottom: 1px solid #D3D3D3;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .table-std td, .table-ir td, .table-ir2 td, .table-fit td, .table-nmg td, .table-scr td, .table-align-c td {
    padding: 10px;
  }
}
.table-std th.line, .table-ir th.line, .table-ir2 th.line, .table-fit th.line, .table-nmg th.line, .table-scr th.line, .table-align-c th.line, .table-std td.line, .table-ir td.line, .table-ir2 td.line, .table-fit td.line, .table-nmg td.line, .table-scr td.line, .table-align-c td.line {
  background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #D3D3D3 50%, #D3D3D3 calc(50% + 0.5px), transparent calc(50% + 1px));
}

.table-align-c tr th, .table-align-c tr td {
  text-align: center;
}

.table-small {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.1;
  margin-bottom: 30px;
}
.table-small th {
  background-color: #F0EDEB;
  padding: 7px 10px;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .table-small th {
    padding: 5px;
  }
}
.table-small td {
  padding: 7px 10px;
  border-bottom: 1px solid #D3D3D3;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .table-small td {
    padding: 5px;
  }
}

.table-blue {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.1;
  border-left: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
}
.table-blue th {
  padding: 10px;
  border-bottom: 1px solid #D3D3D3;
  border-right: 1px solid #D3D3D3;
  vertical-align: middle;
  background-color: #1d7fcf;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .table-blue th {
    padding: 5px;
  }
}
.table-blue td {
  padding: 10px;
  border-bottom: 1px solid #D3D3D3;
  border-right: 1px solid #D3D3D3;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .table-blue td {
    padding: 5px;
  }
}

@media screen and (max-width: 768px) {
  .table-scr {
    display: block;
    white-space: nowrap;
    overflow-x: scroll;
  }
  .table-scr::after {
    display: block;
    content: "→ SCROLL";
    width: 100%;
    text-align: right;
    font-size: 0.7rem;
    color: #999999;
  }
}

@media screen and (max-width: 768px) {
  .table-sc {
    width: 100%;
    overflow-x: scroll;
    position: relative;
  }
  .table-sc::after {
    content: "SCROLL→";
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0.7em;
    color: #999999;
  }
}

.table-nmg {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .table-fit th {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 768px) {
  .table-fit td {
    padding: 10px 5px;
  }
}

@media screen and (max-width: 768px) {
  .table-res {
    display: block;
    min-width: 100%;
    width: 100%;
  }
  .table-res tbody, .table-res tr, .table-res tr th, .table-res tr td {
    display: block;
    min-width: 100%;
    width: 100%;
  }
  .table-res tbody:nth-child(1), .table-res tr:nth-child(1), .table-res tr th:nth-child(1), .table-res tr td:nth-child(1) {
    min-width: 100%;
    width: 100%;
  }
}

.table-col-02 tr th, .table-col-02 tr td {
  width: 50%;
}

.table-col-03 tr td {
  width: 33.3%;
}

.table-col-04 tr td {
  width: 25%;
}

@media print, screen and (min-width: 769px) {
  .table-th-01 tr th {
    width: 75%;
  }
}

@media print, screen and (min-width: 769px) {
  .table-th-03 tr th {
    width: 33.3%;
  }
}

@media print, screen and (min-width: 769px) {
  .table-th-04 tr th {
    width: 25%;
  }
}

.table-td-t-align-c tr td {
  text-align: center;
}

.table-th-t-align-l tr th {
  text-align: left;
}

.table-td-t-align-r tr td {
  text-align: right;
}

.table-th-t-align-c th {
  text-align: center;
}

.ws-nowrap {
  white-space: nowrap;
}

.table-full-border {
  border-top: 1px solid #D3D3D3;
}
.table-full-border tr th, .table-full-border tr td {
  border-right: 1px solid #D3D3D3;
}
.table-full-border tr th:first-child, .table-full-border tr td:first-child {
  border-left: 1px solid #D3D3D3;
}

.table-tr-bg-ltg th, .table-tr-bg-ltg td {
  background-color: #F4F2EF;
}

.table-zebra {
  width: 100%;
}
.table-zebra tr th, .table-zebra tr td {
  padding: 15px 20px;
  vertical-align: middle;
  text-align: left;
  width: 50%;
  font-size: 1.4rem;
  color: #333333;
}
.table-zebra tr th span, .table-zebra tr td span {
  color: #666666;
}
.table-zebra tr:nth-child(2n+1) th, .table-zebra tr:nth-child(2n+1) td {
  background-color: #F4F2EF;
}
@media screen and (max-width: 768px) {
  .table-zebra {
    display: block;
    min-width: 100%;
    width: 100%;
  }
  .table-zebra tr th {
    padding-bottom: 0;
  }
  .table-zebra tr td {
    padding-top: 0;
  }
  .table-zebra tbody, .table-zebra tr, .table-zebra tr th, .table-zebra tr td {
    display: block;
    min-width: 100%;
    width: 100%;
  }
  .table-zebra tbody:nth-child(1), .table-zebra tr:nth-child(1), .table-zebra tr th:nth-child(1), .table-zebra tr td:nth-child(1) {
    min-width: 100%;
    width: 100%;
  }
}

/*
td margin set
-----------------------------------------------------------*/
table tr td .list-std, table tr td .list-square, table tr td .list-dash, table tr td .list-disc, table tr td .list-link, table tr td .list-order, table tr td p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  table tr td {
    line-height: 1.4;
  }
}

/*
td color set
-----------------------------------------------------------*/
table tr .td-c-ltg {
  background-color: #F4F2EF;
}
table tr .td-c-ltb {
  background-color: #dde5ec;
}
table tr .td-c-ltr {
  background-color: #FCE3E3;
}

/*-----------------------------------------------------------
 List
-----------------------------------------------------------*/
body ul li,
body ol li,
body dl dt,
body dl dd {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body ul li,
  body ol li,
  body dl dt,
  body dl dd {
    line-height: 1.5;
  }
}
body ul li,
body ol li {
  margin-bottom: 10px;
}
body ul li ul li,
body ul li ol li,
body ol li ul li,
body ol li ol li {
  margin-bottom: 0;
}
body ol > li {
  margin-left: 1.3em;
}

/*-----------------------------------------------------------
 List style
-----------------------------------------------------------*/
.list-std {
  margin-bottom: 30px;
}

.list-square {
  margin-bottom: 30px;
}
.list-square > li {
  margin-left: 2rem;
  position: relative;
}
.list-square > li::after {
  display: block;
  content: "";
  position: absolute;
  top: 0.7rem;
  left: -2rem;
  width: 0.8em;
  height: 0.8em;
  background-color: #9cf;
  border: 0.48em solid;
  border-color: transparent #1d7fcf #1d7fcf transparent;
}

.list-dash {
  margin-bottom: 30px;
}
.list-dash > li {
  margin-left: 2rem;
  position: relative;
}
.list-dash > li::after {
  display: block;
  content: "";
  position: absolute;
  top: 1.2rem;
  left: -1.4rem;
  width: 8px;
  height: 3px;
  background-color: #666666;
}

.list-disc, .list-disc-2col, .list-disc-nmg, .list-disc-bk, .list-disc-w {
  margin-bottom: 30px;
}
.list-disc > li, .list-disc-2col > li, .list-disc-nmg > li, .list-disc-bk > li, .list-disc-w > li {
  margin-left: 2rem;
  position: relative;
}
.list-disc > li::after, .list-disc-2col > li::after, .list-disc-nmg > li::after, .list-disc-bk > li::after, .list-disc-w > li::after {
  display: block;
  content: "";
  position: absolute;
  top: 1rem;
  left: -1.4rem;
  width: 8px;
  height: 8px;
  background-color: #1d7fcf;
  border-radius: 100%;
}
.list-disc > li > p, .list-disc-2col > li > p, .list-disc-nmg > li > p, .list-disc-bk > li > p, .list-disc-w > li > p {
  margin-bottom: 0;
}

.list-disc-w > li {
  color: #FFFFFF;
}
.list-disc-w > li::after {
  background-color: #FFFFFF;
}

.list-disc-bk > li::after {
  background-color: #333333;
}

.list-disc-nmg {
  margin-bottom: 0;
}

.list-disc-2col {
  display: flex;
  flex-wrap: wrap;
}
.list-disc-2col > li {
  width: calc(50% - 3rem);
  margin-right: 2rem;
}
.list-disc-2col > li:nth-child(2n) {
  margin-right: 0;
}

.list-dot > li {
  padding: 0 0.5em;
  text-indent: -1em;
  margin-left: 1em;
}
.list-dot > li::before {
  content: "・";
  display: inline-block;
  padding: 0 0.2em;
}
.list-dot > li > p {
  margin-bottom: 0;
}

.list-link {
  margin-bottom: 30px;
}
.list-link > li {
  padding-left: 22px;
  position: relative;
}
.list-link > li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1d7fcf;
  border-right: 2px solid #1d7fcf;
  transform: rotate(45deg);
}

.list-menu > li {
  border-bottom: 1px solid #999999;
  margin: 0;
  position: relative;
}
.list-menu > li a {
  display: block;
  color: #666666;
  padding: 15px;
}
.list-menu > li a:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .list-menu > li a:hover {
    background-color: #F0EDEB;
  }
}
.list-menu > li::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-color: #999999 #999999 transparent transparent;
  transform: rotate(45deg);
}

.list-flow > li {
  width: 100%;
  position: relative;
  margin-bottom: 80px;
}
.list-flow > li span {
  font-weight: bold;
}
.list-flow > li:nth-child(n+2)::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid #1d7fcf;
  border-right: 2px solid #1d7fcf;
  transform: rotate(135deg);
  position: absolute;
  left: calc(50% - 14px);
  top: -56px;
}
.list-flow > li p,
.list-flow > li ul {
  margin-bottom: 0;
}

.list-flow-2col {
  display: flex;
  flex-wrap: wrap;
}
.list-flow-2col > li {
  width: calc(50% - 25px);
  margin: 0 0 50px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .list-flow-2col > li {
    width: 100%;
    margin: 0 0 50px 0;
  }
}
.list-flow-2col > li:nth-child(2n) {
  margin-right: 0;
}
.list-flow-2col > li:nth-child(n+2) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .list-flow-2col > li:nth-child(n+2) {
    margin-left: 0;
  }
}
.list-flow-2col > li:nth-child(n+2)::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid #1d7fcf;
  border-right: 2px solid #1d7fcf;
  transform: rotate(45deg);
  position: absolute;
  left: -40px;
  top: calc(50% - 14px);
}
@media screen and (max-width: 768px) {
  .list-flow-2col > li:nth-child(n+2)::before {
    transform: rotate(135deg);
    left: calc(50% - 14px);
    top: -40px;
  }
}
.list-flow-2col > li img {
  width: 100%;
}

.list-flow-3col {
  display: flex;
  flex-wrap: wrap;
}
.list-flow-3col > li {
  width: calc(33.3% - 50px);
  margin: 0 0 50px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .list-flow-3col > li {
    width: 100%;
    margin: 0 0 50px 0;
  }
}
.list-flow-3col > li:nth-child(3n) {
  margin-right: 0;
}
.list-flow-3col > li:nth-child(n+2) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .list-flow-3col > li:nth-child(n+2) {
    margin-left: 0;
  }
}
.list-flow-3col > li:nth-child(n+2)::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid #1d7fcf;
  border-right: 2px solid #1d7fcf;
  transform: rotate(45deg);
  position: absolute;
  left: -40px;
  top: calc(50% - 14px);
}
@media screen and (max-width: 768px) {
  .list-flow-3col > li:nth-child(n+2)::before {
    transform: rotate(135deg);
    left: calc(50% - 14px);
    top: -40px;
  }
}
.list-flow-3col > li img {
  width: 100%;
}

.left-bd > li {
  border-left: 3px solid #1d7fcf;
}

.list-mb30 > li {
  margin-bottom: 30px;
}

/*-----------------------------------------------------------
 Order List
-----------------------------------------------------------*/
.list-order {
  margin-bottom: 30px;
  margin-left: 2.2rem;
}
.list-order > li {
  list-style: decimal;
}

.list-no-order, .list-no-order-np {
  margin-left: 0.6rem;
  padding-left: 0;
}
.list-no-order > li, .list-no-order-np > li {
  list-style: none;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.list-no-order-02 {
  margin: 0;
  padding: 0;
}
.list-no-order-02 > li {
  list-style: none;
  margin-bottom: 0;
  padding-left: 3.5rem;
  text-indent: -3.5rem;
}

.list-no-order-np > li {
  padding-left: 0;
  margin-bottom: 0;
  text-indent: 0;
}

.ol-num {
  list-style: none;
  counter-reset: number;
}
.ol-num li {
  position: relative;
  padding-left: 0.3em;
}
.ol-num li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: -1.3em;
  top: 0.3em;
  width: 1.4em;
  height: 1.4em;
  background-color: #1d7fcf;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.ol-num li h4 {
  font-size: 1.2em;
  line-height: 1.4;
}

/*-----------------------------------------------------------
 Flex List
-----------------------------------------------------------*/
.list-flex-2col {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.list-flex-2col > li {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .list-flex-2col > li {
    width: 100%;
  }
}
.list-flex-2col > li img {
  width: 100%;
}

.list-flex-3col {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.list-flex-3col > li {
  width: calc(33.3333333333% - 32px);
}
@media screen and (max-width: 768px) {
  .list-flex-3col > li {
    width: 100%;
  }
}
.list-flex-3col > li img {
  width: 100%;
}

.list-flex-4col {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.list-flex-4col > li {
  width: calc(25% - 36px);
  text-align: center;
}
.list-flex-4col > li a {
  display: block;
  background-color: #FFFFFF;
  text-align: center;
  color: #666666;
  border-radius: 5px;
}
.list-flex-4col > li a figure {
  width: 100%;
  aspect-ratio: 280/157;
  overflow: hidden;
  border-radius: 5px;
}
.list-flex-4col > li a figure img {
  width: 100%;
  transition: all 0.3s;
}
.list-flex-4col > li a p {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .list-flex-4col > li a p {
    font-size: 1em;
  }
}
.list-flex-4col > li a:hover {
  text-decoration: none;
}
.list-flex-4col > li a:hover img {
  transform: scale(1.1);
}
.list-flex-4col > li img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .list-flex-4col > li {
    width: 80%;
    margin: 0 10%;
  }
}

/*-----------------------------------------------------------
 Card
-----------------------------------------------------------*/
/* card vars
-----------------------------------------------------------*/
.card-2col, .card-2col-blue, .card-2col-hf {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .card-2col, .card-2col-blue, .card-2col-hf {
    gap: 25px;
  }
}
.card-2col > li, .card-2col-blue > li, .card-2col-hf > li {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .card-2col > li, .card-2col-blue > li, .card-2col-hf > li {
    width: 100%;
  }
}
.card-2col > li a h2, .card-2col-blue > li a h2, .card-2col-hf > li a h2,
.card-2col > li div[class^=s-modal-open_] h2,
.card-2col-blue > li div[class^=s-modal-open_] h2,
.card-2col-hf > li div[class^=s-modal-open_] h2 {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .card-2col > li a h2, .card-2col-blue > li a h2, .card-2col-hf > li a h2,
  .card-2col > li div[class^=s-modal-open_] h2,
  .card-2col-blue > li div[class^=s-modal-open_] h2,
  .card-2col-hf > li div[class^=s-modal-open_] h2 {
    font-size: 1.2rem;
  }
}
.card-2col > li a h2 span, .card-2col-blue > li a h2 span, .card-2col-hf > li a h2 span,
.card-2col > li div[class^=s-modal-open_] h2 span,
.card-2col-blue > li div[class^=s-modal-open_] h2 span,
.card-2col-hf > li div[class^=s-modal-open_] h2 span {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .card-2col > li a h2 span, .card-2col-blue > li a h2 span, .card-2col-hf > li a h2 span,
  .card-2col > li div[class^=s-modal-open_] h2 span,
  .card-2col-blue > li div[class^=s-modal-open_] h2 span,
  .card-2col-hf > li div[class^=s-modal-open_] h2 span {
    font-size: 1.7rem;
  }
}
.card-2col > li a h3, .card-2col-blue > li a h3, .card-2col-hf > li a h3,
.card-2col > li div[class^=s-modal-open_] h3,
.card-2col-blue > li div[class^=s-modal-open_] h3,
.card-2col-hf > li div[class^=s-modal-open_] h3 {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .card-2col > li a h3, .card-2col-blue > li a h3, .card-2col-hf > li a h3,
  .card-2col > li div[class^=s-modal-open_] h3,
  .card-2col-blue > li div[class^=s-modal-open_] h3,
  .card-2col-hf > li div[class^=s-modal-open_] h3 {
    font-size: 1.2rem;
  }
}
.card-2col > li a h3 span, .card-2col-blue > li a h3 span, .card-2col-hf > li a h3 span,
.card-2col > li div[class^=s-modal-open_] h3 span,
.card-2col-blue > li div[class^=s-modal-open_] h3 span,
.card-2col-hf > li div[class^=s-modal-open_] h3 span {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .card-2col > li a h3 span, .card-2col-blue > li a h3 span, .card-2col-hf > li a h3 span,
  .card-2col > li div[class^=s-modal-open_] h3 span,
  .card-2col-blue > li div[class^=s-modal-open_] h3 span,
  .card-2col-hf > li div[class^=s-modal-open_] h3 span {
    font-size: 1.7rem;
  }
}
.card-2col > li a p, .card-2col-blue > li a p, .card-2col-hf > li a p,
.card-2col > li div[class^=s-modal-open_] p,
.card-2col-blue > li div[class^=s-modal-open_] p,
.card-2col-hf > li div[class^=s-modal-open_] p {
  color: #333333;
}
.card-2col > li a:hover, .card-2col-blue > li a:hover, .card-2col-hf > li a:hover,
.card-2col > li div[class^=s-modal-open_]:hover,
.card-2col-blue > li div[class^=s-modal-open_]:hover,
.card-2col-hf > li div[class^=s-modal-open_]:hover {
  text-decoration: none;
}
.card-2col > li a:hover img, .card-2col-blue > li a:hover img, .card-2col-hf > li a:hover img,
.card-2col > li div[class^=s-modal-open_]:hover img,
.card-2col-blue > li div[class^=s-modal-open_]:hover img,
.card-2col-hf > li div[class^=s-modal-open_]:hover img {
  transform: scale(1.04);
}

.card-2col-hf {
  justify-content: center;
}
.card-2col-hf > li {
  margin-right: 0;
}

.card-2col-blue > li {
  background-color: #1d7fcf;
  color: #FFFFFF;
  text-align: center;
  padding: 50px;
}
.card-2col-blue > li h4 {
  color: #FFFFFF;
}

.card-bnr {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.card-bnr img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.card-bnr h2,
.card-bnr h3 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 100px 40px 30px;
  color: #FFFFFF;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 768px) {
  .card-bnr h2,
  .card-bnr h3 {
    padding: 100px 20px 12px;
  }
}
.card-bnr h2::after,
.card-bnr h3::after {
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  border: solid #FFFFFF;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .card-bnr h2::after,
  .card-bnr h3::after {
    width: 1.4rem;
    height: 1.4rem;
    right: 20px;
    bottom: 20px;
  }
}
.card-bnr h3 {
  padding: 100px 30px 20px;
  font-weight: normal;
}
.card-bnr h3 span {
  font-weight: bold;
}

.card-nimg li > a {
  display: block;
  background-color: #F4F2EF;
}
.card-nimg li > a:hover {
  background-color: #D3D3D3;
}
.card-nimg h2,
.card-nimg h3 {
  width: 100%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .card-nimg h2,
  .card-nimg h3 {
    padding: 20px;
  }
}
.card-nimg h2 span,
.card-nimg h3 span {
  font-weight: bold;
}
.card-nimg h2::after,
.card-nimg h3::after {
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  border: solid #333333;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .card-nimg h2::after,
  .card-nimg h3::after {
    width: 1.4rem;
    height: 1.4rem;
    right: 20px;
    bottom: 20px;
  }
}
.card-nimg h3 {
  font-weight: normal;
}
.card-nimg h3 span {
  font-weight: bold;
}

.card-3col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .card-3col {
    padding: 0 15px;
  }
}
.card-3col > li {
  width: calc(33.3% - 34px);
  margin: 0 50px 50px 0;
}
.card-3col > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .card-3col > li {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
.card-3col > li a h2 {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .card-3col > li a h2 {
    font-size: 1.2rem;
  }
}
.card-3col > li a h2 span {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .card-3col > li a h2 span {
    font-size: 1.7rem;
  }
}
.card-3col > li a h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .card-3col > li a h3 {
    font-size: 1.2rem;
  }
}
.card-3col > li a h3 span {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .card-3col > li a h3 span {
    font-size: 1.7rem;
  }
}
.card-3col > li a:hover {
  text-decoration: none;
}
.card-3col > li a:hover img {
  transform: scale(1.04);
}

.card-img-2col, .card-img-3col-n {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .card-img-2col, .card-img-3col-n {
    padding: 0 15px;
    gap: 30px;
  }
}
.card-img-2col > li, .card-img-3col-n > li {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .card-img-2col > li, .card-img-3col-n > li {
    width: 100%;
  }
}
.card-img-2col > li a, .card-img-3col-n > li a {
  color: #FFFFFF;
  position: relative;
}
.card-img-2col > li a figure, .card-img-3col-n > li a figure {
  aspect-ratio: 3/1;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.card-img-2col > li a figure img, .card-img-3col-n > li a figure img {
  width: 100%;
  filter: brightness(0.8);
  transition: all 0.3s;
}
.card-img-2col > li a figure figcaption, .card-img-3col-n > li a figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-2col > li a:hover, .card-img-3col-n > li a:hover {
  text-decoration: none;
}
.card-img-2col > li a:hover img, .card-img-3col-n > li a:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}
.card-img-2col > li a::after, .card-img-3col-n > li a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 26px;
  top: calc(50% - 6px);
  border: 3px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}

.card-img-3col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .card-img-3col {
    padding: 0 15px;
    gap: 30px;
  }
}
.card-img-3col > li {
  width: calc(33.3333333333% - 32px);
}
@media screen and (max-width: 768px) {
  .card-img-3col > li {
    width: 100%;
  }
}
.card-img-3col > li a {
  color: #FFFFFF;
}
.card-img-3col > li a figure {
  aspect-ratio: 280/145;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.card-img-3col > li a figure img {
  width: 100%;
  filter: brightness(0.7);
  transition: all 0.3s;
}
.card-img-3col > li a figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  font-weight: bold;
}
.card-img-3col > li a:hover {
  text-decoration: none;
}
.card-img-3col > li a:hover img {
  filter: brightness(0.9);
  transform: scale(1.05);
}

.card-img-3col-n {
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .card-img-3col-n {
    padding: 0 15px;
    gap: 30px;
  }
}
.card-img-3col-n > li {
  width: calc(33.3333333333% - 32px);
}
@media screen and (max-width: 768px) {
  .card-img-3col-n > li {
    width: 100%;
  }
}

/*-----------------------------------------------------------
 Accordion
-----------------------------------------------------------*/
.ac-trigger button, .ac-trigger-nc button {
  font-size: 1em;
  text-align: left;
  width: 100%;
}
.ac-trigger h2, .ac-trigger-nc h2, .ac-trigger h3, .ac-trigger-nc h3 {
  line-height: 1;
  text-align: left;
  font-size: 2rem;
  font-weight: normal;
  padding: 20px;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-transition: 0.35s all ease;
  transition: 0.35s all ease;
  cursor: pointer;
  position: relative;
  border-bottom: 2px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .ac-trigger h2, .ac-trigger-nc h2, .ac-trigger h3, .ac-trigger-nc h3 {
    font-size: 1.6rem;
    text-align: left;
    padding: 20px 30px 20px 10px;
  }
}
.ac-trigger h2:hover, .ac-trigger-nc h2:hover, .ac-trigger h3:hover, .ac-trigger-nc h3:hover {
  background-color: #F0EDEB;
}
@media screen and (max-width: 768px) {
  .ac-trigger h2:hover, .ac-trigger-nc h2:hover, .ac-trigger h3:hover, .ac-trigger-nc h3:hover {
    background-color: #FFFFFF;
  }
}
.ac-trigger h2:before, .ac-trigger-nc h2:before, .ac-trigger h2:after, .ac-trigger-nc h2:after, .ac-trigger h3:before, .ac-trigger-nc h3:before, .ac-trigger h3:after, .ac-trigger-nc h3:after {
  position: absolute;
  display: block;
  content: "";
  background-color: #666666;
  -webkit-transition: 0.25s transform ease;
  transition: 0.25s transform ease;
  top: 20px;
  right: 20px;
  width: 2px;
  height: 16px;
}
.ac-trigger h2:after, .ac-trigger-nc h2:after, .ac-trigger h3:after, .ac-trigger-nc h3:after {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ac-trigger h2 span, .ac-trigger-nc h2 span, .ac-trigger h3 span, .ac-trigger-nc h3 span {
  font-weight: normal;
  font-size: 1.6rem;
}

.ac-link a, .ac-link-pdf a {
  display: block;
  width: 100%;
  line-height: 1;
  text-align: left;
  font-size: 2rem;
  font-weight: normal;
  padding: 20px;
  color: #333333;
  background-color: #FFFFFF;
  border-top: 1px solid #F0EDEB;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ac-link a, .ac-link-pdf a {
    font-size: 1.6rem;
    text-align: left;
    padding: 20px 30px 20px 10px;
  }
}
.ac-link a:hover, .ac-link-pdf a:hover {
  text-decoration: none;
  background-color: #F0EDEB;
}
@media screen and (max-width: 768px) {
  .ac-link a:hover, .ac-link-pdf a:hover {
    background-color: #FFFFFF;
  }
}
.ac-link a:after, .ac-link-pdf a:after {
  position: absolute;
  display: block;
  content: "";
  background: url("../svg/icon/icon-arrow-right-g.svg") center center no-repeat;
  background-size: 26px;
  top: 16px;
  right: 10px;
  width: 26px;
  height: 26px;
}

.ac-link-pdf a::after {
  background: url("../svg/icon/icon-pdf-g.svg") center center no-repeat;
  background-size: 22px;
}

.ac-active h2:before, .ac-active h3:before {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .ac-active h2:before, .ac-active h3:before {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.ac-target {
  display: none;
  margin: 0 auto;
  padding: 50px;
}
.ac-target h3, .ac-target h4 {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .ac-target {
    padding: 30px 10px;
  }
  .ac-target h3, .ac-target h4 {
    font-size: 1.6rem;
  }
}
.ac-target.stay {
  display: block;
}

/*-----------------------------------------------------------
 Modal
-----------------------------------------------------------*/
/* start light-box2 */
.lb-loader, .lightbox {
  text-align: center;
  line-height: 0;
  position: absolute;
  left: 0;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  filter: alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  width: 100%;
  z-index: 10000;
  font-weight: 400;
  outline: 0;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid #fff;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #fff;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  top: 43%;
  height: 25%;
  width: 100%;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: 0;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}

.lb-next, .lb-prev {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  filter: alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  filter: alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  text-align: right;
  outline: 0;
  filter: alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: alpha(Opacity=100);
  opacity: 1;
}

/* end light-box2 */
main section .lightbox-container a {
  display: block;
  position: relative;
}
main section .lightbox-container a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.4em;
  height: 2.4em;
}

/* content modal */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 150;
}
@media screen and (max-width: 768px) {
  .modal-container {
    padding: 0;
  }
}
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/* モーダル枠の指定 */
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1280px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .modal-body {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    /*margin-left: -1%;*/
    margin: 0;
  }
}

/* モーダル閉じるボタン */
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 155;
}
@media screen and (max-width: 768px) {
  .modal-close {
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    font-size: 30px;
    color: #666666;
  }
}

/* モーダル内のコンテンツ */
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 100%;
    min-height: 100vh;
    margin: 0;
  }
}

div[class^=modal-open_] {
  border: none;
}
div[class^=modal-open_]:hover {
  border: none;
}

/*-----------------------------------------------------------
 home hero
-----------------------------------------------------------*/
.home-hd {
  animation: header-dropIn 1s 1.5s forwards;
  opacity: 0;
  transform: translateY(-80px);
  width: 100%;
}

@keyframes header-dropIn {
  100% {
    transform: translateY(0);
    opacity: 1;
    position: fixed;
    z-index: 1000;
  }
}
.introduction {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100vh;
  z-index: 550;
  position: fixed;
  top: 0;
  left: 0;
}
.introduction h2 {
  width: 10%;
}
.introduction .panning-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #00417D;
  z-index: -1;
}

@keyframes stretch-and-wipe {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  20% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  60% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  80% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  100% {
    transform: scaleX(0);
    transform-origin: left center;
  }
}
.scroll-btn span {
  color: #333;
  padding-right: 100px;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 80px;
  z-index: 100;
  font-size: 0.8em;
}
.scroll-btn span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 90px;
  height: 1px;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: left center;
  animation: stretch-and-wipe 3.1s infinite ease-in-out;
}

#waveCanvasTop {
  position: absolute;
  top: 120px;
  left: 0;
  opacity: 0.2;
  z-index: -10;
}

@media print {
  .hero {
    display: none;
  }
}

.sp-hero img {
  width: 100%;
}

.side-scroll {
  display: flex;
  justify-content: left;
  align-items: center;
  overflow-x: hidden;
}
.side-scroll .side-scroll-list-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list {
  width: 687vh;
  height: calc(100vh - 30px);
  position: absolute;
  display: flex;
  top: 30px;
  left: 0;
  overflow: hidden;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul {
  width: 100%;
  position: relative;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li {
  position: absolute;
  visibility: hidden;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li div.arrow-b {
  position: absolute;
  left: 0;
  top: 0;
  width: 6vh;
  height: 6vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li div.arrow-b img {
  width: 100%;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li div.arrow-t {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6vh;
  height: 6vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li div.arrow-t img {
  width: 100%;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li div.image-switcher img.new {
  /* .original 画像の上に重ねる */
  position: absolute;
  top: 0;
  left: 0;
  /* GSAPで操作するため、最初は非表示にしておく */
  opacity: 0;
  visibility: hidden;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li p {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(1) {
  left: 50vw;
  top: 12vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(1) img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vh;
  max-width: 780px;
  transform: translateX(-50%);
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(2) {
  left: 184.3vh;
  top: 18.6vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(2) img {
  width: 50.6vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(3) {
  left: 189vh;
  top: 33.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(3) img {
  width: 40.9vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(4) {
  left: 180vh;
  top: 67.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(4) img {
  width: 14.5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(5) {
  left: 230.4vh;
  top: 21.5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(5) img {
  width: 74.5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(6) {
  left: 239.8vh;
  top: 66.6vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(6) img {
  width: 56.2vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(7) {
  left: 304.8vh;
  top: 14.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(7) img {
  width: 54.5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(7) div.arrow-b {
  top: 5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(8) {
  left: 308.7vh;
  top: 33.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(8) img {
  width: 50.3vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(9) {
  left: 363.1vh;
  top: 14.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(9) img {
  width: 50.3vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(9) div.arrow-b {
  top: 5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(10) {
  left: 363.1vh;
  top: 33.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(10) img {
  width: 50.3vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(11) {
  left: 410.2vh;
  top: 21.5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(11) img {
  width: 56.2vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(12) {
  left: 421.8vh;
  top: 66.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(12) img {
  width: 46vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(12) div.arrow-t {
  bottom: -1vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(13) {
  left: 469.8vh;
  top: 21.5vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(13) img {
  width: 57.1vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(14) {
  left: 469.7vh;
  top: 66.8vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(14) img {
  width: 52.4vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(14) div.arrow-t {
  bottom: -1vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(15) {
  left: 513.2vh;
  top: 15.3vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(15) img {
  width: 13.4vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(16) {
  right: calc(50vw - 34.4vh);
  top: 18.4vh;
}
.side-scroll .side-scroll-list-wrapper .side-scroll-list ul li:nth-child(16) img {
  width: 68.8vh;
}

.side-scroll-item + .side-scroll-item {
  margin-left: 60px;
}

@keyframes side-fadeIn {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
/*----------------------------------------
home intro 
-----------------------------------------*/
.home-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .home-intro {
    gap: 0;
  }
}
.home-intro figure {
  width: 30%;
}
.home-intro figure img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home-intro figure {
    width: 100%;
    text-align: center;
  }
  .home-intro figure img {
    width: 70%;
    margin: 0 auto;
  }
}
.home-intro div {
  width: calc(70% - 40px);
}
.home-intro div h2 {
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 1080px) {
  .home-intro div h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .home-intro div h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .home-intro div {
    width: 100%;
  }
}

/*----------------------------------------
home products 
-----------------------------------------*/
@media print, screen and (min-width: 769px) {
  .home h2 {
    font-size: 3.4rem;
    font-weight: 900;
  }
}

.home-pro {
  width: 100%;
}
.home-pro .wrap-std {
  padding-top: 0;
  margin-bottom: 25px;
}
.home-pro h2 {
  margin-top: -10px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .home-pro h2 {
    margin-top: 20px;
    font-size: 2rem;
  }
}
.home-pro h3 {
  margin-bottom: 0;
}
.home-pro h3 img {
  width: 120px;
  max-width: 25%;
}

.home-pro-list1 {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  margin-bottom: 30px;
}
.home-pro-list1 li {
  width: calc(33.3333333333% - 30px);
  margin: 0;
  background: linear-gradient(to bottom, #1d7fcf 0%, #1d7fcf 60%, transparent 60%, transparent 100%);
  border-radius: 0 50px 0 0;
}
@media screen and (max-width: 768px) {
  .home-pro-list1 li {
    width: 100%;
    margin: 0 0 45px 0;
  }
}
.home-pro-list1 li a {
  display: block;
  text-align: center;
}
.home-pro-list1 li a p {
  color: #FFFFFF;
  padding-top: 20px;
  margin-bottom: 20px;
}
.home-pro-list1 li a img {
  max-height: 160px;
  max-width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3));
}
.home-pro-list1 li a figcaption {
  color: #666666;
  font-size: 1.6rem;
  font-weight: bold;
}
.home-pro-list1 li a:hover {
  text-decoration: none;
}
.home-pro-list1 li a:hover img {
  transform: scale(1.05);
}

.home-pro-list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .home-pro-list2 {
    gap: 0;
  }
}
.home-pro-list2 li {
  background: none;
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .home-pro-list2 li {
    width: 100%;
  }
}
.home-pro-list2 li a {
  display: grid;
  place-items: center;
  align-items: center;
  justify-items: center;
}
.home-pro-list2 li a figure {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  border-radius: 0 50px 0 50px;
}
.home-pro-list2 li a img {
  filter: brightness(0.7);
  transition: all 0.3s;
  width: 100%;
}
.home-pro-list2 li a p {
  position: absolute;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.home-pro-list2 li a:hover {
  text-decoration: none;
}
.home-pro-list2 li a:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.home-pro-list3 {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .home-pro-list3 {
    gap: 15px;
  }
}
.home-pro-list3 li {
  width: calc(20% - 40px);
  background-color: #1d7fcf;
  overflow: hidden;
  border-radius: 0 50px 0 50px;
}
@media screen and (max-width: 768px) {
  .home-pro-list3 li {
    border-radius: 0 20px 0 20px;
    width: calc(33.3% - 10px);
  }
}
.home-pro-list3 li a {
  display: block;
  padding: 20px 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-pro-list3 li a {
    font-size: 1.2rem;
  }
}
.home-pro-list3 li a img {
  width: 50%;
  max-height: 60px;
  margin: 0 auto 10px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .home-pro-list3 li a img {
    width: 50%;
    max-height: 40px;
  }
}
.home-pro-list3 li a:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .home-pro-list3 li a:hover img {
    transform: rotateY(360deg);
  }
}

/*----------------------------------------
solutions
-----------------------------------------*/
.wave {
  position: relative;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .wave {
    height: 120px;
  }
}
.wave canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.solutions-body {
  padding: 0 0 50px;
  background-color: #f2f2f2;
}
.solutions-body h2 {
  margin: 0 0 30px;
}
.solutions-body .wrap-std {
  padding-top: 0;
}

.mid-slide {
  position: relative;
}
@media screen and (max-width: 768px) {
  .mid-slide {
    padding: 25px 0;
  }
}
.mid-slide .swiper {
  overflow: hidden;
  margin: 0 100px;
}
@media screen and (max-width: 768px) {
  .mid-slide .swiper {
    margin: 0 30px;
  }
}
.mid-slide .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .mid-slide .swiper-controller {
    gap: 1rem;
  }
}
.mid-slide .swiper-pagination {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mid-slide .swiper-pagination {
    gap: 0.5rem;
  }
}
.mid-slide .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  cursor: pointer;
  transition: 0.5s;
  vertical-align: bottom;
  background-color: #666666;
  border-radius: 6px;
}
.mid-slide .swiper-pagination-bullet-active {
  background-color: #1d7fcf;
}
.mid-slide .swiper-button-prev,
.mid-slide .swiper-button-next {
  position: absolute;
  top: calc(50% - 2.94rem);
  margin: 0;
  width: 4.2rem;
  height: 4.2rem;
  z-index: 50;
  cursor: pointer;
  content: "";
  border: 1px solid;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .mid-slide .swiper-button-prev,
  .mid-slide .swiper-button-next {
    width: 2rem;
    height: 2rem;
  }
}
.mid-slide .swiper-button-prev {
  left: 2rem;
  border-color: transparent transparent #666666 #666666;
}
@media screen and (max-width: 768px) {
  .mid-slide .swiper-button-prev {
    left: 0.6rem;
  }
}
.mid-slide .swiper-button-next {
  right: 2rem;
  border-color: #666666 #666666 transparent transparent;
}
@media screen and (max-width: 768px) {
  .mid-slide .swiper-button-next {
    right: 0.6rem;
  }
}
.mid-slide .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
.mid-slide .swiper-slide {
  background-color: #FFFFFF;
  height: auto;
}
.mid-slide .swiper-slide a {
  display: block;
  height: 100%;
  color: #666666;
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .mid-slide .swiper-slide a {
    padding-bottom: 44px;
  }
}
@media screen and (max-width: 768px) {
  .mid-slide .swiper-slide a {
    padding-bottom: 20px;
  }
}
.mid-slide .swiper-slide a img {
  max-width: 100%;
  transition: 0.5s;
}
.mid-slide .swiper-slide a:hover {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .mid-slide .swiper-slide a:hover img {
    transform: scale(1.1);
  }
}
.mid-slide .swiper-slide .swiper-slide-item {
  height: 100%;
}
.mid-slide .slide-media {
  overflow: hidden;
}
.mid-slide .slide-content {
  padding: 20px 20px 0;
}
.mid-slide .slide-content h3 {
  font-size: 1.6rem;
  text-align: center;
}
.mid-slide .slide-content p {
  font-size: 1.2rem;
}
.mid-slide .slide-content strong {
  background-color: #F0EDEB;
  font-weight: normal;
  padding: 0;
  border-radius: 1.2rem;
  width: calc(100% - 40px);
  text-align: center;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 1em;
  transform: translateX(-50%);
}

/*----------------------------------------
movie
-----------------------------------------*/
.home-movie {
  width: 100%;
  padding: 100px 15px;
  background: url(../img/home/home-movie-bg.jpg) center center no-repeat;
  background-size: cover;
  text-align: center;
}
.home-movie h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.home-movie p {
  margin-bottom: 50px;
  color: #FFFFFF;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
}
.home-movie a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 0;
  background-color: rgba(16, 27, 88, 0.7);
  font-size: 1.2em;
}
.home-movie a:hover {
  text-decoration: none;
  background-color: #1d7fcf;
  border-color: #1d7fcf;
}

/*----------------------------------------
about us
-----------------------------------------*/
.home-about {
  width: 100%;
  padding: 100px 0;
}
.home-about h2 {
  text-align: center;
  margin-bottom: 30px;
}
.home-about p {
  margin-bottom: 50px;
  padding: 0 15px;
  text-align: center;
}
.home-about__menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.home-about__menu figure {
  width: 60%;
  max-height: 314px;
  line-height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 769px) {
  .home-about__menu figure {
    border-radius: 157px 0 0 157px;
  }
}
@media screen and (max-width: 768px) {
  .home-about__menu figure {
    width: 100%;
  }
}
.home-about__menu figure img {
  min-width: 100%;
}
@media screen and (max-width: 768px) {
  .home-about__menu figure img {
    width: 100%;
  }
}
.home-about__menu ul {
  width: 40%;
  max-width: 512px;
  margin-left: calc(40% - 512px);
  padding: 0 30px;
}
@media screen and (max-width: 1080px) {
  .home-about__menu ul {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .home-about__menu ul {
    width: 100%;
    padding: 15px;
  }
}

/*----------------------------------------
news
-----------------------------------------*/
.home-news {
  padding: 100px 30px;
  background-color: #f2f2f2;
}
.home-news__wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 1080px) {
  .home-news__wrap {
    padding: 0 15px;
    gap: 0;
  }
}
.home-news__title {
  padding-top: 15px;
  width: calc(25% - 50px);
}
.home-news__title h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .home-news__title {
    text-align: center;
    width: 100%;
  }
}
.home-news .news-link {
  font-size: 1.4rem;
}
@media screen and (max-width: 1080px) {
  .home-news .news-link {
    text-align: right;
    font-size: 1.2rem;
  }
  .home-news .news-link::after {
    width: 10px;
    height: 10px;
  }
}
.home-news .news-list {
  width: 75%;
}
.home-news .news-list li a:hover {
  background-color: #FFFFFF;
}
@media screen and (max-width: 1080px) {
  .home-news .news-list {
    width: 100%;
  }
}

/*-----------------------------------------------------------
 products home
-----------------------------------------------------------*/
.products hgroup {
  text-shadow: 3px 2px 4px rgba(0, 33, 119, 0.8);
}
.products hgroup .h-head {
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.products hgroup .h-head span {
  color: #fff47b;
  display: inline-block;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .products hgroup .h-head span {
    margin-right: 0;
  }
}
.products hgroup h1 {
  font-weight: normal;
  font-size: 3.4em;
}
.products .tab-area {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .products .tab-area {
    margin-bottom: 50px;
  }
}
.products .pro-home .tab-content {
  margin-bottom: 50px;
}
.products .pro-home .tab-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.products .pro-home .tab-content li {
  width: calc(16.6666666667% - 25px);
}
@media screen and (max-width: 768px) {
  .products .pro-home .tab-content li {
    width: calc(33.3333333333% - 20px);
  }
}
.products .pro-home .tab-content li a {
  display: block;
  color: #666666;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .products .pro-home .tab-content li a {
    font-size: 1rem;
  }
}
.products .pro-home .tab-content li a img {
  display: block;
  height: 80px;
  margin: 0 auto 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .products .pro-home .tab-content li a img {
    height: 60px;
  }
}
.products .pro-home .tab-content li a:hover {
  text-decoration: none;
}
.products .pro-home .tab-content li a:hover img {
  transform: scale(1.05);
}

.pro-tech, .pro-tech-detail {
  background: url(../img/products/tech-bg.png) center center repeat;
  padding: 50px 0;
  width: 100%;
}
.pro-tech h2, .pro-tech-detail h2 {
  color: #FFFFFF;
}
.pro-tech .list-flex-3col li a, .pro-tech-detail .list-flex-3col li a {
  display: block;
  background-color: #FFFFFF;
  text-align: center;
  color: #666666;
  border-radius: 5px;
}
.pro-tech .list-flex-3col li a figure, .pro-tech-detail .list-flex-3col li a figure {
  width: 100%;
  aspect-ratio: 280/130;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.pro-tech .list-flex-3col li a figure img, .pro-tech-detail .list-flex-3col li a figure img {
  width: 100%;
  transition: all 0.3s;
}
.pro-tech .list-flex-3col li a p, .pro-tech-detail .list-flex-3col li a p {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .pro-tech .list-flex-3col li a p, .pro-tech-detail .list-flex-3col li a p {
    font-size: 1em;
  }
}
.pro-tech .list-flex-3col li a:hover, .pro-tech-detail .list-flex-3col li a:hover {
  text-decoration: none;
}
.pro-tech .list-flex-3col li a:hover img, .pro-tech-detail .list-flex-3col li a:hover img {
  transform: scale(1.1);
}
.pro-tech .list-flex-3col li img, .pro-tech-detail .list-flex-3col li img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pro-tech .list-flex-3col li, .pro-tech-detail .list-flex-3col li {
    width: 80%;
    margin: 0 10%;
  }
}

/*-----------------------------------------------------------
 products detail
-----------------------------------------------------------*/
.products .main-bg__inner nav {
  position: absolute;
  right: 0;
  bottom: 0;
}
.products .main-bg__inner nav ul {
  display: flex;
  align-items: end;
  gap: 10px;
}
.products .main-bg__inner nav ul li {
  display: inline-block;
  margin: 0;
}
.products .main-bg__inner nav ul li a {
  display: block;
  padding: 5px 20px;
  background-color: #F0EDEB;
  border-radius: 10px 10px 0 0;
}
@media print, screen and (min-width: 769px) {
  .products .main-bg__inner nav ul li a:hover {
    padding-bottom: 10px;
  }
}

.pro-2col {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.pro-2col > div {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  .pro-2col > div {
    width: 100%;
  }
}
.pro-2col > div h3 {
  font-size: 1.6rem;
}
.pro-2col > div img {
  width: 100%;
  padding: 30px;
}
.pro-2col > div p.ind01 {
  margin-bottom: 0;
}

.pro-usefulness {
  background: url(../img/products/features-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 30px 0;
  width: 100%;
  margin-bottom: 50px;
}
.pro-usefulness h2 {
  text-align: center;
  margin-bottom: 30px;
}

.pro-white-box {
  background-color: #FFFFFF;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .pro-white-box {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .pro-white-box .flex-2col > div, .pro-white-box .flex-2to1 > div {
    margin: 0;
  }
  .pro-white-box .flex-2col > div p, .pro-white-box .flex-2to1 > div p {
    margin: 0;
  }
}
.pro-white-box .flex-2col .table-small, .pro-white-box .flex-2to1 .table-small {
  margin-bottom: 0;
}
.pro-white-box .flex-2col .table-small th, .pro-white-box .flex-2to1 .table-small th {
  white-space: nowrap;
}
.pro-white-box .flex-2col .table-small td, .pro-white-box .flex-2to1 .table-small td {
  line-height: 1.6;
}
.pro-white-box ul.list-disc {
  margin-bottom: 1em;
}
.pro-white-box ul.list-disc li {
  margin-bottom: 0;
}

.pro-features {
  padding: 30px 0;
  width: 100%;
}
.pro-features h2 {
  text-align: center;
  margin-bottom: 30px;
}
.pro-features .wrap-std > div:not(:last-child) {
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 30px;
}

.pro-features-ttl {
  position: relative;
  width: 100%;
}
.pro-features-ttl span {
  display: inline-block;
  padding: 5px 5px 5px 25px;
  font-size: 0.8em;
  color: #999999;
  font-weight: normal;
}
.pro-features-ttl .icon-01 {
  background-image: url(../svg/products/pro-icon-01.svg);
  background-position: left top 11px;
  background-repeat: no-repeat;
  background-size: 1em;
}
.pro-features-ttl .icon-02 {
  background-image: url(../svg/products/pro-icon-02.svg);
  background-position: left top 11px;
  background-repeat: no-repeat;
  background-size: 1em;
}
.pro-features-ttl .icon-03 {
  background-image: url(../svg/products/pro-icon-03.svg);
  background-position: left top 11px;
  background-repeat: no-repeat;
  background-size: 1em;
}

.pro-features-fb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pro-features-fb h4 {
  font-size: 1.6em;
  line-height: 1.4;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .pro-features-fb h4 {
    width: 100%;
    font-size: 1.2em;
    margin-bottom: 20px;
  }
}
.pro-features-fb ul {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .pro-features-fb ul {
    width: 100%;
  }
}
.pro-features-fb ul li {
  padding-left: 1.5em;
  position: relative;
}
.pro-features-fb ul li::before {
  content: "●";
  color: #1d7fcf;
  position: absolute;
  left: 0;
  top: 0;
}

.pro-dl-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .pro-dl-btn {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.pro-dl-btn li {
  width: calc(50% - 15px);
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .pro-dl-btn li {
    width: 100%;
  }
}

.pro-tech-detail h3 {
  color: #1d7fcf;
  margin-bottom: 30px;
}
.pro-tech-detail .pro-white-box > div:not(:last-child) {
  border: none;
}
.pro-tech-detail .pro-white-box ol li h4 {
  font-size: 1.6rem;
  color: #1d7fcf;
}
.pro-tech-detail .pro-white-box ol li p {
  color: #333333;
  font-weight: normal;
}
.pro-tech-detail .pro-white-box ol.ol-num2 {
  list-style: none;
  counter-reset: number;
}
.pro-tech-detail .pro-white-box ol.ol-num2 li {
  position: relative;
  padding-left: 0.3em;
}
.pro-tech-detail .pro-white-box ol.ol-num2 li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: -1.3em;
  top: 0.3em;
  width: 1.4em;
  height: 1.4em;
  background-color: #1d7fcf;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

/*-----------------------------------------------------------
 quick navi
-----------------------------------------------------------*/
.navi-top-list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}
@media screen and (max-width: 768px) {
  .navi-top-list {
    gap: 30px;
  }
}
.navi-top-list > li {
  width: calc(33.3333333333% - 30px);
}
@media screen and (max-width: 768px) {
  .navi-top-list > li {
    width: calc(50% - 15px);
  }
}
.navi-top-list > li h3 {
  font-size: 1.2em;
  padding-bottom: 10px;
  border-bottom: 1px solid #D3D3D3;
}
.navi-top-list > li h3 img {
  max-width: 36px;
  max-height: 36px;
  margin-right: 20px;
}
.navi-top-list > li ul li a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #D3D3D3;
  color: #666666;
  line-height: 1.2;
  position: relative;
}
.navi-top-list > li ul li a span {
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .navi-top-list > li ul li a {
    font-size: 0.8em;
  }
}
.navi-top-list > li ul li a:hover {
  background-color: #F4F2EF;
  text-decoration: none;
}
.navi-top-list > li ul li a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: #1d7fcf #1d7fcf transparent transparent;
  right: 5px;
  top: calc(50% - 5px);
  transform: rotate(45deg);
}

.quick-navi .tab-area {
  margin-bottom: 40px;
}
.quick-navi h2.h-center {
  margin-bottom: 30px;
}

.navi-list ul.active {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.navi-list ul.active li {
  text-align: center;
  width: calc(25% - 30px);
}
@media screen and (max-width: 768px) {
  .navi-list ul.active li {
    width: calc(50% - 20px);
  }
}
.navi-list ul.active li img {
  width: calc(100% - 20px);
  margin: 10px;
  transition: all 0.3s;
}
.navi-list ul.active li a {
  color: #666666;
}
.navi-list ul.active li a:hover {
  text-decoration: none;
}
.navi-list ul.active li a:hover img {
  transform: scale(1.05);
}

.quick-nav-box {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .quick-nav-box {
    background-image: linear-gradient(90deg, #FFFFFF 50%, #F4F2EF 50%);
  }
}
.quick-nav-box {
  position: relative;
}
.quick-nav-box .quick-nav-select {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .quick-nav-box .quick-nav-select .ac-target {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
  }
}

.quick-ac-main-tri {
  position: relative;
}
.quick-ac-main-tri button {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .quick-ac-main-tri button {
    font-size: 1.2rem;
  }
}
.quick-ac-main-tri button:hover {
  background-color: #F4F2EF;
}
.quick-ac-main-tri button span {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.quick-ac-main-tri button span img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.quick-ac-main-tri::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 20px;
  width: 15px;
  height: 15px;
  border: 2px solid;
  border-color: transparent #D3D3D3 #D3D3D3 transparent;
  transform: rotate(45deg);
}
.quick-ac-main-tri.ac-active::after {
  top: 30px;
  transform: rotate(-135deg);
}

.quick-ac-main-tar {
  padding: 30px;
}
.quick-ac-main-tar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.quick-ac-main-tar ul li {
  text-align: center;
  width: calc(25% - 30px);
}
@media screen and (max-width: 768px) {
  .quick-ac-main-tar ul li {
    width: calc(50% - 20px);
  }
}
.quick-ac-main-tar ul li h3 {
  font-size: 1.4rem;
  line-height: 1.2;
}
.quick-ac-main-tar ul li img {
  width: calc(100% - 20px);
  margin: 10px;
  transition: all 0.3s;
}
.quick-ac-main-tar ul li p {
  font-size: 1.2rem;
  margin: 10px 0;
  padding: 10px 0;
  border: 1px solid;
  border-color: #D3D3D3 transparent;
  text-align: left;
  line-height: 1.2;
}
.quick-ac-main-tar ul li a:hover {
  text-decoration: none;
}
.quick-ac-main-tar ul li a:hover img {
  transform: scale(1.05);
}
.quick-ac-main-tar ul li a.btn-02-s {
  font-size: 1.2rem;
  margin: 5px;
}

/*-----------------------------------------------------------
 technology home
-----------------------------------------------------------*/
.card-img-lr {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  color: #666666;
}
.card-img-lr figure {
  width: 40%;
  border-radius: 6px;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.card-img-lr figure img {
  transition: all 0.3s;
}
.card-img-lr div {
  width: calc(60% - 25px);
}
.card-img-lr div p {
  font-size: 1.2rem;
}
.card-img-lr:hover {
  text-decoration: none;
}
.card-img-lr:hover figure img {
  transform: scale(1.05);
}

.solution {
  background-color: #F4F2EF;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .solution {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}
.solution .list-flex-4col li {
  background-color: #FFFFFF;
  border-radius: 5px;
}
.solution .list-flex-4col li a {
  height: 100%;
  border-radius: 5px;
  position: relative;
}
.solution .list-flex-4col li a figure {
  border-radius: 5px 5px 0 0;
}
.solution .list-flex-4col li a div {
  padding: 20px;
}
.solution .list-flex-4col li a h3 {
  font-size: 1.2em;
}
.solution .list-flex-4col li a p {
  font-size: 1em;
  text-align: left;
}
.solution .list-flex-4col li a span {
  font-size: 0.8em;
  display: inline-block;
  background-color: #F4F2EF;
  width: calc(100% - 2em);
  padding: 0.2em 1em;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  bottom: 1em;
  transform: translateX(-50%);
}

/*-----------------------------------------------------------
 pump and valve
-----------------------------------------------------------*/
.tech-bg-gr {
  background: url(../img/technology/tech-bg-gr.png) center center repeat;
  padding: 0 0 50px;
  width: 100%;
}
.tech-bg-gr .breadcrumbs ol li, .tech-bg-gr .breadcrumbs ol li a {
  color: #F4F2EF;
}
.tech-bg-gr section > h2 {
  color: #fff;
}
.tech-bg-gr span.tx-bg-org {
  color: #f8e6c3;
  letter-spacing: -3px;
  display: inline-block;
  padding-right: 4px;
}

.table-stainless {
  border-left: 1px solid #D3D3D3;
  border-top: 1px solid #D3D3D3;
  min-width: 100%;
}
.table-stainless tr th, .table-stainless tr td {
  font-size: 0.86em;
}
.table-stainless thead th {
  background-color: #D3D3D3;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 5px;
}
.table-stainless thead th.w40p {
  width: 40%;
}
.table-stainless tbody {
  -webkit-text-size-adjust: 100%;
}
.table-stainless tbody tr th {
  background-color: #F0EDEB;
}
.table-stainless tbody tr th.ltg {
  background-color: #f9f9f9;
}
.table-stainless tbody tr th.org {
  background-color: #f8e6c3;
}
.table-stainless tbody tr th, .table-stainless tbody tr td {
  vertical-align: middle;
  font-size: 0.86em;
  padding: 5px;
  border-right: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
}
.table-stainless tbody tr th.vrl {
  background-color: #D3D3D3;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  min-width: 1em;
}
.table-stainless tbody tr th.vrl span {
  display: inline-block;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .table-stainless {
    display: block;
    white-space: nowrap;
    overflow-x: scroll;
    border-left: none;
  }
  .table-stainless::after {
    display: block;
    content: "→ SCROLL";
    width: 100%;
    text-align: right;
    font-size: 0.7rem;
    color: #999999;
  }
}

.table-st2 {
  width: 60%;
}
.table-st2 thead th {
  border-right: 1px solid #fff;
}
.table-st2 tbody td {
  border-right: 1px solid #D3D3D3;
}
.table-st2 tr th, .table-st2 tr td {
  text-align: center;
  padding: 5px;
  font-size: 0.86em;
}
.table-st2 tr th {
  width: 16.6666666667%;
}
@media screen and (max-width: 768px) {
  .table-st2 {
    width: 100%;
  }
}

/*-----------------------------------------------------------
 solution detail
-----------------------------------------------------------*/
.solutions h1 {
  line-height: 1.2;
}
.solutions h1 span {
  font-size: 1.8rem;
}
.solutions h3 span {
  font-size: 1.6em;
  line-height: 1.2;
}
.solutions .solution-read {
  position: relative;
}
@media screen and (max-width: 768px) {
  .solutions .solution-read {
    padding: 15px;
  }
}
.solutions .solution-read > p, .solutions .solution-read > div {
  width: 60%;
  min-height: 8em;
}
@media screen and (max-width: 768px) {
  .solutions .solution-read > p, .solutions .solution-read > div {
    width: 100%;
  }
}
.solutions .solution-read figure {
  width: 30%;
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 30;
}
.solutions .solution-read figure img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .solutions .solution-read figure {
    width: 70%;
    position: static;
    right: auto;
    margin: 0 15% 15px;
  }
}
.solutions .solution-case {
  background-color: #F4F2EF;
  padding-bottom: 10px;
}
.solutions .solution-case h2 {
  font-size: 3.6em;
  color: #1d7fcf;
}
.solutions .solution-case h2 span {
  font-size: 0.4em;
}
@media screen and (max-width: 768px) {
  .solutions .solution-case h2 {
    font-size: 3em;
  }
}
@media screen and (max-width: 768px) {
  .solutions .solution-top {
    gap: 0;
  }
}
.solutions .solution-tbox p {
  font-size: 1.6rem;
}
.solutions .solution-tbox ul li {
  font-weight: bold;
  color: #1d7fcf;
  padding-left: 1em;
  position: relative;
  font-size: 1.6rem;
}
.solutions .solution-tbox ul li::before {
  content: "●";
  font-size: 0.7em;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.solutions .img-mask {
  border-radius: 0 150px 0 150px;
  overflow: hidden;
}
.solutions .img-mask img {
  width: 100%;
}
.solutions .solution-btm {
  position: relative;
  padding-top: 50px;
}
.solutions .solution-btm::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  transform: rotate(45deg);
  left: calc(50% - 53px);
  top: -53px;
  background-color: #F4F2EF;
}
.solutions .solution-btm h3 {
  display: inline-block;
  margin: 0 auto;
  padding: 25px 40px;
  background: url(../svg/solution/check-mark.svg) right top no-repeat;
  background-size: 80px;
}
.solutions .solution-btm h4 {
  font-size: 1.6em;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #999999;
}
.solutions .bg-white {
  background-color: #fff;
  padding: 50px;
  border: 1px solid #D3D3D3;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .solutions .bg-white {
    padding: 25px;
    margin-bottom: 40px;
  }
}
.solutions .bg-white .flex-1to2, .solutions .bg-white .flex-2to1, .solutions .bg-white .flex-2col {
  align-items: center;
}
.solutions .bg-white .flex-1to2 figcaption, .solutions .bg-white .flex-2to1 figcaption, .solutions .bg-white .flex-2col figcaption {
  text-align: center;
}
.solutions .bg-white .list-flex-4col li a figure {
  aspect-ratio: auto;
  border-radius: 0;
}
.solutions .bg-white .list-flex-4col li a figure img {
  transform: scale(0.94);
}
.solutions .bg-white .list-flex-4col li a:hover img {
  transform: scale(1);
}
.solutions .solution-achieve ul {
  max-width: 1220px;
  margin: 0 auto;
}
.solutions .solution-achieve ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #F4F2EF;
  padding: 40px;
  margin-bottom: 40px;
}
.solutions .solution-achieve ul li > div h3 {
  margin-bottom: 20px;
}
.solutions .solution-achieve ul li > figure img {
  width: 100%;
}
.solutions .solution-achieve ul li > figure figcaption {
  font-size: 0.8em;
}
.solutions .solution-achieve ul li.f-2to1 > div {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .solutions .solution-achieve ul li.f-2to1 > div {
    width: 100%;
  }
}
.solutions .solution-achieve ul li.f-2to1 > figure {
  width: calc(40% - 40px);
}
@media screen and (max-width: 768px) {
  .solutions .solution-achieve ul li.f-2to1 > figure {
    width: 100%;
  }
}
.solutions .solution-achieve ul li.f-3to1 > div {
  width: calc(75% - 40px);
}
@media screen and (max-width: 768px) {
  .solutions .solution-achieve ul li.f-3to1 > div {
    width: 100%;
  }
}
.solutions .solution-achieve ul li.f-3to1 > figure {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .solutions .solution-achieve ul li.f-3to1 > figure {
    width: 100%;
  }
}
.solutions .solution-achieve ul li.f-2to1to1 > div {
  width: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  .solutions .solution-achieve ul li.f-2to1to1 > div {
    width: 100%;
  }
}
.solutions .solution-achieve ul li.f-2to1to1 > figure {
  width: calc(25% - 20px);
}
@media screen and (max-width: 768px) {
  .solutions .solution-achieve ul li.f-2to1to1 > figure {
    width: 100%;
  }
}

/*-----------------------------------------------------------
 process
-----------------------------------------------------------*/
.process-title {
  margin-top: 2em;
  width: 100%;
  background: url(../img/technology/process/main.jpg) left top no-repeat;
  background-size: 50%;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .process-title {
    margin-top: 0;
    background-size: 70%;
    padding: 200px 0 0;
  }
}
.process-title > div {
  width: 65%;
  margin-left: 35%;
}
@media screen and (max-width: 768px) {
  .process-title > div {
    width: 85%;
    margin-left: 15%;
  }
}
.process-title > div p {
  padding: 50px;
  background-color: #1d7fcf;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .process-title > div p {
    padding: 25px;
  }
}

.process-flow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.process-flow li {
  display: flex;
  gap: 40px;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .process-flow li {
    gap: 20px;
  }
}
.process-flow .process-num {
  position: relative;
}
.process-flow .process-num span {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  background-color: #1d7fcf;
  border-radius: 40px;
  justify-content: center;
  color: #fff;
  font-size: 1.6em;
}
@media screen and (max-width: 768px) {
  .process-flow .process-num span {
    width: 50px;
    height: 50px;
    border-radius: 50px;
  }
}
.process-flow .process-num::before {
  content: "";
  width: 1px;
  height: calc(100% - 100px);
  background-color: #999999;
  position: absolute;
  left: 40px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .process-flow .process-num::before {
    height: calc(100% - 60px);
    left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .process-flow .flex-2to1 {
    gap: 10px;
  }
}
.process-flow h3 {
  padding: 1em 0;
}
@media screen and (max-width: 768px) {
  .process-flow h3 {
    padding: 0.6em 0;
  }
}

/*-----------------------------------------------------------
 movie
-----------------------------------------------------------*/
.movie-box {
  align-items: flex-end;
  padding: 3em;
}
@media screen and (max-width: 768px) {
  .movie-box {
    padding: 1.5em;
    gap: 0;
  }
}
.movie-box .youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.movie-box .youtube iframe {
  width: 100%;
  height: 100%;
}
.movie-box h3 {
  margin-bottom: 1em;
}
.movie-box:nth-child(2n) {
  background-color: #F4F2EF;
}

/*-----------------------------------------------------------
 recruit home
-----------------------------------------------------------*/
/* hero slider
-----------------------------------------------------------*/
.hero-slider {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .hero-slider {
    padding-top: 0;
  }
}
.hero-slider .swiper {
  position: relative;
}
.hero-slider .swiper h1 {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2vw;
  color: #fff;
  background-color: #04447C;
  padding: 10px 30px 10px 50px;
  z-index: 1000;
  border-radius: 0 0 0 60px;
}
@media screen and (max-width: 768px) {
  .hero-slider .swiper h1 {
    padding: 10px 24px 10px 30px;
    border-radius: 0 0 0 30px;
    font-size: 3vw;
  }
}
.hero-slider .swiper .entry-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  font-weight: bold;
  background-color: #1d7fcf;
  color: #fff;
  border-radius: 60px;
  z-index: 1001;
}
.hero-slider .swiper .entry-btn:hover {
  background-color: #38b383;
}
@media screen and (max-width: 768px) {
  .hero-slider .swiper .entry-btn {
    width: 80px;
    height: 80px;
    font-size: 1.1em;
    right: -5px;
    bottom: -5px;
  }
}
.hero-slider .swiper.paused .slide-title, .hero-slider .swiper.paused .slide-text, .hero-slider .swiper.paused .slide-link, .hero-slider .swiper.paused .slide-media img {
  animation: none;
  transform: none;
  transition: unset;
}
.hero-slider .swiper.paused .slide-media img {
  animation-play-state: paused;
}
.hero-slider .slide-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slider .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 5s 1s linear;
  transform: translateY(-0.5%) scale(1.01);
}
.hero-slider .slide {
  display: grid;
  place-content: center;
  margin-top: 80px;
  height: 70vh;
  padding: 0 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-slider .slide {
    margin-top: 54px;
    height: calc(70vh - 54px);
    padding: 0 2rem;
  }
}
.hero-slider .slide-title,
.hero-slider .slide-text,
.hero-slider .slide-link {
  animation: 2s cubic-bezier(0.2, 1, 0.2, 1) both;
  opacity: 1;
  font-weight: bold;
  color: #fff;
}
.hero-slider .slide-title {
  font-size: 3rem;
  line-height: 1.6;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  font-weight: normal;
}
.hero-slider .slide-title span {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .hero-slider .slide-title {
    width: 100%;
  }
  .hero-slider .slide-title img {
    width: 100%;
  }
  .hero-slider .slide-title {
    font-size: 1.5rem;
  }
  .hero-slider .slide-title span {
    font-size: 1rem;
  }
}
.hero-slider .slide-text {
  font-size: 1.2rem;
  margin: 3rem 0;
  animation-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .hero-slider .slide-text {
    margin: 2rem 0;
    font-size: 1rem;
  }
}
.hero-slider .slide-link {
  animation-delay: 0.4s;
}
.hero-slider .slide-button {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  color: #fff;
}
.hero-slider .slide-button::before {
  display: inline-block;
  width: 6rem;
  height: 1px;
  margin: -2px 1.6rem 0 0;
  content: "";
  vertical-align: middle;
  background-color: currentColor;
}
.hero-slider .swiper_pause {
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 20px;
  bottom: 20px;
  z-index: 120;
}
.hero-slider .swiper_pause::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../img/home/swiper-pause.svg") center center/contain no-repeat;
}
.hero-slider .swiper_pause.paused::after {
  background-image: url("../img/home/swiper-play.svg");
}
.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  gap: 1rem;
  margin: auto;
  z-index: 120;
}
.hero-slider .swiper-pagination-bullet {
  display: block;
  height: 8px;
  width: 8px;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #ddd;
  border-radius: 5px;
}
.hero-slider .swiper-pagination-bullet-active {
  width: 24px;
  background-color: #1d7fcf;
}
.hero-slider .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.hero-slider .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}
.hero-slider .swiper-fade .swiper-slide.swiper-slide-active {
  pointer-events: auto;
}
.hero-slider .swiper-slide[class*=-active] .slide-media img {
  transition-delay: 0s;
}
.hero-slider .swiper-slide.anm-started .slide-title, .hero-slider .swiper-slide.anm-started .slide-text, .hero-slider .swiper-slide.anm-started .slide-link {
  animation-name: hero-fadeIn;
}
.hero-slider .swiper-slide.anm-finished .slide-title, .hero-slider .swiper-slide.anm-finished .slide-text, .hero-slider .swiper-slide.anm-finished .slide-link {
  animation-name: hero-fadeOut;
}

.shadow-w {
  filter: drop-shadow(0px 0px 5px rgb(255, 255, 255));
}

.shadow-bk {
  filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.7));
}

@keyframes hero-fadeIn {
  0% {
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes hero-fadeOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-6rem);
    opacity: 0;
  }
}
@-webkit-keyframes hero-fadeIn {
  0% {
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes hero-fadeOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-6rem);
    opacity: 0;
  }
}
.rec-nav {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  padding: 30px 0;
  align-items: center;
}
.rec-nav h1 {
  width: 20%;
  font-size: 2em;
  color: #666666;
}
@media screen and (max-width: 768px) {
  .rec-nav h1 {
    width: 100%;
    text-align: center;
  }
}
.rec-nav ul {
  width: 80%;
  display: flex;
  gap: 3em;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .rec-nav ul {
    display: none;
  }
}
.rec-nav ul li {
  margin: 0;
}
.rec-nav ul li a {
  color: #999999;
}
.rec-nav ul li a:hover {
  color: #000;
}

/* home main
-----------------------------------------------------------*/
.recruit-home h2 {
  font-weight: normal;
  font-size: 1em;
  line-height: 1.2;
  margin-bottom: 2em;
}
.recruit-home h2 span {
  font-size: 3.6em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recruit-home h2 span {
    font-size: 2.6em;
  }
}
.recruit-home h3 {
  font-size: 2.4em;
}

/* MESSAGE
-----------------------------------------*/
.rec-home-sec01 {
  width: 100%;
  background: #04447C url(../img/recruit/home/message-bg.jpg) right top no-repeat;
  background-size: 50%;
  padding-bottom: 50px;
}
.rec-home-sec01 h2, .rec-home-sec01 h3, .rec-home-sec01 p {
  color: #fff;
}
@media screen and (max-width: 1080px) {
  .rec-home-sec01 {
    background: #04447C url(../img/recruit/home/message-bg-tab.jpg) right top no-repeat;
    background-size: 50%;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .rec-home-sec01 {
    background: #04447C url(../img/recruit/home/message-bg-sp.jpg) right bottom no-repeat;
    background-size: 100%;
    padding-bottom: 200px;
  }
  .rec-home-sec01 .wrap-std, .rec-home-sec01 .entry-wrap {
    background: #04447C;
  }
}
.rec-home-sec01 .sec-01-txt {
  width: 50%;
}
@media screen and (max-width: 1080px) {
  .rec-home-sec01 .sec-01-txt {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .rec-home-sec01 .sec-01-txt {
    width: 100%;
  }
  .rec-home-sec01 .sec-01-txt h3 {
    font-size: 1.6em;
  }
}
.rec-home-sec01 .sec-01-txt p {
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

/* MISSION
-----------------------------------------*/
.rec-home-sec02 {
  width: 100%;
  background-color: #F4F2EF;
  background-image: url(../img/recruit/home/mission-bg-top.png), url(../img/recruit/home/mission-bg-btm.png);
  background-position: right top, left bottom;
  background-repeat: no-repeat;
  background-size: 40%, 40%;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .rec-home-sec02 {
    background-size: 70%, 80%;
    padding: 70px 0 40px;
  }
  .rec-home-sec02 h3 {
    font-size: 1.6em;
  }
}

.rec-slider {
  width: 100%;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.rec-slider .swiper {
  background-color: #fff;
  border-radius: 0 50px 0 50px;
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper {
    width: calc(100% - 60px);
  }
}
.rec-slider .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-controller {
    gap: 1rem;
  }
}
.rec-slider .swiper-pagination {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-pagination {
    gap: 0.5rem;
  }
}
.rec-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  cursor: pointer;
  transition: 0.5s;
  vertical-align: bottom;
  background-color: #666666;
  border-radius: 6px;
}
.rec-slider .swiper-pagination-bullet-active {
  background-color: #1d7fcf;
}
.rec-slider .swiper-button-prev,
.rec-slider .swiper-button-next {
  position: absolute;
  top: calc(50% - 2.74rem);
  margin: 0;
  width: 2.2rem;
  height: 2.2rem;
  z-index: 50;
  cursor: pointer;
  content: "";
  border: 2px solid;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-button-prev,
  .rec-slider .swiper-button-next {
    width: 2rem;
    height: 2rem;
  }
}
.rec-slider .swiper-button-prev {
  left: 2rem;
  border-color: transparent transparent #666666 #666666;
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-button-prev {
    left: 0.6rem;
  }
}
.rec-slider .swiper-button-next {
  right: 2rem;
  border-color: #666666 #666666 transparent transparent;
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-button-next {
    right: 0.6rem;
  }
}
.rec-slider .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
.rec-slider .swiper-wrapper .swiper-slide {
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-wrapper .swiper-slide {
    padding: 25px;
    gap: 0;
  }
}
.rec-slider .swiper-wrapper .swiper-slide figure {
  width: 35%;
}
.rec-slider .swiper-wrapper .swiper-slide figure img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-wrapper .swiper-slide figure {
    width: 100%;
  }
  .rec-slider .swiper-wrapper .swiper-slide figure img {
    width: 100%;
    margin: 0 auto;
  }
}
.rec-slider .swiper-wrapper .swiper-slide > div {
  width: calc(65% - 30px);
}
@media screen and (max-width: 768px) {
  .rec-slider .swiper-wrapper .swiper-slide > div {
    width: 100%;
  }
}
.rec-slider .swiper-wrapper .swiper-slide > div h4 {
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

/* WORKS
-----------------------------------------*/
.rec-home-sec03 {
  background: #04447C url(../img/recruit/home/works-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.rec-home-sec03 h2, .rec-home-sec03 h3, .rec-home-sec03 a, .rec-home-sec03 p {
  color: #fff;
}
.rec-home-sec03 .flex-1to2 {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rec-home-sec03 .flex-1to2 {
    gap: 0;
  }
}
.rec-home-sec03 ul {
  border-top: 1px solid #fff;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .rec-home-sec03 ul {
    width: 70%;
  }
}
.rec-home-sec03 ul li {
  border-bottom: 1px solid #fff;
  margin-bottom: 0;
}
.rec-home-sec03 ul li a {
  display: block;
  position: relative;
  padding: 10px;
}
.rec-home-sec03 ul li a:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.3);
}
.rec-home-sec03 ul li a::before, .rec-home-sec03 ul li a::after {
  content: "";
  position: absolute;
  right: 19px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.rec-home-sec03 ul li a::before {
  border-radius: 15px;
  border: 1px solid #fff;
}
.rec-home-sec03 ul li a::after {
  background: url(../svg/common/arrow-30r.svg) center center no-repeat;
}
.rec-home-sec03 ul li a:hover::before, .rec-home-sec03 ul li a:hover::after {
  right: 9px;
}
.rec-home-sec03 ul li a:hover::before {
  border-color: #1d7fcf;
  background-color: #1d7fcf;
}

/* INTERVIEW
-----------------------------------------*/
.rec-home-sec04 {
  width: 100%;
  background-color: #fff;
  background-image: url(../img/recruit/home/interview-bg-top.png), url(../img/recruit/home/interview-bg-btm.png);
  background-position: left top, right bottom;
  background-repeat: no-repeat;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .rec-home-sec04 {
    background-size: 40%, 40%;
  }
}
.rec-home-sec04 .flex-1to2 {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rec-home-sec04 .flex-1to2 {
    gap: 0;
  }
}
.rec-home-sec04 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.rec-home-sec04 ul li {
  width: calc(20% - 20px);
  position: relative;
  overflow: hidden;
  border-radius: 0 40px 0 40px;
}
.rec-home-sec04 ul li a {
  width: 100%;
}
.rec-home-sec04 ul li img {
  width: 100%;
  transition: all 0.3s;
}
.rec-home-sec04 ul li h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 30%, transparent);
  padding: 40px 20px 20px;
  width: 100%;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .rec-home-sec04 ul li h3 {
    font-size: 0.8em;
  }
}
.rec-home-sec04 ul li a:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .rec-home-sec04 ul {
    gap: 30px;
  }
  .rec-home-sec04 ul li {
    width: calc(50% - 15px);
  }
}

/* ENTRY
-----------------------------------------*/
.rec-home-sec05 {
  background: #04447C url(../img/recruit/home/entry-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.rec-home-sec05 h2, .rec-home-sec05 h3, .rec-home-sec05 a, .rec-home-sec05 p {
  color: #fff;
}
.rec-home-sec05 .flex-1to2 {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rec-home-sec05 .flex-1to2 {
    gap: 0;
  }
}
.rec-home-sec05 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.rec-home-sec05 ul li {
  width: calc(33.3333333333% - 2px);
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .rec-home-sec05 ul li {
    width: 100%;
  }
}
.rec-home-sec05 ul li a {
  display: block;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
}
@media screen and (max-width: 768px) {
  .rec-home-sec05 ul li a {
    padding: 20px;
  }
}
.rec-home-sec05 ul li a:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.7);
}
.rec-home-sec05 ul li a:hover h3 {
  color: #000;
}
.rec-home-sec05 ul li a::before, .rec-home-sec05 ul li a::after {
  content: "";
  position: absolute;
  right: 19px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.rec-home-sec05 ul li a::before {
  border-radius: 15px;
  border: 1px solid #fff;
}
.rec-home-sec05 ul li a::after {
  background: url(../svg/common/arrow-30r.svg) center center no-repeat;
}
.rec-home-sec05 ul li a:hover::before, .rec-home-sec05 ul li a:hover::after {
  right: 9px;
}
.rec-home-sec05 ul li a:hover::before {
  border-color: #1d7fcf;
  background-color: #1d7fcf;
}
.rec-home-sec05 ul li a h3 {
  font-size: 1.6rem;
  text-align: center;
}
.rec-home-sec05 ul li span {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1d7fcf;
  color: #fff;
  padding: 5px 20px;
  border-radius: 0 0 20px 0;
  line-height: 1;
  font-size: 1.4rem;
}

/*-----------------------------------------------------------
 recruit all
-----------------------------------------------------------*/
.btn-rec {
  padding: 15px 70px 15px 25px;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  color: #fff;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .btn-rec {
    width: 100%;
  }
}
.btn-rec:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.9);
}
.btn-rec::before, .btn-rec::after {
  content: "";
  position: absolute;
  right: 19px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.btn-rec::before {
  border-radius: 15px;
  border: 1px solid #fff;
}
.btn-rec::after {
  background: url(../svg/common/arrow-30r.svg) center center no-repeat;
}
.btn-rec:hover::before, .btn-rec:hover::after {
  right: 9px;
}
.btn-rec:hover::before {
  border-color: #1d7fcf;
  background-color: #1d7fcf;
}

ul.rec-btm-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
}
ul.rec-btm-btn li {
  width: calc(33.3333333333% - 2px);
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  ul.rec-btm-btn li {
    width: 100%;
  }
}
ul.rec-btm-btn li a {
  display: block;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
}
@media screen and (max-width: 768px) {
  ul.rec-btm-btn li a {
    padding: 20px;
  }
}
ul.rec-btm-btn li a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.9);
}
ul.rec-btm-btn li a::before, ul.rec-btm-btn li a::after {
  content: "";
  position: absolute;
  right: 19px;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
ul.rec-btm-btn li a::before {
  border-radius: 15px;
  border: 1px solid #fff;
}
ul.rec-btm-btn li a::after {
  background: url(../svg/common/arrow-30r.svg) center center no-repeat;
}
ul.rec-btm-btn li a:hover::before, ul.rec-btm-btn li a:hover::after {
  right: 9px;
}
ul.rec-btm-btn li a:hover::before {
  border-color: #1d7fcf;
  background-color: #1d7fcf;
}
ul.rec-btm-btn li a h3 {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
}

/*-----------------------------------------------------------
 recruit works
-----------------------------------------------------------*/
.recruit-works .main-bg {
  background-image: url(../img/recruit/works/works-bg.jpg);
  background-position: center center;
}
.recruit-works .main-bg__inner h1 {
  font-size: 1.4em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .recruit-works .main-bg__inner h1 {
    font-size: 1.2em;
  }
}
.recruit-works .main-bg__inner h1 span {
  font-size: 2.8em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recruit-works .main-bg__inner h1 span {
    font-size: 2.2em;
  }
}
.recruit-works .rec-works-sec01 {
  background: url(../img/recruit/works/works-sec01-bg.png) right bottom no-repeat;
  padding-bottom: 30px;
}
.recruit-works .rec-works-sec01 h2 {
  font-size: 2.8em;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .recruit-works .rec-works-sec01 h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
  }
}
.recruit-works .rec-works-sec02 {
  background: #051568 url(../img/recruit/works/works-sec02-bg.jpg) top center no-repeat;
  background-size: 100%;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .recruit-works .rec-works-sec02 {
    padding: 50px 0 10px;
  }
}
.recruit-works .rec-works-sec02 .flex-2col {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruit-works .rec-works-sec02 .flex-2col {
    gap: 0;
  }
}
.recruit-works .rec-works-sec02 h2, .recruit-works .rec-works-sec02 p {
  color: #fff;
}
.recruit-works .rec-works-sec02 h3.h-border-lb {
  color: #fff;
}
.recruit-works .rec-works-sec02 ul.works-flow li {
  padding: 10px 30px;
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
  background-color: #eff9ff;
  border-radius: 50px;
  position: relative;
  font-size: 0.9em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .recruit-works .rec-works-sec02 ul.works-flow li {
    font-size: 0.84em;
  }
}
.recruit-works .rec-works-sec02 ul.works-flow li:not(:last-child)::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -13px;
  transform: rotate(45deg);
  border: 15px solid;
  border-color: transparent #eff9ff #eff9ff transparent;
  box-sizing: border-box;
}
.recruit-works .rec-works-sec02 ul.works-flow li h3 {
  font-weight: normal;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .recruit-works .rec-works-sec02 ul.works-flow li h3 {
    font-size: 1em;
  }
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(2) {
  background-color: #dff3ff;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(2)::after {
  border-color: transparent #dff3ff #dff3ff transparent;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(3) {
  background-color: #d5efff;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(3)::after {
  border-color: transparent #d5efff #d5efff transparent;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(4) {
  background-color: #caecff;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(4)::after {
  border-color: transparent #caecff #caecff transparent;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(5) {
  background-color: #b7e4ff;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(5)::after {
  border-color: transparent #b7e4ff #b7e4ff transparent;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(6) {
  background-color: #aae0ff;
}
.recruit-works .rec-works-sec02 ul.works-flow li:nth-child(6)::after {
  border-color: transparent #aae0ff #aae0ff transparent;
}
.recruit-works .rec-works-sec03 {
  display: flex;
  flex-wrap: wrap;
}
.recruit-works .rec-works-sec03 .works-sec03-lbox {
  width: calc(50% + 100px);
  background-color: #F4F2EF;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recruit-works .rec-works-sec03 .works-sec03-lbox {
    width: 100%;
  }
}
.recruit-works .rec-works-sec03 .works-sec03-lbox > div {
  text-align: left;
  width: 100%;
  max-width: 740px;
  padding: 60px 30px;
  margin: 0 0 0 auto;
}
.recruit-works .rec-works-sec03 .works-sec03-lbox .list-disc li {
  font-weight: bold;
}
.recruit-works .rec-works-sec03 .works-sec03-rbox {
  width: calc(50% - 100px);
  background: #F4F2EF url(../img/recruit/works/works-sec03-bg.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .recruit-works .rec-works-sec03 .works-sec03-rbox {
    width: 100%;
    height: 300px;
  }
}
.recruit-works .rec-works-sec03 h4 {
  margin-bottom: 15px;
}
.recruit-works .h-std {
  margin-bottom: 30px;
}
.recruit-works .rec-works-sec04 {
  background: #fff url(../img/recruit/works/works-sec04-bg.jpg) left bottom no-repeat;
  background-size: 100%;
  padding: 50px 0;
}
.recruit-works .works-sec04-box {
  width: 70%;
  margin-left: 30%;
  background-color: #04447C;
  color: #fff;
  padding: 80px;
  border-radius: 30px;
}
.recruit-works .works-sec04-box h2, .recruit-works .works-sec04-box h3, .recruit-works .works-sec04-box h4 {
  color: #fff;
}
.recruit-works .works-sec04-box h4 {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .recruit-works .works-sec04-box {
    width: 100%;
    margin-left: 0;
    padding: 25px;
    border-radius: 15px;
  }
  .recruit-works .works-sec04-box h2, .recruit-works .works-sec04-box h3, .recruit-works .works-sec04-box h4 {
    text-align: center;
  }
}
.recruit-works .rec-works-sec05 {
  padding-top: 80px;
}

/*-----------------------------------------------------------
 recruit interview
-----------------------------------------------------------*/
.recruit-interview .main-bg {
  background-image: url(../img/recruit/interview/interview-bg.jpg);
  background-position: center center;
}
.recruit-interview .main-bg::before {
  background-color: transparent;
}
.recruit-interview .main-bg__inner h1 {
  color: #000;
  font-size: 1.4em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .recruit-interview .main-bg__inner h1 {
    font-size: 1.2em;
  }
}
.recruit-interview .main-bg__inner h1 span {
  font-size: 2.8em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recruit-interview .main-bg__inner h1 span {
    font-size: 2.2em;
  }
}
.recruit-interview .rec-int-sec h2 {
  border-bottom: 1px solid #999999;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.recruit-interview .rec-int-sec h4 {
  padding-left: 40px;
  position: relative;
  color: #1d7fcf;
  margin-bottom: 20px;
}
.recruit-interview .rec-int-sec h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 30px;
  height: 4px;
  background-color: #1d7fcf;
}

/*-----------------------------------------------------------
 recruit entry
-----------------------------------------------------------*/
.recruit-entry .main-bg {
  background-image: url(../img/recruit/entry/entry-bg.jpg);
  background-position: center center;
}
.recruit-entry .main-bg::before {
  background-color: transparent;
}
.recruit-entry .main-bg__inner h1 {
  color: #fff;
  font-size: 1.4em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .recruit-entry .main-bg__inner h1 {
    font-size: 1.2em;
  }
}
.recruit-entry .main-bg__inner h1 span {
  font-size: 2.8em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recruit-entry .main-bg__inner h1 span {
    font-size: 2.2em;
  }
}

.entry-wrap {
  max-width: 980px;
}

.entry-flow {
  list-style: none;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .entry-flow {
    margin-bottom: 40px;
  }
}
.entry-flow li {
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .entry-flow li {
    font-size: 0.84em;
  }
}
.entry-flow li:not(:last-child)::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -13px;
  transform: rotate(45deg);
  border: 15px solid;
  border-color: transparent #fff #fff transparent;
  box-sizing: border-box;
}

/*-----------------------------------------------------------
 ir home
-----------------------------------------------------------*/
.ir .main-bg__inner p {
  position: absolute;
  right: 30px;
  bottom: 0;
  text-align: right;
  color: #FFFFFF;
  margin-bottom: 0;
  padding-bottom: 20px;
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .ir .main-bg__inner p {
    right: 10px;
    border-bottom: -5px;
    font-size: 0.8em;
  }
}
.ir .home-news__list {
  width: 100%;
}
.ir .calender {
  padding: 100px 0;
  width: 100%;
  position: relative;
  clip-path: inset(0);
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .ir .calender {
    margin-bottom: 50px;
  }
}
.ir .calender__bg {
  background: url(../img/ir/home/calendar-bg.jpg) center center no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.ir .calender h2 {
  color: #FFFFFF;
}
.ir .calender img {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ir .calender img {
    width: 70%;
  }
}
.ir .home-sub {
  display: flex;
  flex-wrap: wrap;
}
.ir .home-sub > div {
  width: calc(50% - 25px);
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .ir .home-sub > div {
    width: 100%;
    margin-right: 0;
  }
}
.ir .home-sub > div:nth-child(2n) {
  margin-right: 0;
}
.ir .home-sub__ttl {
  position: relative;
}
.ir .home-sub__ttl img {
  filter: brightness(0.7);
  width: 100%;
}
.ir .home-sub__ttl h2 {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: #FFFFFF;
}
.ir .ir-info {
  background-color: #F0EDEB;
  border-radius: 30px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .ir .ir-info {
    border-radius: 0;
    padding: 30px;
  }
}
.ir .ir-info h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.ir .ir-info p {
  font-size: 1.2rem;
}

/*-----------------------------------------------------------
 ir top message
-----------------------------------------------------------*/
.signature {
  max-width: 160px;
  margin-left: 16px;
}

/*-----------------------------------------------------------
 ir overview
-----------------------------------------------------------*/
.leader {
  font-size: 1.4em;
}
.leader span {
  color: #1d7fcf;
}
@media screen and (max-width: 768px) {
  .leader {
    font-size: 1.1em;
  }
}

/*-----------------------------------------------------------
 ir highlights
-----------------------------------------------------------*/
.table-ir tr:nth-child(1) th {
  background-color: #dde5ec;
  text-align: center;
}
.table-ir tr:not(first-child) td {
  text-align: right;
}
.table-ir tr.d-line th, .table-ir tr.d-line td {
  border-bottom: 4px double #D3D3D3;
}
@media screen and (max-width: 768px) {
  .table-ir {
    max-width: 200%;
  }
  .table-ir tr th, .table-ir tr td {
    font-size: 0.8em;
    line-height: 1.1;
    padding: 10px 5px;
    white-space: nowrap;
  }
}

.graph-img img {
  max-width: 100%;
}

.chart-list h3 {
  text-align: center;
  font-size: 1.6rem;
}

/*-----------------------------------------------------------
 ir information
-----------------------------------------------------------*/
.table-ir2 tr th {
  background-color: #fff;
}
.table-ir2 tr td {
  text-align: center;
}
.table-ir2 tr:nth-child(1) th {
  background-color: #dde5ec;
  text-align: center;
}
.table-ir2 tr.d-line th, .table-ir2 tr.d-line td {
  border-bottom: 4px double #D3D3D3;
}
@media screen and (max-width: 768px) {
  .table-ir2 {
    max-width: 200%;
  }
  .table-ir2 tr th, .table-ir2 tr td {
    font-size: 0.8em;
    line-height: 1.1;
    padding: 10px 5px;
    white-space: nowrap;
  }
}

/*-----------------------------------------------------------
 ir news
-----------------------------------------------------------*/
.ir-news-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .ir-news-nav {
    gap: 5px;
  }
}
.ir-news-nav li {
  width: calc(12.5% - 7px);
}
@media screen and (max-width: 768px) {
  .ir-news-nav li {
    width: calc(20% - 4px);
  }
}
.ir-news-nav li a {
  display: block;
  text-align: center;
}
.ir-news-nav li.active a, .ir-news-nav li:hover a {
  background-color: #1d7fcf;
  color: #FFFFFF;
  text-decoration: none;
}

.ir-news-page-hd {
  margin-bottom: 30px;
}
.ir-news-page-hd time {
  color: #999999;
  margin-right: 2em;
}

/*-----------------------------------------------------------
 news top
-----------------------------------------------------------*/
.category, .news-list span {
  display: inline-block;
}
.category.badge, .news-list span.badge {
  color: #FFFFFF;
  width: 13em;
  padding: 4px 0;
  margin-right: 2em;
  font-size: 1rem;
  text-align: center;
  border-radius: 5px;
  background-color: #1d7fcf;
}
.category.news-icon-pdf, .news-list span.news-icon-pdf {
  background: url("../svg/btn-icon-pdf.svg") right center no-repeat;
  background-size: 20px;
}

.news-list li {
  margin-bottom: 0;
}
.news-list li:not(:last-child) {
  border-bottom: 1px dotted #D3D3D3;
}
.news-list a {
  display: flex;
  flex-wrap: wrap;
  color: #666666;
  padding: 20px 10px;
  line-height: 1.3;
  justify-content: left;
}
@media screen and (max-width: 1080px) {
  .news-list a {
    width: 100%;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .news-list a {
    font-size: 1rem;
  }
}
.news-list a:hover {
  background-color: #F4F2EF;
  text-decoration: none;
}
.news-list a > div {
  width: calc(100% - 18em);
}
@media screen and (max-width: 768px) {
  .news-list a > div {
    width: 100%;
  }
}
.news-list a > div:not(:last-child) {
  width: 18em;
}
@media screen and (max-width: 768px) {
  .news-list a > div:not(:last-child) {
    width: 100%;
  }
}
.news-list time {
  display: inline-block;
  padding: 2px 0;
  font-size: 1.4rem;
  color: #999999;
  margin-right: 2em;
}
.news-list span {
  padding: 5px 30px 5px 0;
}

.news-link a {
  display: inline-block;
  color: #333333;
  position: relative;
  line-height: 1;
  padding: 5px 20px 5px 0;
}
.news-link a:hover {
  text-decoration: none;
  color: #1d7fcf;
}
.news-link a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-color: #1d7fcf #1d7fcf transparent transparent;
  transform: rotate(45deg);
}

/*-----------------------------------------------------------
 news page
-----------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .news-header {
    background-color: #F4F2EF;
    margin-bottom: 1em;
  }
}
.news-header h2 {
  font-size: 1em;
  font-weight: normal;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .news-header h2 {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.news-header form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: right;
}
@media screen and (max-width: 768px) {
  .news-header form {
    justify-content: center;
  }
}
.news-header form select {
  font-size: 1em;
}

/* ページネーションの汎用スタイル */
.pagination {
  text-align: center;
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #fff;
  color: #999999;
  border-radius: 50%;
  font-size: 1em;
  font-weight: bold;
}
.nav-links a.page-numbers:hover {
  color: #FFF;
  color: #1d7fcf;
  border-radius: 50%;
  text-decoration: none;
  background-color: #F4F2EF;
}
.nav-links .current {
  background: #1d7fcf;
  color: #FFFFFF;
  padding: 0;
}
.nav-links a.prev,
.nav-links a.next {
  color: #1d7fcf;
  position: relative;
}
.nav-links .next::before,
.nav-links .prev::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav-links .next::before {
  left: 10px;
  border-color: #999999 #999999 transparent transparent;
}
.nav-links .prev::after {
  right: 12px;
  border-color: transparent transparent #999999 #999999;
}
.nav-links .next:hover:before {
  border-color: #1d7fcf #1d7fcf transparent transparent;
}
.nav-links .prev:hover:after {
  border-color: transparent transparent #1d7fcf #1d7fcf;
}
.nav-links .dots {
  background: transparent;
  border: none;
}

/*-----------------------------------------------------------
 common
-----------------------------------------------------------*/
.policy ol li {
  list-style: none;
  padding-left: 2.4em;
  text-indent: -2.4em;
}

/*-----------------------------------------------------------
 company about
-----------------------------------------------------------*/
.about figure img {
  max-width: 100%;
}
.about .about-logo {
  max-width: 380px;
  margin: 30px auto;
}

/*-----------------------------------------------------------
 company guidelines
-----------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .guide-sec h2.h-center {
    margin-bottom: 25px;
  }
}

.philosophy {
  max-width: 560px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .philosophy {
    padding: 15px;
    margin: 0 auto 50px;
  }
}
.philosophy p {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .philosophy p {
    font-size: 1.4rem;
  }
}

.guidelines {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .guidelines {
    padding: 15px;
  }
}
.guidelines ul {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .guidelines ul {
    margin-bottom: 20px;
  }
}
.guidelines ul li {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .guidelines ul li {
    font-size: 1.4rem;
  }
}
.guidelines p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .guidelines p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/*-----------------------------------------------------------
 company overview
-----------------------------------------------------------*/
.outline-table {
  margin-bottom: 2em;
}
.outline-table tr th, .outline-table tr td {
  padding: 1em;
  border-bottom: 1px solid #D3D3D3;
}
.outline-table tr th {
  width: 20%;
  text-align: left;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .outline-table tr th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .outline-table tr td {
    display: block;
    width: 100%;
    padding-top: 0;
  }
}
.outline-table tr td dl {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.outline-table tr td dl dt, .outline-table tr td dl dd {
  display: inline-block;
  padding: 5px;
  border-top: 1px solid #F0EDEB;
}
.outline-table tr td dl dt:nth-child(1), .outline-table tr td dl dt:nth-child(2), .outline-table tr td dl dd:nth-child(1), .outline-table tr td dl dd:nth-child(2) {
  border-top: none;
}
.outline-table tr td dl dt {
  width: 20%;
  margin-bottom: 0;
  font-weight: bold;
}
.outline-table tr td dl dd {
  width: 80%;
  margin-bottom: 0;
}
.outline-table tr td dl.officer dt {
  width: 23%;
}
.outline-table tr td dl.officer dd {
  width: 77%;
}
@media screen and (max-width: 768px) {
  .outline-table tr td dl.officer dt, .outline-table tr td dl.officer dd {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .outline-table tr td dl.pro dt, .outline-table tr td dl.pro dd {
    width: 100%;
    border-top: none;
  }
}

/*-----------------------------------------------------------
 company access
-----------------------------------------------------------*/
.table-access {
  width: 100%;
  margin-bottom: 50px;
}
.table-access tr th, .table-access tr td {
  padding: 5px 10px;
  border-bottom: 1px solid #F0EDEB;
  text-align: left;
}
.table-access tr.table-sub th {
  padding: 5px 10px 5px 2em;
}
.table-access tr.table-sub td {
  padding: 5px 10px;
}
.table-access tr:nth-child(2n-1) th, .table-access tr:nth-child(2n-1) td {
  background-color: #F4F2EF;
}
@media screen and (max-width: 768px) {
  .table-access tr {
    display: flex;
    flex-wrap: wrap;
  }
  .table-access tr th {
    padding: 5px 10px 0 10px;
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .table-access tr td {
    padding: 0 10px 5px 10px;
    display: block;
    min-width: 50%;
    width: 50%;
  }
  .table-access tr.table-sub th {
    padding: 5px 10px 0 10px;
  }
  .table-access tr.table-sub td {
    padding: 0 10px 5px 10px;
  }
}

.access-flow {
  margin: 0 0 50px 30px;
}
.access-flow li {
  margin: 0;
  list-style-type: disc;
}

/*-----------------------------------------------------------
 company history
-----------------------------------------------------------*/
.history-container {
  position: relative;
  width: 100%;
}
.history-container figure.history-bg {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .history-container figure.history-bg {
    width: 50%;
    left: 50%;
  }
}
.history-container figure.history-bg img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.history-list {
  margin-bottom: 50px;
}
.history-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 15px;
  margin-bottom: 0;
  border-bottom: 1px solid #D3D3D3;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .history-list li {
    gap: 5px;
  }
}
.history-list li h3 {
  width: 100px;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  font-style: italic;
  color: #666666;
}
.history-list li h3 span {
  font-size: 1.4em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .history-list li h3 {
    width: 100%;
  }
}
.history-list li > div {
  width: calc(100% - 130px);
}
@media screen and (max-width: 768px) {
  .history-list li > div {
    width: 100%;
  }
}
.history-list li p {
  margin: 0;
}
.history-list li figure {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.history-list li figure img {
  max-width: calc(50% - 15px);
}

/*-----------------------------------------------------------
 company customer
-----------------------------------------------------------*/
.customer > div {
  margin-bottom: 50px;
}

/*-----------------------------------------------------------
 Contact home
-----------------------------------------------------------*/
.contact-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .contact-wrap {
    gap: 0;
  }
}
.contact-wrap .contact-title {
  width: 30%;
  background-color: #F4F2EF;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .contact-wrap .contact-title {
    width: 100%;
  }
}
.contact-wrap .contact-title p {
  color: #666666;
  font-size: 1.2rem;
  line-height: 1.1;
  margin-bottom: 0;
}
.contact-wrap .contact-body {
  width: calc(70% - 50px);
}
@media screen and (max-width: 768px) {
  .contact-wrap .contact-body {
    width: 100%;
  }
}
.contact-wrap .contact-body table {
  width: 100%;
}
.contact-wrap .contact-body table tr th,
.contact-wrap .contact-body table tr td {
  width: 50%;
  text-align: left;
  padding: 0.5em;
}
.contact-wrap .contact-body table tr th.child {
  padding-left: 1.5em;
}
.contact-wrap .contact-body table tr:not(:first-child) th,
.contact-wrap .contact-body table tr:not(:first-child) td {
  border-top: 1px solid #F0EDEB;
}

.qanda {
  border-bottom: 1px solid #D3D3D3;
}
.qanda dt {
  padding: 0;
  position: relative;
  border: 1px solid;
  border-color: #D3D3D3 #D3D3D3 transparent #D3D3D3;
}
.qanda dt:hover {
  background-color: #F4F2EF;
}
.qanda dt::before {
  content: "Q";
  font-size: 1.8em;
  line-height: 1;
  font-weight: bold;
  color: #1d7fcf;
  position: absolute;
  left: 0.5em;
  top: 0.5em;
}
.qanda dt::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  border-right: 2px solid #1d7fcf;
  border-bottom: 2px solid #1d7fcf;
  position: absolute;
  right: 1em;
  top: 1em;
  transform: rotate(45deg);
}
.qanda dt.ac-active {
  background-color: #F4F2EF;
}
.qanda dt.ac-active::after {
  top: 1.6em;
  transform: rotate(-135deg);
}
.qanda dt button {
  padding: 1em 3em;
}
.qanda dd {
  padding: 1em 3em;
  background-color: #F4F2EF;
  position: relative;
  border: 1px solid;
  border-color: transparent #D3D3D3 transparent #D3D3D3;
}
.qanda dd::before {
  content: "A";
  font-size: 1.8em;
  line-height: 1;
  font-weight: bold;
  color: #E70000;
  position: absolute;
  left: 0.5em;
  top: 0.5em;
}

/*-----------------------------------------------------------
 Contact Forms
-----------------------------------------------------------*/
form {
  padding: 20px 0 20px 0;
}
form label {
  margin: 10px;
  cursor: pointer;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea {
  padding: 10px;
  margin: 5px 10px 5px 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form textarea {
    width: 100%;
    margin: 5px;
    padding: 5px;
  }
}
form input[type=radio] {
  top: -3px;
  position: relative;
}
form select {
  padding: 10px 30px;
  border-radius: 5px;
  border-color: #D3D3D3;
}
@media screen and (max-width: 768px) {
  form select {
    padding: 5px 15px;
  }
}
form .button {
  text-align: center;
}
form .button input[type=submit],
form .button input[type=button],
form .button input#formbtn,
form .button input.wpcf7-submit {
  background-color: #1d7fcf;
  color: #fff;
  padding: 10px 20px;
  width: 100%;
  max-width: 300px;
  border: none;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  font-size: 1.2em;
  transition: all 0.5s;
}
form .button input[type=submit]:hover,
form .button input[type=button]:hover,
form .button input#formbtn:hover,
form .button input.wpcf7-submit:hover {
  background-color: #38b383;
}
form #product-type,
form #product-model {
  display: none;
}

.privacy-ft {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D3D3D3;
}
.privacy-ft p,
.privacy-ft ul li {
  font-size: 0.8em;
  line-height: 1.2;
}
.privacy-ft ul li {
  list-style-type: disc;
  margin-left: 2em;
}

.form-table {
  border-top: 1px solid #D3D3D3;
  margin-bottom: 60px;
}
.form-table tr th {
  width: 300px;
}
@media screen and (max-width: 1080px) {
  .form-table tr th {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .form-table tr th {
    width: 100%;
  }
}
.form-table tr td p {
  letter-spacing: 0;
}
.form-table tr td ol {
  margin-left: 1em;
}

.required {
  font-size: 1.4rem;
  color: #E70000;
}

.wpcf7-submit {
  position: relative;
  padding-right: 30px;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: none;
}

.wpcf7-spinner.is-active {
  display: inline-block;
}

.form-ancellation-bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-ancellation-top {
  margin-top: -21px;
  padding-top: 0;
}

.inline-field {
  display: inline-block;
  margin-right: 1em;
}

.wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}

label {
  margin: 10px;
  cursor: pointer;
}

input[type=radio] {
  top: -3px;
  position: relative;
}

/*-----------------------------------------------------------
 download top
-----------------------------------------------------------*/
.download ul.cata-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.download ul.cata-list li {
  width: calc(50% - 25px);
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .download ul.cata-list li {
    width: 100%;
  }
}
.download ul.cata-list li figure {
  width: calc(40% - 25px);
}
.download ul.cata-list li figure img {
  width: 100%;
}
.download ul.cata-list li div {
  width: 60%;
}
.download ul.cata-list li div span {
  font-size: 1.2rem;
  color: #999999;
}
.download ul.cata-list li div h3 {
  margin: 30px 0 15px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .download ul.cata-list li div h3 {
    margin: 0 0 5px;
    font-size: 1.4rem;
  }
}
.download ul.cata-list li div h3 span {
  font-size: 1.2rem;
  color: #666666;
  font-weight: normal;
}
.download ul.cata-list li div a {
  margin-bottom: 20px;
}
.download ul.cata-list li div a span {
  transition: all 0.3s;
}
@media print, screen and (min-width: 769px) {
  .download ul.cata-list li div a:hover span {
    color: #fff;
  }
}
.download ul.dl-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 30px;
}
.download ul.dl-list li {
  width: calc(50% - 25px);
  padding: 50px;
  background-color: #F4F2EF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .download ul.dl-list li {
    padding: 25px;
    width: 100%;
  }
}
.download ul.dl-list li p {
  text-align: left;
}
.download ul.dl-list li a {
  padding: 15px 100px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */