@charset "UTF-8";
@font-face {
  font-family: "corbel_bold";
  src: url(../fonts/Corbel-Bold.ttf) format("woff");
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #ffa824;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

strong {
  font-weight: bold;
  color: #191970;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1500px) {
  #side {
    width: 16.66667vw;
  }
}

@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
  z-index: 2;
}

#header h1 {
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 1;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
}

#header .top {
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 100%;
  width: calc((100vw - 1020px) / 2 + 1010px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#header .logo {
  padding-top: 20px;
}

@media (max-width: 767px) {
  #header .top {
    height: 60px;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .logo img {
    height: 50px;
    width: auto;
  }
  #header h1 {
    display: none;
  }
}

#gnav {
  padding-top: 35px;
  font-family: "corbel_bold";
}

#gnav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#gnav > ul > li {
  position: relative;
  margin: 0 20px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#gnav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}

#gnav > ul > li > a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  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%;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

#gnav > ul > li > a:hover {
  opacity: 0.6;
}

#gnav > ul > li ul {
  position: absolute;
  top: calc(100% + 10px);
  visibility: hidden;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  z-index: 1;
}

#gnav > ul > li ul li {
  background-color: #fff;
  width: 250px;
}

#gnav > ul > li ul li a {
  padding: 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  white-space: nowrap;
  text-decoration: none;
  color: #191970;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

#gnav > ul > li ul li a:hover {
  opacity: 0.6;
}

#gnav > ul > li ul li a:before {
  margin-right: 10px;
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #191970;
}

@media (min-width: 768px) {
  #gnav > ul > li > a {
    height: 50px;
  }
  #gnav > ul > li.contact {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #gnav > ul > li.contact > a {
    width: 140px;
    border: solid 1px #fff;
  }
  #gnav > ul > li.contact > a:before {
    margin-right: 10px;
    display: block;
    content: "";
    width: 16px;
    height: 13px;
    background: url(../images/mail-icon.png) no-repeat center/cover;
  }
}

@media (max-width: 999px) {
  #gnav > ul > li {
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  #gnav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #gnav > ul > li > a {
    color: #191970;
  }
  #gnav > ul > li ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    padding: 0;
  }
  #gnav > ul > li ul li {
    border-bottom: 0px;
    border-top: 1px solid #000;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: absolute;
  top: -30px;
  right: -50px;
  z-index: 4;
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#pagetop:hover {
  opacity: 0.6;
}

@media (max-width: 1200px) {
  #pagetop {
    right: 20px;
  }
}

@media (max-width: 767px) {
  #pagetop {
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-color: #191970;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

#footer .inner {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

#footer .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#footer .logo {
  margin-bottom: 20px;
}

#footer .logo a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#footer .logo a:hover {
  opacity: 0.6;
}

#footer .text {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.03em;
}

@media (max-width: 999px) {
  #footer .text {
    font-size: 14px;
  }
}

#footer #copyright {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

#footer #fnav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#footer #fnav > ul > li {
  margin-left: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#footer #fnav > ul > li > a {
  font-weight: bold;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.66667;
  letter-spacing: 0.03em;
}

#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}

#footer #fnav > ul > li ul li {
  white-space: nowrap;
}

#footer #fnav > ul > li ul li::before {
  content: "―";
  padding: 0 3px;
}

#footer #fnav > ul > li ul li a {
  font-size: 16px;
  line-height: 1.875;
  font-weight: normal;
  letter-spacing: 0.03em;
  color: #fff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
}

#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}

@media (max-width: 999px) {
  #footer #fnav > ul > li > a {
    font-size: 14px;
  }
  #footer #fnav > ul > li ul li a {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  #footer .inner {
    padding-top: 40px;
    padding-bottom: 40px;
    -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 #fnav {
    display: none;
  }
}

/* ----------------------------------------------
contactset
------------------------------------------------- */
#contactset {
  padding-top: 50px;
  padding-bottom: 50px;
  display: block;
  background: url(../images/contact-bg.jpg) no-repeat center/cover;
}

#contactset .inner {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

#contactset h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  font-size: 30px;
  line-height: 1.6;
  color: #191970;
}

#contactset h2 span {
  margin-top: 10px;
  display: block;
  font-size: 16px;
}

@media (max-width: 999px) {
  #contactset h2 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  #contactset h2 {
    font-size: 22px;
  }
  #contactset h2 span {
    margin-top: 5px;
    font-size: 12px;
  }
}

#contactset .text {
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  #contactset .text {
    font-size: 14px;
  }
}

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

#contactset .tel,
#contactset .mail,
#contactset .arie {
  width: 33.33333333333%;
  padding: 0 10px 30px 10px;
}

#contactset .tel .subtext,
#contactset .mail .subtext {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

#contactset .tel h3 {
  background-image: url(../images/tel-icon.png);
}

#contactset .mail {
  border-right: solid 1px #000000;
  border-left: solid 1px #000000;
}

#contactset .mail h3 {
  background-position: top 5px center;
  background-image: url(../images/mail-icon2.png);
}

#contactset .arie h3 {
  background-image: url(../images/map-icon.png);
}

#contactset .arie .subtext {
  text-align: center;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  #contactset .arie .subtext {
    font-size: 14px;
  }
}

#contactset h3 {
  margin-bottom: 25px;
  padding-top: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.875;
  letter-spacing: 0.1em;
  background-repeat: no-repeat;
  background-position: top 0 center;
}

#contactset .dial {
  margin-bottom: 10px;
  text-align: center;
}

#contactset .dial a {
  letter-spacing: 0.1em;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
  color: #000;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.2;
}

#contactset .dial a:hover {
  opacity: 0.6;
}

#contactset .btn {
  margin: auto auto 15px;
  width: 200px;
}

#contactset .btn a {
  height: 50px;
  font-family: "corbel_bold";
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  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%;
  text-decoration: none;
  color: #191970;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  border: solid 1px #191970;
}

#contactset .btn a:hover {
  opacity: 0.6;
}

#contactset .btn a:before {
  margin-right: 10px;
  display: block;
  content: "";
  width: 16px;
  height: 13px;
  background: url(../images/mail-icon3.png) no-repeat center/cover;
}

@media (max-width: 999px) {
  #contactset .dial a {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  #contactset .text {
    margin-bottom: 0;
  }
  #contactset .tel,
  #contactset .mail,
  #contactset .arie {
    width: 100%;
    max-width: 350px;
    padding: 20px 10px 20px 10px;
  }
  #contactset .tel .subtext,
  #contactset .mail .subtext {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  #contactset .contents {
    -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;
  }
  #contactset .mail {
    border-right: solid 0px;
    border-left: solid 0px;
    border-top: solid 1px #000000;
    border-bottom: solid 1px #000000;
  }
  #contactset h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
/*# sourceMappingURL=style.css.map */