@charset "utf-8";

/*=============================================
=            COMMON            =
=============================================*/

html {
  font-size: 62.5%;
}

.scroll-prevent {
  overflow: hidden;
}

body {
  background: #fff;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: source-han-sans-cjk-ja, "Roboto", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-print-color-adjust: exact;
  color: #002f7b;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  letter-spacing: 0.1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
}

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

main {
  overflow: hidden;
}

.en {
  font-family: "Roboto", sans-serif;
}

.marker {
  display: inline;
  background: -o-linear-gradient(transparent 60%, rgba(255, 255, 0, 0.9) 0%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, transparent),
    color-stop(0%, rgba(255, 255, 0, 0.9))
  );
  background: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.9) 0%);
  padding: 0 2px 0px;
}

img {
  max-width: 100%;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}

/*=====  End of COMMON  ======*/

/*=============================================
=            HEADER            =
=============================================*/
header #headerWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 80px;
}

header #headerWrapper .logo {
  width: 180px;
  margin-left: 15px;
}
header #headerWrapper .logo svg {
  width: 100%;
}

header #headerWrapper nav.desktopNav {
  display: none;
}

header #headerWrapper nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header #headerWrapper nav a {
  display: block;
  text-decoration: none;
  padding: 28px 25px;
}

header #headerWrapper nav a.navContact_A {
  background-color: #002f7b;
  padding: 28px 45px;
  color: #ffff00;
  font-weight: 600;
}

header #headerWrapper nav a.navContact_B {
  background-color: #ffff00;
  padding: 28px 63px;
  color: #002f7b;
  font-weight: 600;
}

header #headerWrapper nav a.navContact_C {
  background-color: #a8a8a8d4;
  padding: 28px 39px;
  color: #ffffff;
}

header #headerWrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

header #headerWrapper .mo-trigger {
  width: 50px;
  height: 50px;
  position: fixed;
  cursor: pointer;
  z-index: 4;
  right: 15px;
  top: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  border: #002f7b 2px solid;
  border-radius: 60px;
}

header #headerWrapper .mo-trigger.active {
  background-color: #002f7b;
}

header #headerWrapper .mo-trigger span {
  position: absolute;
  content: "";
  width: 26px;
  height: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  background-color: #002f7b;
  transition: 0.3s all ease-in-out;
}
header #headerWrapper .mo-trigger.active span {
  background-color: #fff;
}

header #headerWrapper .mo-trigger span:first-child {
  top: 35%;
}

header #headerWrapper .mo-trigger span:last-child {
  top: 65%;
}

header #headerWrapper .mo-trigger.active span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

header #headerWrapper .mo-trigger.active span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}
header #headerWrapper .mo-trigger.active span:nth-child(2) {
  transform: translate(-50%, -50%) translateX(5px);
  opacity: 0;
}
header #headerWrapper nav.mobileNav {
  height: 100vh;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 3;
  width: 80%;
  right: 0;
  left: auto;
  top: 0;
  padding: 80px 30px 0;
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-left: 5px solid #002f7b;
}
header #headerWrapper nav.mobileNav.active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
header #headerWrapper nav.mobileNav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
header #headerWrapper nav.mobileNav ul > li {
  width: 100%;
  text-align: center;
}
header #headerWrapper nav.mobileNav a {
  padding: 15px;
}

header #headerWrapper nav.mobileNav a.navContact_A {
  margin-left: 0;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

header #headerWrapper nav.mobileNav a.navContact_B {
  margin-left: 0;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

header #headerWrapper nav.mobileNav a.navContact_C {
  margin-left: 0;
  width: 100%;
  text-align: center;
}

/* 通信障害情報のアコーディオン */
.acd {
  border-bottom: 2px solid #d63232;
}

.acd summary {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  color: #d63232;
}

.acd summary::-webkit-details-marker {
  display: none;
}

.acd summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #d63232;
  border-right: 3px solid #d63232;
  content: "";
  transition: transform 0.3s;
}

.acd[open] summary::after {
  transform: rotate(225deg);
}

.acd h3 {
  font-size: 1.4rem;
  color: #2f3b4f;
}

.acd p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding-top: 5px;
  font-size: 1.5rem;
  transition: transform 0.5s, opacity 0.5s;
  color: #2f3b4f;
}

.acd[open] p {
  transform: none;
  opacity: 1;
}

.acd p a {
  display: inline !important;
  font-size: 1.5rem !important;
  padding: 0 !important;
  text-decoration: underline !important;
  font-weight: 600;
  color: #d63232;
}
/* 通信障害情報のアコーディオン end*/

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  header #headerWrapper {
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    z-index: 10;
  }

  header #headerWrapper nav.desktopNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header #headerWrapper nav.mobileNav {
    display: none;
  }
}

/* MEDIA QUERY LARGE */
@media only screen and (min-width: 992px) {
  header #headerWrapper .logo {
    width: 232px;
    margin-left: 45px;
  }
}

/*=====  End of HEADER  ======*/

