@charset "UTF-8";
/*全体の初期設定*/
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  color: #000;
  font-family: 'Noto Sans', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 3.2rem;
}
.none {
  display: none;
}
p {
  color: #333;
}
a {
  transition: color 0.3s;
}
a:hover {
  color: #369aff;
}
/*改行の設定__mobile*/
.pc-br {
  display: none;
}
.tablet-br {
  display: none;
}
/*改行の設定__tablet*/
@media screen and (min-width: 600px) {
  .mobile-br {
    display: none;
  }
  .tablet-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}
/*改行の設定__PC*/
@media screen and (min-width: 1000px) {
  .mobile-br {
    display: none;
  }
  .tablet-br {
    display: none;
  }
  .pc-br {
    display: block;
  }
}
/*header__common*/
.header {
  height: 80px;
  padding: 10px 20px;
  background-color: #FFF;
  position: relative;
}
.header__company-name {
  position: absolute;
  z-index: 900;
}
.header__company-name h1 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: #000;
}
.header__company-name h2 {
  width: 100px;
  font-size: 3.8rem;
  font-weight: bold;
  color: #1D2088;
  margin: 0;
}
.header__navigation {
  display: none;
}
/*header__mobile*/
@media (max-width:1099px) {
  /* ハンバーガーアイコン */
  #nav-drawer {
    padding: 10px 0 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 30px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 50px;
    background-color: #000;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -15px;
  }
  #nav-open span:after {
    bottom: -27px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #FFFFFF;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
  }
  .nav-drawer__title {
    display: block;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 46px;
  }
  .nav-drawer__title span {
    display: block;
    font-size: 3.8rem;
    font-weight: bold;
    color: #1D2088;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 36px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    color: #333333;
    transition: color 0.3s;
  }
  #nav-content ul li a:hover {
    color: #369aff;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%)
  }
}
/*header__tablet*/
@media screen and (min-width: 600px) {
  .header {
    padding: 10px 50px;
  }
  #nav-content {
    width: 60%;
    padding: 15px 0 0 50px;
  }
  #nav-content ul li a {
    font-size: 1.8rem;
  }
}
/*header__PC*/
@media (min-width:1100px) {
  .header {
    padding: 15px 200px;
    box-sizing: border-box;
  }
  .header__company-name h1 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
  .header__navigation {
    display: block;
  }
  #nav-content {
    width: 100%;
    padding: 0;
  }
  .header__navigation ul {
    display: flex;
    justify-content: flex-end;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-top: 20PX;
    margin-left: 30px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 2rem;
    width: 50px;
  }
}
/*各ページのトップセクション共通設定*/
/*mobile*/
.section-common-top {
  margin-bottom: 100px;
}
.section-common-top__photo {
  height: 100%;
  width: 100%;
  margin: 0 auto 20px;
}
/*パンくずリストの設定↓*/
.breadcrumb-list {
  margin-bottom: 30px;
  margin-right: auto;
}
.breadcrumb-list a {
  border-bottom: 2px solid rgba(196, 192, 187, .8);
  border-radius: 3px;
}
/*ここまでパンくずリスト↑*/
.section-common-top__content-box {
  margin: 0 auto 30px;
  padding: 0 20px;
}
.section-common-top__content-box__title h3 {
  width: 200px;
  font-size: 3rem;
  margin-bottom: 5px;
}
.section-common-top__content-box__title h4 {
  font-size: 1.6rem;
  line-height: 1.6rem
}
.section-common-top__lead {
  padding: 0 20px;
  font-size: 1.8rem;
  line-height: 3.4rem
}
/*tablet-1*/
@media screen and (min-width: 600px) {
  .section-common-top__photo {
    margin: 0 auto 30px;
  }
  .section-common-top__content-box {
    padding: 0 50px;
  }
  .section-common-top__lead {
    padding: 0 50px;
    font-size: 1.8rem;
    line-height: 3.4rem
  }
}
/*tablet-2*/
@media screen and (min-width: 750px) {
  .section-common-top {
    margin: 0 50px 100px;
  }
  .section-common-top__flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    max-width: 600px;
    margin: 0 auto 30px;
  }
  .section-common-top__photo {
    max-width: 400px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .section-common-top__content-box {
    margin-top: 30px;
    margin-left: 0;
    padding: 0;
  }
}
/*PC-1*/
@media screen and (min-width: 1000px) {
  .section-common-top {
    margin: 0 200px 100px;
  }
  .section-common-top__flex {
    max-width: 600px;
    margin: 0 auto 50px;
  }
  .section-common-top__lead {
    padding: 0;
    text-align: center;
  }
}
/*PC-2*/
@media screen and (min-width: 1200px) {
  .section-common-top__flex {
    max-width: 800px;
    margin: 0 auto 80px;
  }
  .section-common-top__photo {
    max-width: 600px;
  }
  /*パンくずリストの設定↓*/
  .breadcrumb-list {
    margin-bottom: 50px;
  }
  /*ここまでパンくずリスト↑*/
  .section-common-top__content-box {
    margin-top: 50px;
  }
  .section-common-top__lead {
    padding: 0;
    text-align: center;
  }
}
/*mobile__見出し*/
.section-title__center {
  margin: 0 auto;
}
.section-title__black, .section-title__white {
  width: 200px;
  text-align: center;
  color: #000;
  margin: 0 auto;
}
.section-title__black-left {
  width: 200px;
  text-align: left;
  color: #000;
}
.section-title__black h3, .section-title__white h3, .section-title__black-left h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.section-title__black h4, .section-title__white h4, .section-title__black-left h4 {
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 4px solid rgba(29, 32, 136, .8);
  border-radius: 3px;
  margin-bottom: 50px;
}
.section-title__white h3, .section-title__white h4 {
  color: #fff;
}
/*tablet__見出し*/
@media screen and (min-width: 600px) {
  .section-title__black h3, .section-title__white h3, .section-title__black-left h3 {
    font-size: 3.4rem;
  }
}
/*PC__見出し*/
@media screen and (min-width: 1000px) {
  .section-title__black h3, .section-title__white h3, .section-title__black-left h3 {
    font-size: 3.6rem;
  }
}
/*ボタンの設定*/
.btn, a.btn, button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-gradient {
  font-weight: normal;
  color: #fff;
  border-radius: 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #1D2088), to(#562b7c));
  background-image: -webkit-linear-gradient(left, #1D2088 40%, #0b0c33 100%);
  background-image: linear-gradient(90deg, #1D2088 40%, #0b0c33 100%);
}
a.btn-gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#1D2088), color-stop(#0b0c33), to(#2b86c5));
  background-image: -webkit-linear-gradient(left, #1D2088, #0b0c33, #2b86c5);
  background-image: linear-gradient(90deg, #1D2088, #0b0c33, #2b86c5);
  border-radius: 100vh;
  margin: 0 auto;
}
a.btn-gradient span {
  position: relative;
  z-index: 1;
}
a.btn-gradient:hover {
  color: #fff;
}
a.btn-gradient:hover:after {
  opacity: 0;
}
a.btn-gradient {
  border-radius: 100vh;
  box-shadow: 0 5px 5px rgba(119, 119, 119, 0.5);
  /* 左右の向きpx  上下の向きpx ぼかしpx 広がりpx 色 内側指定*/
  margin: 0 auto;
}
.link-btn__center {
  isplay: block;
  text-align: center;
}
.link-btn__right-center, .link-btn__right {
  isplay: block;
  text-align: right;
}
@media screen and (min-width: 600px) {
  .link-btn__right-center {
    text-align: center;
  }
}
/*section-contact__mobile*/
.section-contact__bg {
  padding: 50px 20px;
  background-color: #DFF5F7;
  margin-bottom: 100px;
}
.section-contact__bg p {
  font-size: 1.8rem;
  line-height: 3.4rem;
  text-align: center;
  margin-bottom: 50px;
}
.section-contact__tell {
  text-align: center;
  margin-bottom: 30px;
}
.section-contact__icon {
  width: 15px;
  height: 100%;
  margin-right: 10px;
  vertical-align: top;
}
.section-contact__tell a {
  font-size: 3.0rem;
  font-weight: bold;
  color: #1D2088;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(196, 192, 187, .8);
  border-radius: 3px;
}
/*section-contact__tablet*/
@media screen and (min-width: 600px) {
  .section-contact__bg {
    padding: 60px 50px;
  }
}
/*section-contact__tablet*/
@media screen and (min-width: 600px) {
  .section-contact__tell a {
    border-bottom: none;
    padding-bottom: 0;
  }
  .section-contact__tell a[href^="tel:"] {
    pointer-events: none;
  }
}
/*section-contact__PC*/
@media screen and (min-width: 1000px) {
  .section-contact__bg {
    margin-bottom: 100px;
    padding: 80px 200px;
  }
  .section-contact__bg p {
    font-size: 2.0rem;
    line-height: 3.6rem;
    text-align: center;
  }
  .section-contact__flex-box {
    display: flex;
    justify-content: center;
  }
  .section-contact__tell {
    text-align: center;
    margin-bottom: 0px;
    margin-right: 10px;
    position: relative;
  }
  .section-contact__icon {
    position: relative;
    bottom: 10px;
    width: 20px;
    height: 100%;
  }
  .section-contact__tell a {
    position: relative;
    top: 20px;
    font-size: 3.0rem;
    font-weight: middle;
  }
  .section-contact__guidance {
    margin-left: 10px;
  }
  .section-contact__guidance p {
    margin-bottom: 0;
  }
}
/*section-access__mobile*/
.section-access {
  margin-bottom: 100px;
}
/*Googleマップ*/
.section-access__google-map {
  margin: 0 auto;
}
.section-access__google-map iframe, .section-access__google-map object, .section-access__google-map embed {
  width: 100%;
  height: 300px;
}
.section-access__description {
  text-align: left;
  margin-top: 30px;
  font-size: 1.6rem;
  padding: 0 20px
}
.section-access__icon {
  height: 20px;
  max-width: 100%;
  opacity: 0.8;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.section-access__pin, .section-access__train {
  vertical-align: bottom;
  display: inline-block;
}
/*section-access__tablet*/
@media screen and (min-width: 600px) {
  .section-access__description {
    margin-top: 50px;
    padding: 0 50px
  }
}
/*section-access_PC*/
@media screen and (min-width: 1000px) {
  /*Googleマップ設定__PC*/
  .section-access__google-map {
    margin: 0 auto;
    padding: 0 200px;
  }
  .section-access__google-map iframe, .section-access__google-map object, .section-access__google-map embed {
    height: 350px;
  }
  .section-access__description {
    line-height: 4.4rem;
    margin-top: 30px;
    font-size: 2.0rem;
    padding: 0 200px
  }
  .section-access__icon {
    height: 30px;
  }
}
/*footer__mobile*/
.footer {
  color: #fff;
}
.footer__bg {
  background-image: url("../image/microwave_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding: 50px 20px 10px;
}
.footer__bg nav {
  text-align: right;
  margin-bottom: 30px;
}
.footer nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 50px;
  max-width: 300px;
}
.footer nav ul li a {
  width: 50px;
  height: 130px;
  font-size: 1.8rem;
  padding: 10px 10px 20px;
  margin-bottom: 20px;
}
.footer__company-name-white {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.footer__company-name-white h2 {
  font-size: 3.6rem;
  font-weight: bold;
}
.footer address {
  line-height: 3.0rem;
  margin-bottom: 50px;
}
.footer small {
  display: block;
  text-align: center;
}
/*footer__tablet*/
@media screen and (min-width: 600px) {
  .footer__bg {
    padding: 50px 50px 20px;
  }
  .footer nav ul {
    max-width: 500px;
  }
}
/*footer__PC*/
@media screen and (min-width: 960px) {
  .footer__bg {
    background-position: 25% 25%;
    padding: 50px 200px 10px;
  }
  .footer__flex-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .footer__bg nav {
    width: 500px;
    margin-bottom: 30px;
  }
  .footer nav ul {
    justify-content: flex-end;
  }
  .footer nav ul li {
    margin-bottom: 10px;
  }
  .footer nav ul li a {
    text-align: left;
    width: 60px;
    height: 120px;
    font-size: 2.0rem;
    padding: 10px;
    margin-bottom: 10px;
  }
  .footer__company-name {
    width: 500px
  }
  .footer__company-name-white {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .footer__company-name-white h2 {
    font-size: 3.6rem;
    font-weight: bold;
  }
  .footer address {
    line-height: 3.0rem;
    margin-bottom: 0px;
  }
  .footer small {
    display: block;
    text-align: right;
  }
}
#page_top {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.8;
}
#page_top a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #369aff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: 'Page Top';
  font-size: 13px;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #369aff;
}