@charset "UTF-8";
/* 複数のページで使うCSS。!important禁止 */
/* 変数群 */
/* ＠mixin群 */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

a:link {
  color: #333;
  text-decoration: none; }

a:visited {
  color: #333;
  text-decoration: none; }

a:hover {
  color: #005ac5;
  text-decoration: none; }

a img {
  border-width: 0px;
  border-style: none;
  border-color: #fff;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

*,
*::before,
*::after {
  box-sizing: border-box; }

/*default*/
html {
  /*全体のフォントサイズ。1rem=10px*/
  font-size: 62.5%; }

body {
  font-family: 'Montserrat',"Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
  font-size: 1.6rem;
  /*16px*/ }

h1 {
  font-size: 3.6rem;
  font-weight: bold; }
  @media screen and (max-width: 768px) {
    h1 {
      font-size: 2.4rem; } }

h2 {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold; }
  @media screen and (max-width: 768px) {
    h2 {
      font-size: 1.7333333333rem; } }

h3 {
  font-size: 2.6rem;
  font-weight: bold; }
  @media screen and (max-width: 768px) {
    h3 {
      font-size: 2.4rem; } }

p {
  font-size: 1.6rem; }
  @media screen and (max-width: 768px) {
    p {
      font-size: 1.4rem; } }

.titleBottom, .title_top {
  color: #005ac5;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  display: block;
  margin-bottom: 40px; }
  @media screen and (max-width: 768px) {
    .titleBottom, .title_top {
      margin-bottom: 26px; } }

.title_top {
  margin-top: 60px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem; }
  @media screen and (max-width: 768px) {
    .title_top {
      font-size: 2.6rem; } }

/* link */
.js-button {
  margin: 20px auto;
  background-color: #005ac5;
  border: solid 2px #005ac5;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  transition: 0.2s; }
  .js-button:visited {
    color: #fff; }
  .js-button:link {
    color: #fff; }

.js-arrowClear {
  transition: .3s; }
  .js-arrowClear:visited {
    color: #fff; }
  .js-arrowClear:link {
    color: #fff; }
  .js-arrowClear:hover {
    opacity: 0.5; }

.select {
  background-color: #3d71c8;
  pointer-events: none; }
  @media screen and (max-width: 768px) {
    .select {
      background: rgba(42, 22, 21, 0.5) repeat scroll 0 0; } }

/* responsive */
.sp {
  display: none; }
  @media screen and (max-width: 768px) {
    .sp {
      display: inline-block; } }

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

/**/
/* header */
header {
  width: 100%;
  background-color: #005ac5;
  height: 80px;
  position: fixed;
  top: 0px;
  z-index: 100; }
  @media screen and (max-width: 768px) {
    header {
      height: 51px;
      margin-top: -1px;
      /*ios safari*/ } }

.head {
  max-width: 1080px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between; }
  .head_logo {
    padding-top: 26px;
    width: 29rem; }
    .head_logoLink img {
      width: 100%; }
    @media screen and (max-width: 768px) {
      .head_logo {
        padding-top: 17px;
        margin-left: 12px;
        width: 18rem; } }
  .head_humburger {
    height: 100%;
    width: 50px;
    padding-top: 14px;
    background-color: #005ac5;
    text-align: center;
    display: none; }
    @media screen and (max-width: 768px) {
      .head_humburger {
        display: block; } }
  .head_button {
    color: #fff;
    padding: 0;
    width: 26px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    text-align: center;
    letter-spacing: 0.1em;
    cursor: pointer;
    outline: none; }
  .head_bar {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 2px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    transform: translateY(-50%);
    position: absolute; }
    .head_bar1 {
      top: 0; }
    .head_bar2 {
      top: 50%; }
    .head_bar3 {
      top: 100%; }
  .head .active .head_bar {
    width: 28.28px;
    left: 3px; }
    .head .active .head_bar1 {
      transform: rotate(0.7853981634rad) translateY(-50%);
      top: 0px; }
    .head .active .head_bar2 {
      opacity: 0; }
    .head .active .head_bar3 {
      transform: rotate(-0.7853981634rad) translateY(-50%);
      top: calc(100% - 0px); }
  .head_menu {
    display: flex;
    border-right: 1px solid #92b2e0;
    align-items: stretch; }
    @media screen and (max-width: 768px) {
      .head_menu {
        width: 100%;
        display: none;
        margin: 0;
        border: none;
        background: rgba(0, 90, 197, 0.8) repeat scroll 0 0; } }
  .head_list {
    width: 100px;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    border-left: 1px solid #92b2e0;
    transition: 0.3s; }
    @media screen and (max-width: 768px) {
      .head_list {
        width: 100%;
        border: none;
        border-bottom: 1px solid #fff; }
        .head_list br, .head_list span {
          display: none; }
        .head_list:last-of-type {
          border-bottom: none; } }
    .head_list:hover {
      background-color: #3d71c8; }
    .head_list a {
      display: block;
      color: #fff;
      width: 100%;
      height: 100%;
      line-height: 1.6;
      padding-top: 20px; }
      .head_list a span {
        font-size: 1.1rem; }
  @media screen and (max-width: 768px) {
    .head {
      width: 100%;
      flex-wrap: wrap;
      justify-content: space-between;
      padding-right: 0; }
      .head a {
        padding: 10px 0; } }

/* サイドナビ */
.nav {
  position: fixed;
  right: 0;
  top: 100px;
  z-index: 100;
  letter-spacing: 0.8px; }
  @media screen and (max-width: 768px) {
    .nav {
      height: 70px;
      width: 100%;
      top: auto;
      bottom: 0; } }
  .nav_list {
    writing-mode: vertical-rl;
    border: 2px solid #fff;
    border-right: none;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff; }
    .nav_list a {
      backface-visibility: hidden;
      padding: 0 14px;
      display: block;
      color: #fff;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: 0.3s; }
    @media screen and (min-width: 769px) {
      .nav_list {
        position: absolute;
        right: 0; }
        .nav_list a:hover {
          padding-right: 24px; } }
  .nav_contact {
    position: relative; }
    .nav_contact .spring {
      height: 180px;
      top: 10px;
      background-color: #139467; }
    .nav_contact .press {
      height: 240px;
      top: 200px;
      background-color: #d66c34; }
    .nav_contact .question {
      height: 160px;
      top: 450px;
      background-color: #cd4556; }
  @media screen and (max-width: 768px) {
    .nav_list {
      writing-mode: horizontal-tb;
      width: 33.333333%;
      margin-top: 0;
      border-bottom: none;
      padding: 0; }
      .nav_list:nth-child(1) {
        border-left: none; }
      .nav_list:nth-child(3) {
        border-right: none;
        padding-top: 8px; }
      .nav_list a {
        font-size: 1.4rem;
        padding: 16px 2px 0; }
    .nav_contact {
      display: flex;
      height: 100%;
      line-height: 1.3; }
      .nav_contact .spring {
        height: auto; }
      .nav_contact .press {
        height: auto; }
      .nav_contact .question {
        height: auto; } }

/* 各ページトップエリア */
.topAppear {
  margin-top: 80px;
  /* パンくずリスト */ }
  @media screen and (max-width: 768px) {
    .topAppear {
      margin-top: 50px; } }
  .topAppear_main {
    width: 100%;
    height: 400px;
    background: url("/yao/company/img/main_company.jpg") no-repeat center/cover; }
    @media screen and (max-width: 768px) {
      .topAppear_main {
        height: 300px; } }
  .topAppear_text {
    max-width: 1080px;
    height: 100%;
    margin: auto;
    position: relative; }
    .topAppear_text h1 {
      width: 300px;
      height: 140px;
      background-color: rgba(0, 90, 197, 0.8);
      color: #fff;
      padding: 24px 30px;
      line-height: 1.4;
      position: absolute;
      bottom: 0;
      left: 0; }
      .topAppear_text h1 span {
        font-size: 1.6rem;
        display: block; }
    @media screen and (max-width: 768px) {
      .topAppear_text h1 {
        width: 60%;
        height: 120px;
        padding: 20px; } }
  .topAppear_breadcrumbs {
    max-width: 1080px;
    margin: 10px auto 0; }
    .topAppear_breadcrumbs ul {
      display: flex;
      font-size: 1.4rem; }
      .topAppear_breadcrumbs ul li {
        display: inline-block;
        margin-right: 10px; }
        .topAppear_breadcrumbs ul li:not(:last-of-type)::after {
          content: '>';
          margin-left: 10px; }
    @media screen and (max-width: 768px) {
      .topAppear_breadcrumbs {
        padding-left: 10px; }
        .topAppear_breadcrumbs ul {
          font-size: 1.2rem; } }

/* 各ページ要素 */
.content {
  width: 100%; }
  @media screen and (max-width: 768px) {
    .content {
      padding: 0 10px; } }
  .content_title {
    text-align: center;
    font-size: 3rem;
    margin: 60px auto 30px; }
    @media screen and (max-width: 768px) {
      .content_title {
        font-size: 2rem;
        margin: 30px auto 14px; } }
  .content_text {
    max-width: 1080px;
    margin: auto;
    text-align: center;
    line-height: 1.6; }
  .content_flex {
    max-width: 1080px;
    text-align: left;
    margin: 0px auto 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .content_flex {
        flex-direction: column;
        margin-bottom: 20px; } }

/* ページ下部お問い合わせ項目 */
.inquire {
  width: 100%;
  background-color: #e5e5e5;
  height: 410px;
  margin-top: 100px;
  padding: 80px 0; }
  @media screen and (max-width: 768px) {
    .inquire {
      height: 520px;
      padding: 50px 0; } }
  .inquire_form {
    max-width: 1080px;
    margin: auto;
    display: flex;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .inquire_form {
        width: 100%;
        display: block; } }
    .inquire_form .inq {
      width: 400px;
      background-color: #005ac5;
      height: 250px;
      padding-top: 64px;
      color: #fff; }
      .inquire_form .inq h2 {
        font-size: 3rem;
        margin-bottom: 30px; }
        @media screen and (max-width: 768px) {
          .inquire_form .inq h2 {
            font-size: 2.6rem;
            margin-bottom: 16px; } }
      .inquire_form .inq p {
        line-height: 1.7; }
      @media screen and (max-width: 768px) {
        .inquire_form .inq {
          margin: auto;
          width: 73.33%;
          height: 200px;
          padding-top: 50px; } }
    .inquire_form .tell {
      width: 680px;
      background-color: #fff;
      height: 250px;
      padding-top: 40px; }
      @media screen and (max-width: 768px) {
        .inquire_form .tell {
          width: 73.33%;
          margin: auto;
          height: 220px;
          padding-top: 30px; } }
      .inquire_form .tell p {
        font-size: 4.8rem;
        font-weight: 500; }
        .inquire_form .tell p img {
          width: 32px;
          margin-right: 10px;
          position: relative;
          top: 10px; }
        .inquire_form .tell p span {
          display: block;
          font-size: 1.6rem;
          font-weight: 400;
          margin-top: 10px; }
        @media screen and (max-width: 768px) {
          .inquire_form .tell p {
            font-size: 3.0rem; }
            .inquire_form .tell p img {
              top: 6px;
              margin-right: 4px;
              width: 22px; }
            .inquire_form .tell p span {
              margin-top: 20px; } }
      .inquire_form .tell a {
        width: 400px;
        height: 60px;
        padding-top: 9px; }
        .inquire_form .tell a img {
          width: 30px;
          position: relative;
          top: 6px;
          right: 10px; }
        @media screen and (max-width: 768px) {
          .inquire_form .tell a {
            width: 81.8%;
            height: 50px;
            padding-top: 12px; }
            .inquire_form .tell a img {
              top: 3px;
              width: 22px; } }

/* フッダ */
footer {
  width: 100%;
  height: 330px;
  text-align: center;
  background: url("/yao/common/img/footer.jpg") center;
  background-size: cover;
  padding-top: 50px;
  color: #fff; }
  footer p {
    font-size: 1.4rem; }
  footer .foot {
    height: 100%;
    max-width: 1080px;
    margin: auto;
    font-size: 1.4rem; }
    @media screen and (max-width: 768px) {
      footer .foot {
        width: 100%; } }
    footer .foot_logo a img {
      width: 180px; }
    footer .foot_add {
      margin-top: 16px; }
    footer .foot_site {
      margin-top: 16px; }
      footer .foot_site a {
        color: #fff;
        transition: 0.3s; }
        footer .foot_site a:hover {
          opacity: 0.5; }
        footer .foot_site a img {
          position: relative;
          top: 4px;
          left: 0px;
          width: 18px;
          margin-right: 4px; }
    footer .foot_link {
      margin-top: 24px; }
      footer .foot_link a img {
        position: relative;
        top: 14px;
        width: 230px; }
    footer .foot_copyRight {
      margin-top: 40px; }
  @media screen and (max-width: 768px) {
    footer {
      margin-bottom: 70px;
      height: auto;
      padding: 40px 0; }
      footer .foot_logo a img {
        width: 190px; }
      footer .foot_add {
        margin-top: 20px; }
      footer .foot_site {
        margin-top: 20px; }
      footer .foot_link {
        margin-top: 20px; }
      footer .foot_copyRight {
        margin-top: 50px; } }
