@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
/* ===== Noto Sans JP ===== */
/* ===== Jost ===== */
/* ===== Amiri ===== */
/* ===== Roboto ===== */
/* ===== Noto Serif JP ===== */
/* ==================================
    HEADER
================================== */
.header {
  position: relative;
  width: 100%;
  padding-left: 75px;
  padding-bottom: 30px;
  z-index: 1000;
}

.header-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-contents__logo {
  margin-top: 20px;
  margin-right: 20px;
}

.header-contents__logoText {
  display: block;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #58b9cf;
}

.header-contents__logoImage {
  margin-top: 5px;
}

.header-contents__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
}

.header-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-contact__tel {
  margin-right: 25px;
}

.header-contact__telText {
  padding-left: 38px;
  background-image: url(../images/icon/tel_icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  font-family: "Jost", "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
}

.header-contact__mailButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 54px;
  background-color: #78cde7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-contact__mailButton:hover {
  background-color: #fff;
}

.header-contact__mailButton:hover .header-contact__mailText {
  background-image: url(../images/icon/mail_icon_w.svg);
  color: #78cde7;
}

.header-contact__mailText {
  padding-left: 33px;
  background-image: url(../images/icon/mail_icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0em;
  color: #fff;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.is-headerFixed .header {
  position: fixed;
  top: 0;
  left: 0;
  padding-bottom: 15px;
  background-color: #fff;
  -webkit-box-shadow: 2.5px 4.3px 5px 0 rgba(103, 102, 102, 0.1);
          box-shadow: 2.5px 4.3px 5px 0 rgba(103, 102, 102, 0.1);
  z-index: 103;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.is-headerFixed .header-contents__logo {
  margin-top: 15px;
  margin-right: 20px;
}

.is-headerFixed .header-contents__logoText {
  font-size: 20px;
}

.is-headerFixed .header-contents__logoImage {
  margin-top: 5px;
}

.is-headerFixed .header-contact__tel {
  margin-right: 25px;
}

.is-headerFixed .header-contact__telText {
  padding-left: 30px;
  background-size: 25px auto;
  font-size: 20px;
}

.is-headerFixed .header-contact__mailButton {
  width: 250px;
  height: 40px;
}

.is-headerFixed .header-contact__mailText {
  font-size: 14px;
}

.open .header {
  -webkit-box-shadow: 2.5px 4.3px 5px 0 rgba(103, 102, 102, 0.1);
          box-shadow: 2.5px 4.3px 5px 0 rgba(103, 102, 102, 0.1);
}

@media screen and (max-width: 1480px) {
  .header {
    padding-left: 56px;
    padding-bottom: 22px;
  }
  .header-contents__logo {
    margin-top: 11px;
    margin-right: 15px;
  }
  .header-contents__logoText {
    font-size: 20px;
  }
  .header-contact__tel {
    margin-right: 18px;
  }
  .header-contact__telText {
    background-size: 22px auto;
    padding-left: 28px;
    font-size: 21px;
  }
  .header-contact__mailButton {
    width: 220px;
    height: 40px;
  }
  .header-contact__mailText {
    padding-left: 24px;
    background-size: 17px auto;
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .header {
    padding-left: 42px;
    padding-bottom: 22px;
  }
  .header-contents__logo {
    margin-top: 11px;
    margin-right: 10px;
  }
  .header-contents__logoText {
    font-size: 18px;
  }
  .is-headerFixed .header {
    padding-bottom: 10px;
  }
  .is-headerFixed .header-contents__logo {
    margin-top: 10px;
    margin-right: 20px;
  }
  .is-headerFixed .header-contents__logoText {
    font-size: 19px;
  }
}

@media screen and (max-width: 992px) {
  .header {
    height: calc(160/992*100vw);
    padding-left: calc(38/992*100vw);
    padding-right: calc(20/992*100vw);
    padding-top: calc(17/992*100vw);
    padding-bottom: calc(17/992*100vw);
  }
  .header-contents__logo {
    margin-top: 0px;
    margin-right: 10px;
  }
  .header-contents__logoText {
    font-size: calc(38/992*100vw);
  }
  .header-contents__logoImage {
    margin-top: calc(10/992*100vw);
    width: calc(363/992*100vw);
  }
  .header-contact {
    display: none;
  }
  .is-headerFixed .header {
    height: calc(140/992*100vw);
    padding-bottom: 10px;
  }
  .is-headerFixed .header-contents__logo {
    margin-top: 0px;
    margin-right: 10px;
  }
  .is-headerFixed .header-contents__logoText {
    font-size: calc(30/992*100vw);
  }
  .is-headerFixed .header-contents__logoImage {
    margin-top: calc(10/992*100vw);
    width: calc(363/992*100vw);
  }
}

@media screen and (max-width: 750px) {
  .header {
    height: calc(160/750*100vw);
    padding-left: calc(38/750*100vw);
    padding-right: calc(20/750*100vw);
    padding-top: calc(17/750*100vw);
    padding-bottom: calc(17/750*100vw);
  }
  .header-contents__logo {
    margin-top: 0px;
    margin-right: 10px;
  }
  .header-contents__logoText {
    font-size: calc(38/750*100vw);
  }
  .header-contents__logoImage {
    margin-top: calc(10/750*100vw);
    width: calc(363/750*100vw);
  }
  .is-headerFixed .header {
    height: calc(120/750*100vw);
    padding-bottom: calc(17/750*100vw);
  }
  .is-headerFixed .header-contents__logo {
    margin-top: 0px;
    margin-right: 10px;
  }
  .is-headerFixed .header-contents__logoText {
    font-size: calc(24/750*100vw);
  }
  .is-headerFixed .header-contents__logoImage {
    margin-top: calc(10/750*100vw);
    width: calc(272/750*100vw);
  }
}

/* ==================================
    GLOBALNAV
================================== */
.globalnav {
  margin-top: 20px;
}

.globalnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.globalnav__list .is-navDropdown {
  position: relative;
  cursor: pointer;
}

.globalnav__item {
  margin-right: 40px;
}

.globalnav__itemLink {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.globalnav__itemLink::after {
  content: "";
  display: block;
  position: absolute;
  top: 115%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 0%;
  height: 1px;
  background-color: #323232;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 100;
}

.globalnav__itemLink:hover::after {
  width: 100%;
}

.globalnav-subnav {
  display: none;
  width: 300px;
  position: absolute;
  top: 100%;
  left: -20px;
  padding-top: 14%;
  background-color: #fff;
  z-index: 99;
}

.globalnav-subnav__itemLink {
  display: block;
  padding-left: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  background-image: url(../images/icon/arrow_icon.svg);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 6px auto;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.globalnav-subnav__itemLink:hover {
  background-color: #f6f6f6;
}

@media screen and (max-width: 1480px) {
  .globalnav {
    margin-top: 15px;
  }
  .globalnav__item {
    margin-right: 30px;
  }
  .globalnav__itemLink {
    font-size: 14px;
  }
  .globalnav-subnav__itemLink {
    display: block;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .globalnav-subnav__itemLink:hover {
    background-color: #f6f6f6;
  }
}

@media screen and (max-width: 1200px) {
  .globalnav {
    margin-top: 10px;
  }
  .globalnav__item {
    margin-right: 22px;
  }
  .globalnav__itemLink {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  .globalnav {
    display: none;
  }
}

/* ==================================
    FOOTER
================================== */
.footer .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-about__logoLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.footer-about__logoLink object {
  margin-top: 12px;
  height: 35px;
}

.footer-about__logoText {
  display: block;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #61bbd0;
}

.footer-about__address {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: left;
  color: #000;
}

.footer-about__address--tel {
  display: block;
}

.footer-about__button {
  margin-top: 15px;
}

.footer-about__buttonLink {
  display: block;
}

.footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  border-top: solid 1px #cccdce;
  border-bottom: solid 1px #cccdce;
}

.footer-copyright__text {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #76787b;
}

@media screen and (max-width: 1200px) {
  .footer-about__logoText {
    display: block;
    font-size: 18px;
  }
  .footer-about__address {
    margin-top: 12px;
    font-size: 12px;
  }
  .footer-about__button {
    margin-top: 11px;
  }
  .footer-copyright {
    height: 45px;
  }
  .footer-copyright__text {
    font-size: 12px;
  }
}

@media screen and (max-width: 992px) {
  .footer .contents-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-about__logoText {
    font-size: 23px;
  }
  .footer-about__address {
    margin-top: 12px;
    font-size: 14px;
  }
  .footer-about__button {
    margin-top: 11px;
  }
  .footer-copyright {
    height: 45px;
  }
  .footer-copyright__text {
    font-size: 12px;
  }
}

@media screen and (max-width: 750px) {
  .footer {
    padding-bottom: calc(75/375*100vw);
  }
  .footer .contents-wrapper {
    width: 100%;
    padding-bottom: 0;
  }
  .footer-about__logoText {
    font-size: 18px;
  }
  .footer-about__address {
    margin-top: 12px;
    font-size: 12px;
  }
  .footer-about__button {
    margin-top: 11px;
  }
  .footer-copyright {
    height: 60px;
    border-top: none;
  }
  .footer-copyright__text {
    font-size: 12px;
  }
}

/* ==================================
    FOOTER
================================== */
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 251px;
  background-color: #74c3d6;
}

.footer-contact:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(700/1600*100%);
  height: 100%;
  right: 0;
  top: 0;
  background-image: url(../images/common/footer_contact_img.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.footer-contact__titleText {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #fff;
}

.footer-contact__text {
  margin-top: 23px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-contact__buttonList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  margin-right: -15px;
}

.footer-contact__buttonItem {
  width: 280px;
  height: 60px;
  margin-right: 15px;
}

.footer-contact__buttonLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.footer-contact__buttonLink--tel {
  border: solid 1px #fff;
}

.footer-contact__buttonLink--tel .footer-contact__buttonText {
  padding-left: 44px;
  background-image: url(../images/icon/tel_icon_w.svg);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left center;
  font-family: "Jost", "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-contact__buttonLink--tel:hover {
  background-color: #fff;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-contact__buttonLink--tel:hover .footer-contact__buttonText {
  background-image: url(../images/icon/tel_icon.svg);
  color: #4ab5ce;
}

.footer-contact__buttonLink--mail {
  background-color: #fff;
}

.footer-contact__buttonLink--mail .footer-contact__buttonText {
  padding-left: 34px;
  background-image: url(../images/icon/mail_icon_w.svg);
  background-repeat: no-repeat;
  background-size: 23px auto;
  background-position: left center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #4ab5ce;
}

.footer-contact__buttonLink--mail:hover {
  background-color: #4ab5ce;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-contact__buttonLink--mail:hover .footer-contact__buttonText {
  padding-left: 34px;
  background-image: url(../images/icon/mail_icon.svg);
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .footer-contact {
    height: 188px;
  }
  .footer-contact:after {
    width: calc(700/1600*100%);
  }
  .footer-contact__titleText {
    font-size: 18px;
  }
  .footer-contact__text {
    margin-top: 17px;
    font-size: 14px;
  }
  .footer-contact__buttonList {
    margin-top: 18px;
    margin-right: -11px;
  }
  .footer-contact__buttonItem {
    width: 210px;
    height: 45px;
    margin-right: 11px;
  }
  .footer-contact__buttonLink--tel .footer-contact__buttonText {
    padding-left: 33px;
    background-size: 22px auto;
    font-size: 18px;
  }
  .footer-contact__buttonLink--mail .footer-contact__buttonText {
    padding-left: 25px;
    background-size: 18px auto;
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  .footer-contact {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 300px;
    height: auto;
  }
  .footer-contact:after {
    width: 100%;
    height: 250px;
    top: auto;
    bottom: 0;
  }
  .footer-contact__titleText {
    font-size: 25px;
  }
  .footer-contact__text {
    margin-top: 23px;
    font-size: 16px;
  }
  .footer-contact__buttonList {
    margin-top: 18px;
    margin-right: -11px;
  }
  .footer-contact__buttonItem {
    width: 280px;
    height: 60px;
    margin-right: 15px;
  }
  .footer-contact__buttonLink--tel .footer-contact__buttonText {
    padding-left: 44px;
    background-size: 30px auto;
    font-size: 25px;
  }
  .footer-contact__buttonLink--mail .footer-contact__buttonText {
    padding-left: 34px;
    background-size: 23px auto;
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .footer-contact {
    padding-top: 38px;
    padding-bottom: calc(225/375*100vw);
  }
  .footer-contact:after {
    width: 100%;
    height: calc(188/375*100vw);
  }
  .footer-contact__titleText {
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
  }
  .footer-contact__titleText span {
    display: inline-block;
  }
  .footer-contact__text {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
  }
  .footer-contact__buttonList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 14px;
    margin-right: -11px;
  }
  .footer-contact__buttonItem {
    width: 280px;
    height: 60px;
    margin-top: 14px;
    margin-right: 15px;
  }
  .footer-contact__buttonLink--tel .footer-contact__buttonText {
    padding-left: 44px;
    background-size: 30px auto;
    font-size: 25px;
  }
  .footer-contact__buttonLink--mail .footer-contact__buttonText {
    padding-left: 34px;
    background-size: 23px auto;
    font-size: 16px;
  }
}

/* ==================================
    FOOTER NAV
================================== */
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}

.footer-nav__wrapper {
  margin-left: 50px;
}

.footer-nav__wrapper--sp {
  display: none;
}

.footer-nav__list {
  margin-top: -3px;
}

.footer-nav__item {
  margin-top: 3px;
  padding-left: 13px;
  background-image: url(../images/icon/arrow_icon.svg);
  background-repeat: no-repeat;
  background-position: left 8px;
  background-size: 6px auto;
}

.footer-nav__itemLink {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #000;
}

.footer-nav__title {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #000;
}

@media screen and (max-width: 1200px) {
  .footer-nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer-nav__wrapper {
    margin-left: 38px;
  }
  .footer-nav__list {
    margin-top: -3px;
  }
  .footer-nav__itemLink {
    font-size: 14px;
  }
  .footer-nav__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  .footer-nav {
    margin-top: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-nav__wrapper {
    margin-left: 50px;
  }
  .footer-nav__list {
    margin-top: 0px;
  }
  .footer-nav__item {
    margin-top: 8px;
  }
  .footer-nav__itemLink {
    font-size: 16px;
  }
  .footer-nav__title {
    font-size: 16px;
  }
}

@media screen and (max-width: 750px) {
  .footer-nav {
    margin-left: -20px;
  }
  .footer-nav__wrapper {
    margin-left: 20px;
  }
  .footer-nav__itemLink {
    font-size: 14px;
  }
  .footer-nav__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 0px;
    border-bottom: 1px solid #d5d5d5;
  }
  .footer-nav__wrapper {
    margin-left: 0px;
  }
  .footer-nav__wrapper--sp {
    display: block;
  }
  .footer-nav__wrapper--pc {
    display: none;
  }
  .footer-nav__list {
    margin-top: 0px;
  }
  .footer-nav__item {
    margin-top: 0px;
    background-image: url(../images/icon/arrow_icon.svg);
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 6px auto;
    border-top: 1px solid #d5d5d5;
  }
  .footer-nav__itemLink {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    font-size: 14px;
  }
  .footer-nav__title {
    display: block;
    margin-bottom: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 19px;
    font-size: 14px;
  }
  .footer-nav .is-dropdown .footer-nav__list {
    display: none;
    background-color: #f6f6f6;
  }
  .footer-nav .is-dropdown .footer-nav__itemLink {
    font-size: 14px;
  }
  .footer-nav .is-dropdown .footer-nav__title {
    position: relative;
    border-top: 1px solid #d5d5d5;
  }
  .footer-nav .is-dropdown .footer-nav__title::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border-right: 2px solid #84c5d4;
    border-bottom: 2px solid #84c5d4;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .footer-nav .is-dropdown.close .footer-nav__title::after {
    width: 8px;
    height: 8px;
    right: 20px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}




/*** レスポンシブテーブルデザイン ***/
.shokai{
	width: 100%;
	border: 2px solid #d6ceb4;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	margin-bottom: 30px;
	margin-top: 20px;
  font-size: 90%;
}
 
.shokai th{
  padding: 15px;
  border-top: solid 1px #ffffff;
  width: 30%;
  overflow: hidden;
  color: #13131e;
  font-style: normal;
  font-weight: bold;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
  vertical-align: top;
  background-color: #eeece4;
}
 
.shokai td{
padding: 15px;
text-align: left;
vertical-align: top;
color: #595960;
background-color: #ffffff;
border-top: dotted 1px #e0dccc;
overflow: hidden;
word-break: break-all;
word-wrap: break-word;
}
 
@media (max-width: 768px){
.shokai th{
  width:100%;
  display:block;
  margin: 0 auto;
  border:none;
  border-radius: 3px;
}
.shokai td{
  display: list-item;
  width: 95%;
  border-top: none !important;
}
}
/*** レスポンシブテーブルデザイン　おわり ***/

