@charset "UTF-8";
/* ========================================
   Common Styles
======================================== */

/* ========================================
   Base
======================================== */
html {
  scroll-behavior: auto;
  overflow-x: visible;
}

body {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  width: 100%;
  color: #333333;
}

.wrap {
  overflow-x: clip;
  overflow-y: visible;
}

* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
dl,
dd,
dt {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08rem;
  margin: 0;
  padding: 0;
}

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

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utility Classes */
@media screen and (min-width: 1001px) {
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .sp_none {
    display: none !important;
  }
  .clicked {
    overflow: hidden;
  }
}
@media screen and (min-width: 401px) {
  .m_pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 400px) {
  .m_sp_none {
    display: none !important;
  }
}
/* Layout Components */
/* ========================================
   Header Styles
======================================== */
/* Toggle Button */
@media screen and (max-width: 1000px) {
  .nav_toggle {
    display: block;
    width: 41px;
    height: 41px;
    position: absolute;
    top: 25px;
    right: 16px;
    z-index: 100;
    cursor: pointer;
  }
  .nav_toggle div {
    position: relative;
  }
  .nav_toggle span {
    display: block;
    height: 3px;
    background: #6c6c6c;
    position: absolute;
    border-radius: 3px;
    width: 100%;
    right: 0;
    transition: 0.3s ease-in-out;
  }
  .nav_toggle span:nth-child(1) {
    top: 0;
  }
  .nav_toggle span:nth-child(2) {
    top: 13px;
    width: 80%;
  }
  .nav_toggle span:nth-child(3) {
    top: 26px;
    width: 60%;
  }
  .clicked .nav_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
  }
  .clicked .nav_toggle span:nth-child(2) {
    width: 0;
    right: 50%;
  }
  .clicked .nav_toggle span:nth-child(3) {
    top: 12px;
    width: 100%;
    transform: rotate(-45deg);
  }
}
/* Header */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: rgba(255, 255, 255, 1);
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.siteHeader.fixed {
  background-color: #fff;
}

@media screen and (max-width: 1000px) {
  .clicked .siteHeader {
    background-color: #fff;
    bottom: 0;
    overflow-y: scroll;
  }
}

body.customize-support .siteHeader {
  top: 32px;
}
body.customize-support .siteHeader.fixed {
  background-color: #fff;
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.customize-support .siteHeader {
    top: 46px;
  }
  body.customize-support .siteHeader.fixed {
    background-color: #fff;
    top: 0 !important;
  }
}

.siteHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .siteHeader__inner {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.siteHeader__logo {
  width: 80%;
  max-width: 198px;
  margin: 0 20px 0 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .siteHeader__logo {
    max-width: 165px;
    margin: 0;
  }
}

.siteHeader__logoTitle {
  line-height: 0;
}

.siteHeader__logoLink {
  display: inline-block;
  width: 100%;
  padding: 13px;
}

.siteHeader__logoImg {
  width: 100%;
}

/* Global Navigation */
@media screen and (max-width: 1000px) {
  .gnav,
  .siteHeader__nav {
    display: none;
    transition: 0.2s ease-in-out;
  }
  .clicked .gnav,
  .clicked .siteHeader__nav {
    margin: 0;
    display: block;
  }
}
.gnav .gul,
.gnav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 1000px) {
  .gnav .gul,
  .gnav__list {
    display: block;
    padding: 0 0 50px;
  }
}

.gnav__item {
  text-align: center;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 1000px) {
  .gnav__item {
    width: 100%;
    text-align: left;
    position: relative;
    margin: 0;
  }
}

@media screen and (max-width: 1000px) {
  .gnav > .gul > li:hover > label,
  .gnav__list > .gnav__item:hover > label {
    cursor: pointer;
  }
  .gul .menu_click label,
  .gnav__item.menu_click label {
    background-color: #e8e8e8;
    color: #898989;
  }
}
/* Normal links */
.gnav__link {
  display: inline-block;
  padding: 12px 15px 10px;
  transition: all 0.2s ease-in;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .gnav__link {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }
}

