@charset "UTF-8";
/*===============================================
画面の横幅が1000px〜768pxまで
===============================================*/
@media screen and (max-width: 1024px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  body.on {
    overflow: hidden;
  }
  header {
    position: fixed;
    height: 70px;
    z-index: 100;
  }
  header .head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #f6f8fb;
    padding: 0;
    z-index: 10;
  }
  header h1 {
    display: flex;
    align-items: center;
    margin-left: 30px;
    height: 100%;
  }
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 20px;
    top: 15px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background-color: #173e88;
    transition: background-color 0.2s;
    z-index: 10;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transitio: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  .hamburger.active {
    background-color: #18ba74;
  }
  .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 20px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .globalMenuSp {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #173e88;
    padding: 0;
    transform: translateY(-100%);
    transition: all 0.6s;
    z-index: 9;
    overflow: auto;
  }
  .globalMenuSp ul {
    display: block;
    padding: 10px 20px 30px 20px;
  }
  .globalMenuSp li {
    width: 100%;
  }
  .globalMenuSp li:not(:last-child):not(:nth-last-child(2)) {
    margin-right: 0;
    border-bottom: 1px solid #fff;
  }
  .globalMenuSp li a {
    display: block;
    position: relative;
    color: #fff;
    padding: 20px;
  }
  .globalMenuSp li a:before {
    position: absolute;
    content: "";
    top: 50%;
    right: 20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .globalMenuSp li a:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 27px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #173e88;
    border-right: 1px solid #173e88;
    transform: translateY(-50%) rotate(45deg);
  }
  .globalMenuSp.active {
    opacity: 1;
    display: block;
    top: 70px;
    transform: translateY(0%);
  }
  .globalMenuSp .recruit {
    margin-top: 10px;
  }
  .globalMenuSp .recruit a {
    color: #173e88;
    background-color: #fff;
  }
  .globalMenuSp .recruit a img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(19%) saturate(5423%) hue-rotate(199deg) brightness(99%) contrast(96%);
  }
  .globalMenuSp .recruit a:before {
    background-color: #173e88;
  }
  .globalMenuSp .recruit a:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  footer .contact {
    display: block;
    width: 100%;
    padding: 40px 30px 45px 30px;
  }
  footer .contact dl {
    width: 100%;
  }
  footer .contact dt {
    width: 180px;
  }
  footer .contact dd {
    width: calc(100% - 180px);
  }
  footer h3 {
    margin-bottom: 30px;
  }
  footer .menu li {
    padding: 0 15px;
  }
  .pageTtl {
    width: 100%;
    height: 150px;
    border-radius: 0;
    margin: 70px 0 0 0;
  }
  .pageTtl .inner {
    padding: 0 30px;
  }
  .pageTtl h2 {
    font-size: 3rem;
  }
  .pageTtl span {
    font-size: 1.5rem;
  }
  .pankuzuWrap {
    padding: 20px 30px 0 30px;
  }
  .breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .breadcrumbs:-webkit-scrollbar {
    display: none;
  }
  .breadcrumbs span {
    flex-shrink: 0;
    margin-right: 0.5em;
  }
  .inner {
    width: 100%;
  }
  .topAbout .txt {
    width: calc(100% - 220px);
  }
  .topAbout .btnCont {
    width: 200px;
  }
  section {
    padding: 70px 30px;
  }
  section + section {
    padding-top: 0;
  }
  section.bgWrap {
    padding: 70px 30px;
  }
  section.bgWrap + section {
    padding-top: 70px;
  }
  h3 {
    font-size: 5rem;
  }
  dl.default dt, dl.default dd {
    padding: 30px 20px;
  }
  .accordionHead {
    padding: 15px 20px;
  }
  .accordionCont {
    padding: 0;
  }
  .accordionCont li {
    font-size: 1.3rem;
  }
  .accordionCont li:not(:last-child) {
    margin-bottom: 10px;
  }
  .topicsList .thumb {
    height: 150px;
  }
  .topicsList .ttl {
    min-height: calc(100% - 150px);
  }
  .articleLink {
    width: 100%;
  }
  .articleLink > div {
    width: calc((100% - 20px) / 3);
  }
  .productsWrap .item {
    width: calc((100% - 50px) / 3);
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .productsWrap .item:not(:nth-child(4n)) {
    margin-right: 25px;
  }
  .productsWrap .item:nth-child(3n) {
    margin-right: 0;
  }
  .secQuality {
    padding-left: 0;
    padding-right: 0;
  }
  .secQuality .inner {
    padding: 0 30px;
  }
  .qualityWrap .ph {
    width: 45%;
  }
  .qualityWrap .txt {
    width: calc(50% - 20px);
  }
  .qualityWrap:before {
    width: 49%;
  }
  .listWrap {
    padding: 50px 30px;
  }
  .listWrap .listInner {
    width: 100%;
  }
  .listWrap .listCont {
    width: 100%;
    margin-bottom: 20px;
    min-height: auto;
  }
  .listWrap .listCont:nth-child(odd) {
    margin-bottom: 20px;
  }
  .listWrap .listCont:nth-child(even) {
    margin-top: 0;
  }
  .listWrap .listCont:last-child {
    margin-bottom: 30px;
  }
  .charaWrap .inner {
    flex-direction: row-reverse;
  }
  .charaWrap .txt {
    width: 60%;
  }
  .charaWrap figure {
    width: 37%;
  }
}
/*===============================================
tablet横向き
===============================================*/
/*===============================================
画面の横幅が767px〜0pxまで
===============================================*/
@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  footer .recruit .inner {
    width: 100%;
    background: url(../image/footer_recruit_bg.jpg) 4%/cover;
    padding: 40px 30px 20px 30px;
    margin: 0;
    border-radius: 0;
  }
  footer .recruit h3 {
    text-align: left;
  }
  footer .recruit p {
    text-align: left;
  }
  footer .recruit p br {
    display: none;
  }
  footer .contact > div {
    width: 100%;
  }
  footer .contact dl {
    display: block;
  }
  footer .contact dt, footer .contact dd {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .contact dt {
    font-size: 1.8rem;
    border-bottom: 0;
    padding-bottom: 0;
  }
  footer .contact dd {
    padding-top: 15px;
  }
  footer .contact dd .tel span {
    font-size: 2.5rem;
  }
  footer .contact dd p {
    font-size: 1.3rem;
  }
  footer .contact dd p br {
    display: inline;
  }
  footer h3 {
    font-size: 4rem;
  }
  footer .menu ul {
    margin-bottom: 10px;
  }
  footer .menu li {
    width: fit-content;
    padding: 0 15px;
    margin-bottom: 20px;
    border-left: 0;
  }
  footer .menu li:last-child {
    border-right: 0;
  }
  .mvWrap {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }
  .mvWrap .slider {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .mvWrap .slide {
    border-radius: 0;
  }
  .mvWrap .txt {
    width: 100%;
    margin: 0;
  }
  .mvWrap .txt img {
    width: 80%;
  }
  section.secAnker a {
    width: 100%;
  }
  section.secProdcts h3 span {
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 10px;
  }
  section.sec404 h4, section.sec404 p {
    text-align: left;
  }
  h3 {
    font-size: 4rem;
  }
  h3 span {
    display: block;
    font-size: 1.3rem;
    margin: 10px 0 0 3px;
  }
  p {
    font-size: 1.4rem;
  }
  dl.default dt, dl.default dd {
    width: 100%;
  }
  dl.default dt {
    border: 0;
    padding: 30px 15px 0 15px;
  }
  dl.default dd {
    padding: 15px 15px 30px 15px;
  }
  dl.history dt {
    width: 100px;
    font-size: 2.5rem;
    letter-spacing: 0;
    padding: 21px 0;
  }
  dl.history dt:before {
    right: 23px;
  }
  dl.history dt:after {
    top: 28px;
    right: 17px;
    width: 13px;
    height: 13px;
  }
  dl.history dd {
    display: block;
    width: calc(100% - 100px);
    padding: 23px 0 26px 0px;
  }
  dl.history dd span {
    font-size: 1.7rem;
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
  dl.history dd p {
    width: 100%;
  }
  .btnCont a {
    width: 100%;
  }
  .accordionCont {
    display: block;
  }
  .accordionCont ul {
    width: 100%;
  }
  .accordionCont li {
    font-size: 1.5rem;
  }
  .topAbout .txt, .topAbout .btnCont {
    width: 100%;
  }
  .topAbout .btnCont a {
    margin-right: 0;
  }
  .topProducts li:before {
    left: 10px;
    font-size: 2.5rem;
  }
  .topProducts li a {
    font-size: 1.6rem;
    padding: 30px 10px 30px 55px;
  }
  .topProducts li a:before {
    right: 10px;
  }
  .topProducts li a:after {
    right: 21px;
  }
  .topicsList ul {
    display: block;
  }
  .topicsList li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .topicsList .thumb {
    height: auto;
    aspect-ratio: 3/2;
  }
  .topicsList .ttl {
    height: auto;
  }
  .navigation .page-numbers {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .navigation .page-numbers li {
    width: calc((100% - 50px) / 8);
    height: auto;
    aspect-ratio: 1/1;
  }
  .navigation .page-numbers li a {
    aspect-ratio: 1/1;
  }
  .navigation .dots {
    width: 20px;
    font-size: 1.5rem;
  }
  .productsWrap .item {
    width: 100%;
    margin-right: 0;
  }
  .productsWrap .item:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .secQuality .inner {
    display: block;
  }
  .secQuality h3 span {
    margin-top: 20px;
  }
  .qualityWrap:before {
    width: 100%;
    border-radius: 0;
  }
  .qualityWrap .ph, .qualityWrap .txt {
    width: 100%;
  }
  .qualityWrap .ph {
    margin-bottom: 20px;
  }
  .qualityWrap .txt * {
    color: #fff;
  }
  .listWrap .listCont {
    padding: 25px 25px 25px 90px;
  }
  .listWrap .listCont:before {
    top: 30px;
    left: 25px;
    width: 50px;
    font-size: 3rem;
  }
  .listWrap .listCont:after {
    top: 20px;
    left: 25px;
    width: 50px;
    height: 50px;
  }
  .charaWrap .txt, .charaWrap figure {
    width: 100%;
  }
  .charaWrap figure {
    margin-top: 30px;
  }
  .charaWrap h4 br {
    display: none;
  }
  .secArt .inner {
    padding: 0 30px 50px 30px;
  }
  .secArt .ttl {
    display: block;
    margin-bottom: 20px;
  }
  .secArt .ttl .date {
    display: block;
    width: 100%;
    font-size: 2rem;
    padding: 16px;
  }
  .secArt .ttl .date span {
    display: inline;
    font-size: inherit;
  }
  .secArt .ttl .date span:after {
    content: ".";
  }
  .secArt .ttl h4 {
    width: 100%;
    padding: 20px 5px 10px 5px;
  }
  .articleLink {
    display: flex;
    flex-direction: column;
  }
  .articleLink > div {
    width: 100%;
    margin-bottom: 10px;
  }
  .articleLink > div:not(:last-child) {
    margin-right: 0;
  }
  .articleLink > div.next {
    order: 1;
  }
  .articleLink > div.next a:before {
    content: "";
  }
  .articleLink > div.previous {
    order: 2;
  }
  .articleLink > div.previous a:after {
    content: "";
  }
  .articleLink > div.list {
    order: 3;
  }
}
/*===============================================
sp横向き
===============================================*/
@media screen and (max-width: 896px) and (orientation: landscape) {
  .mvWrap {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .globalMenuSp {
    height: calc(100lvh - 70px);
  }
}