/*=============================================
=            SECTION TITLE            =
=============================================*/
.sectionTitleWrapper {
  text-align: center;
}

.sectionTitleWrapper .sectionTitle {
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  .sectionTitleWrapper .sectionTitle {
    font-size: 7rem;
  }
}

/*=====  End of SECTION TITLE  ======*/

/*=============================================
=            CONTACT            =
=============================================*/
#contact {
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #002f7b;
  color: #fff;
  text-align: center;
}

#contact .contactAtn {
  background-color: #ffff00;
  color: #002f7b;
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-decoration: none;
  padding: 30px 15px;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
}

#contact .contactBtn {
  background-color: #ffff;
  color: #002f7b;
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-decoration: none;
  padding: 30px 15px;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
}

#contact .contactCtn {
  background-color: #a8a8a8d4;
  color: #ffffff;
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-decoration: none;
  padding: 20px 15px;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  #contact .contactAtn {
    font-size: 3rem;
  }

  #contact .contactBtn {
    font-size: 3rem;
  }
}
/*=====  End of CONTACT  ======*/

/*=============================================
=            KIYAKU            =
=============================================*/
#kiyaku {
  margin-top: 40px;
}

#kiyaku .kiyakuBox {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 30px;
  line-height: 1.75;
  background-color: #f3f3f3;
}

#kiyaku .kiyakuBox small {
  display: block;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

#kiyaku .kiyakuBox small a {
  text-decoration: underline;
  color: #002f7b;
  font-weight: bold;
}

#kiyaku .kiyakuBox .kiyakuTitleWrapper {
  color: #333;
  margin-bottom: 20px;
}
#kiyaku .kiyakuBox .kiyakuTitleWrapper .kiyakuTitle {
  font-size: 1.6rem;
  margin-bottom: 1em;
}

#kiyaku .kiyakuBox ul {
  min-width: 270px;
  width: 85%;
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  list-style-type: none;
  height: 200px;
  overflow-y: scroll;
  background: #ffffff;
  border-radius: 5px;
  text-align: left;
}

#kiyaku .kiyakuBox ul li {
  line-height: 1;
}

#kiyaku .kiyakuBox ul li:not(:last-child) {
  margin-bottom: 10px;
}

#kiyaku .kiyakuBox ul li a {
  color: #003bb2;
  text-decoration: none;
  font-size: 12px;
}

#kiyaku .kiyakuBox ul li a.link_blank {
  background-image: url(../img/icon_blank_gray.png);
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}
/* kiyakuBox1(denwa用) */
#kiyaku .kiyakuBox1 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 30px;
  line-height: 1.75;
  background-color: #f3f3f3;
}

#kiyaku .kiyakuBox1 small {
  display: block;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

#kiyaku .kiyakuBox1 small a {
  text-decoration: underline;
  color: #002f7b;
  font-weight: bold;
}

#kiyaku .kiyakuBox1 .kiyakuTitleWrapper {
  color: #333;
  margin-bottom: 20px;
}
#kiyaku .kiyakuBox1 .kiyakuTitleWrapper .kiyakuTitle {
  font-size: 1.6rem;
  margin-bottom: 1em;
}
#kiyaku .kiyakuBox1 ul {
  min-width: 270px;
  width: 85%;
  margin: 0 auto;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  list-style-type: none;
  height: 200px;
  background: #ffffff;
  border-radius: 5px;
  text-align: left;
  padding: 50px;
}
#kiyaku .kiyakuBox1 ul li {
  line-height: 1;
  text-align: center;
}

#kiyaku .kiyakuBox1 ul li:not(:last-child) {
  margin-bottom: 10px;
}

#kiyaku .kiyakuBox1 ul li a {
  color: #003bb2;
  text-decoration: none;
  font-size: 12px;
}

#kiyaku .kiyakuBox1 ul li a.link_blank {
  background-image: url(../img/icon_blank_gray.png);
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 16px;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  #kiyaku .kiyakuBox {
    padding: 50px;
  }

  #kiyaku .kiyakuBox ul {
    text-align: center;
  }

  #kiyaku .kiyakuBox ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  #kiyaku .kiyakuBox1 {
    padding: 50px;
  }

  #kiyaku .kiyakuBox1 ul {
    text-align: center;
  }

  #kiyaku .kiyakuBox1 ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}

/*=====  End of KIYAKU  ======*/

/*=============================================
=            FOOTER            =
=============================================*/
#footer {
  background-color: #000;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  position: relative;
}
footer .footerMenuWrapper {
  margin-bottom: 15px;
}
#footer .footerMenuWrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
#footer .footerMenuWrapper ul li {
  display: inline-block;
}
#footer .footerMenuWrapper ul li a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

#footer #pageTop {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  right: 0;
  z-index: 4;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #002f7b;
  cursor: pointer;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: bold;
}
#footer #pageTop > div {
  margin-top: -4px;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #footer #pageTop {
    width: 80px;
    height: 80px;
  }
}

/*=====  End of FOOTER  ======*/