/* Contact button */
.header__contact {
  width: 210px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .header__contact {
    display: block;
    max-width: 600px;
    width: 90%;
    margin: 30px auto 20px;
  }
}

.gnav__item--contact .gnav__link {
  background-color: #53b3eb;
  color: #fff;
  padding: 40px 0;
  width: 100%;
  border-radius: 0;
}
@media screen and (max-width: 1000px) {
  .gnav__item--contact .gnav__link {
    padding: 30px 0;
    border-radius: 50px;
  }
}

.header__contact .nav_a span,
.gnav__contactText {
  padding: 0 0 0 30px;
  position: relative;
}
.header__contact .nav_a span::after,
.gnav__contactText::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 16px;
  background-image: url("../img/common/icon-contact.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 60%;
  left: 1px;
  transform: translateY(-50%);
}

.header__tel {
  background-color: #348fc3;
}
@media screen and (max-width: 1000px) {
  .header__tel {
    display: block;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
  }
  .header__tel .common-contact__tel a {
    font-size: 28px;
  }
  .header__tel .common-contact__time {
    font-size: 15px;
  }
  .header__tel .common-contact__tel::after {
    width: 25px;
    height: 25px;
  }
}

/* Sub menu */
.gnav > ul > li.is-open .menu,
.gnav__list > .gnav__item.is-open .menu {
  max-height: 9999px;
  opacity: 1;
  pointer-events: auto;
}

/* Label arrow */
.gnav > ul > li > label,
.gnav__label {
  position: relative;
}
.gnav > ul > li > label::after,
.gnav__label::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #53b3eb;
  border-bottom: 2px solid #53b3eb;
  transform: translateY(-50%) rotate(45deg);
  transition:
    transform 0.2s ease-in,
    border-color 0.2s ease-in;
}

.gnav > ul > li.is-open > label::after,
.gnav__list > .gnav__item.is-open > .gnav__label::after {
  transform: translateY(-50%) rotate(-135deg);
}

.gnav > ul > li > label,
.gnav__label {
  display: block;
  padding: 12px 35px 10px 15px;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .gnav > ul > li > label,
  .gnav__label {
    border-radius: 0;
    padding: 20px 22px 18px;
    font-size: 16px;
  }
}

.gnav > ul > .has-menu > label,
.gnav__item.has-menu > .gnav__label {
  padding: 40px 40px 40px 15px;
}
@media screen and (max-width: 1000px) {
  .gnav > ul > .has-menu > label,
  .gnav__item.has-menu > .gnav__label {
    padding: 20px 40px 20px 20px;
  }
}

.gnav input,
.gnav__toggle {
  display: none;
}

/* PC menu hidden by default */
@media screen and (min-width: 1001px) {
  .gnav ul > li > .menu,
  .gnav__item > .gnav__menu {
    transition: all 0.2s ease-in;
    max-height: 0;
    opacity: 0;
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    pointer-events: none;
  }
}
/* SP menu container */
@media screen and (max-width: 1000px) {
  .gnav > ul .menu,
  .gnav__menu {
    position: relative;
    text-align: left;
    opacity: 1;
    transition: all 0.2s ease-in;
    overflow: hidden;
    width: 100%;
    left: 0;
  }
  .gnav .menu,
  .gnav__menu {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
  }
  .gnav input:checked ~ .menu,
  .gnav__toggle:checked ~ .gnav__menu {
    box-sizing: border-box;
    padding: 0;
    height: auto;
    opacity: 1;
    color: #333333;
    background-color: #e8e8e8;
  }
  .gnav > ul > li.is-open > .menu,
  .gnav__list > .gnav__item.is-open > .gnav__menu {
    box-sizing: border-box;
    padding: 0;
    height: auto;
    opacity: 1;
    color: #333333;
    background-color: #e8e8e8;
  }
  .gnav .gul > li.is-open > .menu,
  .gnav__list > .gnav__item.is-open > .gnav__menu {
    height: auto;
    opacity: 1;
  }
}
.gnav > ul .menu .menu_inner,
.gnav__menuInner {
  width: 100%;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  box-shadow:
    0 24px 24px rgba(0, 0, 0, 0.05),
    0 28px 40px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1000px) {
  .gnav > ul .menu .menu_inner,
  .gnav__menuInner {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    height: auto;
  }
}

.gnav .menu_inner .menu_inner_ttl {
  background-color: #dd606d;
  font-size: 20px;
  padding: 20px 25px 15px;
  text-align: left;
  border-radius: 20px 20px 0 0;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .gnav .menu_inner .menu_inner_ttl {
    display: none;
  }
}

.gnav > ul .menu .menu_inner ul,
.gnav__menuList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .gnav > ul .menu .menu_inner ul,
  .gnav__menuList {
    border-radius: 0;
    padding: 10px 20px;
    background-color: rgba(226, 245, 255, 0.5);
  }
}

.gnav > ul .menu .menu_inner li,
.gnav__menuItem {
  display: inline-block;
  width: 24%;
  margin: 0 0.5% 20px;
}
@media screen and (max-width: 1000px) {
  .gnav > ul .menu .menu_inner li,
  .gnav__menuItem {
    width: 100%;
    border-bottom: 0;
    margin: 0;
  }
}

.gnav ul .menu a,
.gnav__menuLink {
  display: inline-block;
  width: 100%;
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.menu li p,
.gnav__menuText {
  color: #4e4e4e;
  padding: 15px 0 10px;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .menu li p,
  .gnav__menuText {
    padding: 18px 0;
  }
}

.menu_item_image,
.gnav__menuImg {
  width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
}
@media screen and (max-width: 1000px) {
  .menu_item_image,
  .gnav__menuImg {
    display: none;
  }
}
.menu_item_image img,
.gnav__menuImg img {
  width: 65%;
  margin: 0 auto;
}

.siteHeader.fixed {
  border-bottom: 2px solid #253868;
}

.siteHeader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 1000px) {
  .siteHeader__inner {
    display: block;
    width: 100%;
    padding: 0;
  }
}
.siteHeader__logo {
  width: 80%;
  max-width: 280px;
  margin: 0 15px 0;
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .siteHeader__logo {
    max-width: 220px;
  }
}

@media screen and (max-width: 1000px) {
  .siteHeader__logo {
    max-width: 280px;
    margin: 0;
    padding: 15px 10px 12px;
  }
}
.siteHeader__logoTitle {
  line-height: 0;
}

.siteHeader__logoLink {
  display: inline-block;
  width: 100%;
  padding: 13px;
}

.siteHeader__logoImg {
  width: 100%;
}

/* =========================================
   Global Navigation
========================================= */
@media screen and (max-width: 1000px) {
  .gnav,
  .siteHeader__nav {
    display: none;
    transition: 0.2s ease-in-out;
  }
}
@media screen and (max-width: 1000px) {
  .clicked .gnav,
  .clicked .siteHeader__nav {
    margin: 0;
    display: block;
  }
}
/* list */
.gnav .gul,
.gnav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}

@media screen and (max-width: 1000px) {
  .gnav .gul,
  .gnav__list {
    display: block;
    padding: 0 0 50px;
  }
}
.gnav__item {
  text-align: center;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 1000px) {
  .gnav__item {
    width: 100%;
    text-align: left;
    position: relative;
    margin: 0;
  }
}
/* label hover */
@media screen and (max-width: 1000px) {
  .gnav > .gul > li:hover > label,
  .gnav__list > .gnav__item:hover > label {
    cursor: pointer;
  }
}
.gul .menu_click label,
.gnav__item.menu_click label {
  background-color: #e8e8e8;
  color: #898989;
}

/* normal links */
.gnav__link {
  display: inline-block;
  padding: 12px 15px 10px;
  transition: all 0.2s ease-in;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .gnav__link {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }
}
@media screen and (max-width: 1000px) {
  .gnav ul li:nth-child(3) .nav_a {
    border-top: 0px solid #fff;
  }
}
/* contact button */
.header__contact {
  width: 210px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .header__contact {
    display: block;
    max-width: 600px;
    width: 90%;
    margin: 30px auto 20px;
  }
}
.gnav__item--contact .gnav__link {
  background-color: #253868;
  color: #fff;
  padding: 40px 0;
  width: 100%;
  border-radius: 0;
}

@media screen and (max-width: 1000px) {
  .gnav__item--contact .gnav__link {
    padding: 30px 0;
    border-radius: 50px;
  }
}
.header__contact .nav_a span,
.gnav__contactText {
  padding: 0 0 0 30px;
  position: relative;
}

.header__contact .nav_a span::after,
.gnav__contactText::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 16px;
  background-image: url("../img/common/icon-contact.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 60%;
  left: 1px;
  transform: translateY(-50%);
}

.header__tel {
  background-color: #348fc3;
}

@media screen and (max-width: 1000px) {
  .header__tel {
    display: block;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
  }
  .header__tel .common-contact__tel a {
    font-size: 28px;
  }
  .header__tel .common-contact__time {
    font-size: 15px;
  }
  .header__tel .common-contact__tel::after {
    width: 25px;
    height: 25px;
  }
}
/* =========================================
   Sub menu (click open: .is-open)
========================================= */
/* ▼ここだけ hover → click（.is-open）に差し替え */
.gnav > ul > li.is-open .menu,
.gnav__list > .gnav__item.is-open .menu {
  max-height: 9999px;
  opacity: 1;
  pointer-events: auto;
}

/* ▲ここまで */
/* ▼ラベル右側に矢印を表示（PC/SP共通） */
.gnav > ul > li > label,
.gnav__label {
  position: relative;
}

/* 矢印本体：borderで「く」の字を作る */
.gnav > ul > li > label::after,
.gnav__label::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #53b3eb;
  border-bottom: 2px solid #53b3eb;
  transform: translateY(-50%) rotate(45deg); /* ▼向き */
  transition:
    transform 0.2s ease-in,
    border-color 0.2s ease-in;
}

/* クリックで開いた状態（.is-open）では ▲向きに回転 */
.gnav > ul > li.is-open > label::after,
.gnav__list > .gnav__item.is-open > .gnav__label::after {
  transform: translateY(-50%) rotate(-135deg); /* ▲向き */
}

/* ▲ここまで */
.gnav > ul > li > label,
.gnav__label {
  display: block;
  padding: 12px 35px 10px 15px;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  line-height: 1;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .gnav > ul > li > label,
  .gnav__label {
    border-radius: 0;
    padding: 20px 22px 18px;
    font-size: 16px;
  }
}
.gnav > ul > .has-menu > label,
.gnav__item.has-menu > .gnav__label {
  padding: 40px 40px 40px 15px;
}

@media screen and (max-width: 1000px) {
  .gnav > ul > .has-menu > label,
  .gnav__item.has-menu > .gnav__label {
    padding: 20px 40px 20px 20px;
  }
}
/*チェックは見えなくする*/
.gnav input,
.gnav__toggle {
  display: none;
}

/* PC menu hidden by default */
@media screen and (min-width: 1001px) {
  .gnav ul > li > .menu,
  .gnav__item > .gnav__menu {
    transition: all 0.2s ease-in;
    max-height: 0;
    opacity: 0;
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    pointer-events: none;
  }
}
/* SP menu container */
@media screen and (max-width: 1000px) {
  .gnav > ul .menu,
  .gnav__menu {
    position: relative;
    text-align: left;
    opacity: 1;
    transition: all 0.2s ease-in;
    overflow: hidden;
    width: 100%;
    left: 0;
  }
}
.gnav > ul .menu .menu_inner,
.gnav__menuInner {
  width: 100%;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  box-shadow:
    0 24px 24px rgba(0, 0, 0, 0.05),
    0 28px 40px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 1000px) {
  .gnav > ul .menu .menu_inner,
  .gnav__menuInner {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    height: auto;
  }
}
.gnav .menu_inner .menu_inner_ttl {
  background-color: #dd606d;
  font-size: 20px;
  padding: 20px 25px 15px;
  text-align: left;
  border-radius: 20px 20px 0 0;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .gnav .menu_inner .menu_inner_ttl {
    display: none;
  }
}
.gnav > ul .menu .menu_inner ul,
.gnav__menuList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .gnav > ul .menu .menu_inner ul,
  .gnav__menuList {
    border-radius: 0;
    padding: 10px 20px;
    background-color: rgba(226, 245, 255, 0.5);
  }
}
.gnav > ul .menu .menu_inner li,
.gnav__menuItem {
  display: inline-block;
  width: 24%;
  margin: 0 0.5% 20px;
}

@media screen and (max-width: 1000px) {
  .gnav > ul .menu .menu_inner li,
  .gnav__menuItem {
    width: 100%;
    border-bottom: 0;
    margin: 0;
  }
}
.gnav ul .menu a,
.gnav__menuLink {
  display: inline-block;
  width: 100%;
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.menu li p,
.gnav__menuText {
  color: #4e4e4e;
  padding: 15px 0 10px;
  font-size: 16px;
  line-height: 1;
}

@media screen and (max-width: 1000px) {
  .menu li p,
  .gnav__menuText {
    padding: 18px 0;
  }
}
.menu_item_image,
.gnav__menuImg {
  width: 100%;
  margin: 0 auto;
  padding: 5px 10px;
}

@media screen and (max-width: 1000px) {
  .menu_item_image,
  .gnav__menuImg {
    display: none;
  }
}
.menu_item_image img,
.gnav__menuImg img {
  width: 65%;
  margin: 0 auto;
}

/* SP closed state */
@media screen and (max-width: 1000px) {
  .gnav .menu,
  .gnav__menu {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
  }
}
/* checkbox open (残してOK：JSがchecked同期するため) */
@media screen and (max-width: 1000px) {
  .gnav input:checked ~ .menu,
  .gnav__toggle:checked ~ .gnav__menu {
    box-sizing: border-box;
    padding: 0;
    height: auto;
    opacity: 1;
    color: #333;
    background-color: #e8e8e8;
  }
}
/* click open (.is-open) */
@media screen and (max-width: 1000px) {
  .gnav > ul > li.is-open > .menu,
  .gnav__list > .gnav__item.is-open > .gnav__menu {
    box-sizing: border-box;
    padding: 0;
    height: auto;
    opacity: 1;
    color: #333;
    background-color: #e8e8e8;
  }
}
@media screen and (max-width: 1000px) {
  .gnav .gul > li.is-open > .menu,
  .gnav__list > .gnav__item.is-open > .gnav__menu {
    height: auto;
    opacity: 1;
  }
}
/* ========================================
   Footer Styles
======================================== */
.siteFooter {
  padding: 100px 0 70px;
}
@media screen and (max-width: 1000px) {
  .siteFooter {
    padding: 80px 0 50px;
  }
}

.siteFooter__inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.siteFooter__main {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .siteFooter__main {
    display: block;
  }
}

.siteFooter__info {
  padding: 0 110px 0 0;
  margin: 0 110px 0 0;
  border-right: 1px solid #c9ced2;
}
@media screen and (max-width: 1000px) {
  .siteFooter__info {
    padding: 0 0 40px;
    margin: 0 0 40px;
    border-right: 0;
    border-bottom: 1px solid #c9ced2;
  }
}

.siteFooter__logo {
  width: 216px;
  margin: 0 0 30px;
}

.siteFooter__zip,
.siteFooter__addr,
.siteFooter__tel {
  color: #333333;
  margin: 0 0 6px;
}
.siteFooter__zip:last-child,
.siteFooter__addr:last-child,
.siteFooter__tel:last-child {
  margin: 0;
}

.siteFooter__navList {
  display: flex;
  flex-wrap: wrap;
  max-width: 270px;
}
@media screen and (max-width: 1000px) {
  .siteFooter__navList {
    display: block;
    max-width: 100%;
  }
}

.siteFooter__navItem {
  width: 130px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1000px) {
  .siteFooter__navItem {
    width: 100%;
    margin: 0 0 30px;
  }
}

.siteFooter__navLink {
  font-size: 17px;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .siteFooter__navLink {
    font-size: 16px;
    display: inline-block;
    width: 100%;
  }
}

.siteFooter__bottom {
  display: flex;
  justify-content: space-between;
  padding: 55px 0 0;
}

.siteFooter__copyright {
  font-size: 15px;
  color: #333333;
  font-weight: 300;
}

.pagetop {
  width: 41px;
}

.siteFooter__main {
  display: flex;
}

@media screen and (max-width: 1000px) {
  .siteFooter__main {
    display: block;
  }
}
.siteFooter__info {
  padding: 0 110px 0 0;
  margin: 0 110px 0 0;
  border-right: 1px solid #c9ced2;
}

@media screen and (max-width: 1000px) {
  .siteFooter__info {
    padding: 0 0 40px;
    margin: 0 0 40px;
    border-right: 0px solid #c9ced2;
    border-bottom: 1px solid #c9ced2;
  }
}
.siteFooter__logo {
  width: 216px;
  margin: 0 0 30px;
}

.siteFooter__zip {
  margin: 0 0 6px;
  color: #333333;
}

.siteFooter__addr {
  margin: 0 0 6px;
  color: #333333;
}

.siteFooter__tel {
  color: #333333;
}

.siteFooter__navList {
  display: flex;
  flex-wrap: wrap;
  max-width: 270px;
}

@media screen and (max-width: 1000px) {
  .siteFooter__navList {
    display: block;
    max-width: 100%;
  }
}
.siteFooter__navItem {
  width: 160px;
  margin: 0 0 30px;
}

@media screen and (max-width: 1000px) {
  .siteFooter__navItem {
    width: 100%;
    margin: 0 0 30px;
  }
}
.siteFooter__navLink {
  font-size: 17px;
  color: #333333;
}

@media screen and (max-width: 1000px) {
  .siteFooter__navLink {
    font-size: 16px;
    display: inline-block;
    width: 100%;
  }
}
.siteFooter__bottom {
  display: flex;
  justify-content: space-between;
  padding: 55px 0 0;
}

.siteFooter__copyright {
  font-size: 15px;
  color: #333333;
  font-weight: 300;
}

@media screen and (max-width: 1000px) {
  .siteFooter__copyright {
    font-size: 13px;
  }
}

.pagetop {
  width: 41px;
}

/* ========================================
   Page Hero Styles
======================================== */
.page-hero {
  padding: 80px 0 70px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .page-hero {
    padding: 60px 0;
  }
}

.page-hero__bg {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/common/hero_back.png");
  background-position: left bottom;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .page-hero__bg {
    left: 0;
  }
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .page-hero__inner {
  }
}

.page-hero__title {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  display: block;
  letter-spacing: 0.1rem;
  margin: 0 0 8px;
}

@media screen and (max-width: 1000px) {
  .page-hero__title {
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  .page-hero__title {
    font-size: 20px;
  }
}

/* ========================================
   Product Page Styles
======================================== */
.product {
  padding: 110px 0 320px;
}
@media screen and (max-width: 1000px) {
  .product {
    padding: 80px 0 160px;
  }
}

.product__inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.product__lead {
  line-height: 1.7;
  text-align: center;
  font-size: 18px;
  color: #333333;
}
@media screen and (max-width: 1000px) {
  .product__lead {
    font-size: 16px;
  }
}

.product__list {
  padding: 69px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product__item {
  width: 24%;
  background-color: #fff;
  padding: 20px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1000px) {
  .product__item {
    width: 48%;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 500px) {
  .product__item {
    padding: 12px;
    margin: 0 0 20px;
  }
}
.product__item:nth-child(2) .product__link {
  background-color: #2b8dd2;
}
.product__item:nth-child(3) .product__link {
  background-color: #dd4a33;
}
.product__item:nth-child(4) .product__link {
  background-color: #4ab57a;
}
.product__item:nth-child(5) .product__link {
  background-color: #b1764d;
}
.product__item:nth-child(6) .product__link {
  background-color: #e18f1d;
}
.product__item:nth-child(7) .product__link {
  background-color: #7c65ae;
}
.product__item:nth-child(8) .product__link {
  background-color: #6f757b;
}

.product__itemImg {
  width: 100%;
  margin: 0 0 15px;
}

.product__link {
  padding: 17px 0;
  font-size: 18px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #53b3eb;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .product__link {
    padding: 15px 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .product__link {
    padding: 10px 0;
    font-size: 14px;
  }
}
.product__link::after {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  background-image: url("../img/common/icon-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .product__link::after {
    height: 18px;
    width: 18px;
  }
}
@media screen and (max-width: 500px) {
  .product__link::after {
    height: 13px;
    width: 13px;
    right: 8px;
  }
}

/* Product List */
.product-list {
  padding: 40px 0 120px;
}
@media screen and (max-width: 1000px) {
  .product-list {
    padding: 0 0 60px;
  }
}

.product-list__inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.product-list__section {
  padding: 0 0 110px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .product-list__section {
    padding: 0 0 60px;
  }
}
.product-list__section:nth-child(2n)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  right: -100%;
  bottom: 0;
  background-color: rgba(181, 224, 245, 0.3);
  z-index: -1;
}

.product-list__title {
  padding: 110px 0 30px;
  margin: 0 0 40px;
  color: #333333;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .product-list__title {
    padding: 70px 0 25px;
    margin: 0 0 25px;
    font-size: 20px;
  }
}
.product-list__title::before {
  content: "";
  position: absolute;
  z-index: 2;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c9ced2;
}
.product-list__title::after {
  content: "";
  position: absolute;
  z-index: 2;
  height: 1px;
  width: 60px;
  left: 0;
  bottom: 0;
  background-color: #53b3eb;
}

.product-list__grid {
  display: flex;
  flex-wrap: wrap;
}

.product-card {
  width: 23%;
  margin: 0 1% 30px;
}
@media screen and (max-width: 1000px) {
  .product-card {
    width: 48%;
    margin: 0 1% 30px;
  }
}

.product-card__img {
  margin: 0 0 15px;
}

.product-card__name {
  font-size: 20px;
  color: #333333;
  margin: 0 0 15px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .product-card__name {
    font-size: 16px;
  }
}

.product-card__maker {
  font-size: 16px;
  color: #6f757b;
}
@media screen and (max-width: 1000px) {
  .product-card__maker {
    font-size: 14px;
  }
}

/* =========================================
   Common Sections
========================================= */
.main {
  padding: 96px 0 0;
}
@media screen and (max-width: 1000px) {
  .main {
    padding: 85px 0 0;
  }
}

body.customize-support .main {
  padding: 128px 0 0;
}

@media screen and (max-width: 782px) {
  body.customize-support .main {
    padding: 134px 0 0;
  }
}

/* Breadcrumb */
.breadcrumb {
  position: relative;
  width: 95%;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .breadcrumb {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb__item {
  position: relative;
  padding: 0 0 0 30px;
  align-items: center;
  font-size: 14px;
  color: #333;
}
@media screen and (max-width: 1000px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}
.breadcrumb__item + .breadcrumb__item ::before {
  content: "";
  height: 12px;
  width: 15px;
  position: absolute;
  top: 5px;
  left: 8px;
  background-image: url("../img/common/bread-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.breadcrumb__home {
  width: 18px;
  display: block;
  margin: -5px 0 0;
}
@media screen and (max-width: 1000px) {
  .breadcrumb__home {
    margin: -1px 0 0;
  }
}

/* Section Title */
.section-title {
  font-size: 48px;
  color: #1e2346;
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin: 0 0 50px;
  line-height: 0.8;
}
@media screen and (max-width: 1000px) {
  .section-title {
    font-size: 22px;
    margin: 0 0 30px;
    line-height: 1.2;
  }
}

.top-about__textbox .section-title {
  font-size: 30px;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .top-about__textbox .section-title {
    font-size: 22px;
  }
}

.section-title__sub {
  color: #1e2346;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .section-title__sub {
    font-size: 14px;
  }
}

/* Section Link */
.section-link {
  display: block;
  max-width: 370px;
  width: 90%;
  padding: 30px;
  background-color: #53b3eb;
  color: #fff;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  margin: 60px 0 0;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .section-link {
    width: 90%;
    padding: 20px 0;
    font-size: 18px;
    margin: 60px auto 0;
  }
}
.section-link::after {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  background-image: url("../img/common/icon-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .section-link::after {
    height: 16px;
    width: 16px;
    right: 12px;
  }
}
.section-link.is-white {
  background-color: #fff;
  color: #333333;
}
.section-link.is-white::after {
  background-image: url("../img/common/icon-arrow-blue.png");
}
.section-link.is-center {
  margin: 0 auto;
}

/* Common Contact Section */
.common-contact {
  padding: 110px 0;
  background-color: #1e2346;
}
@media screen and (max-width: 1000px) {
  .common-contact {
    padding: 60px 0;
  }
}

.common-contact__inner {
  width: 90%;
  max-width: 970px;
  margin: 0 auto;
}

.common-contact__header {
  display: flex;
  align-items: flex-end;
  padding: 0 0 40px;
  border-bottom: 1px solid #addbf2;
  margin: 0 0 40px;
}
@media screen and (max-width: 1000px) {
  .common-contact__header {
    display: block;
    padding: 0 0 30px;
    margin: 0 0 30px;
  }
}

.common-contact__title {
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  margin: 0 40px 0 0;
}
@media screen and (max-width: 1000px) {
  .common-contact__title {
    font-size: 28px;
    margin: 0 0 20px;
  }
}

.common-contact__lead {
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .common-contact__lead {
    font-size: 16px;
  }
}

.common-contact__content {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .common-contact__content {
    display: block;
  }
}

.common-contact__content ul {
  padding: 20px 0;
}

.common-contact__content ul li {
  color: #fff;
  position: relative;
  padding: 0 0 0 20px;
}

.common-contact__content ul li::after {
  content: "";
  position: absolute;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #fff;
  left: 0;
  top: 9px;
}

.common-contact__telBox {
  padding: 0 0 0 40px;
}

.common-contact__tel {
  position: relative;
}
.common-contact__tel::after {
  content: "";
  position: absolute;
  height: 35px;
  width: 36px;
  background-image: url("../img/common/icon-tell.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: -40px;
  bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .common-contact__tel::after {
    height: 25px;
    width: 25px;
  }
}
.common-contact__tel a {
  font-size: 60px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .common-contact__tel a {
    font-size: 30px;
  }
}

.common-contact__time {
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .common-contact__time {
    font-size: 15px;
  }
}

.common-contact__btn {
  padding: 32px 0;
  background-color: #fff;
  text-align: center;
  max-width: 450px;
  width: 90%;
  font-size: 24px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0px 13px 28px -5px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .common-contact__btn {
    padding: 26px 0;
    margin: 40px auto;
    font-size: 18px;
  }
}

.common-contact__mailIcon {
  display: inline-block;
  width: 34px;
  height: 27px;
  background-image: url("../img/common/contact.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 20px 0 0;
}

.pagination {
  display: flex;
  justify-content: center;
}

.page-numbers {
  font-size: 15px;
  padding: 11px 13px 10px;
  border: 1px solid #a3a3a3;
  border-radius: 11px;
  color: #253868;
  font-weight: bold;
  margin: 0 10px;
}

.page-numbers.current {
  background-color: #253868;
  color: #fff;
  border: 1px solid #253868;
}

.page-numbers.prev,
.page-numbers.next {
  background-color: #253868;
  color: #fff;
  border: 1px solid #253868;
  padding: 11px 23px 10px;
}

.news_pager {
  display: flex;
  justify-content: space-between;
}
