@charset "utf-8";
/* CSS Document */

body {
  background-color: var(--bg-color);
}
@media (max-width: 767px) {
  .onlyPC {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .onlySP {
    display: none !important;
  }
}

.header {
  width: 100%;
  display: grid;
  background-color: var(--contents-color);
  grid-template-columns: 1fr;
  grid-template-rows: var(--hamburger-menu-size) auto;
  grid-template-areas:
    'inner'
    'title';
}
.headerInner {
  width: 100%;
  height: var(--hamburger-menu-size);
  grid-area: inner;
  background-color: var(--contents-color);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'logo';
  justify-content: flex-end;
  position: fixed;
  z-index: 2;
}

.logo {
  grid-area: logo;
  padding-inline: var(--min-spacing);
  align-self: center;
  justify-self: flex-end;
}
.logoLink {
  background: url(/img/common/or_logo_blue.png) no-repeat 0 50% / contain;
  text-indent: -9999px;
  display: block;
  font-weight: 600;
  aspect-ratio: 386 / 105;
  font-weight: 600;
  height: clamp(30px, 7.857vw, 50px);
}

.headerMenu {
  padding-block: 20px;
  grid-area: menu;
  align-self: center;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 0 4px rgba(255, 255, 255, 0.3);
}
.headerButton {
  grid-area: button;
  font-weight: 700;
}

.hamburgerMenu {
  grid-area: hamburger;
}
.headerMenu,
.headerButton,
.contact {
  display: none;
}

.footArea {
  margin-top: var(--content-section-spacing);
  width: 100%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}
.footAreaBox {
  color: var(--contents-color);
  padding: 25px var(--content-spacing);
  text-align: center;
  display: grid;
  gap: 5px 13px;
  grid-template-columns: 100px 1fr;
  grid-template-areas:
    'icon contents'
    'title contents';
}
.telArea {
  background-color: var(--color-blue-3);
}
.mailArea {
  background-color: var(--color-blue-2);
}
.assessmentArea {
  background-color: var(--color-gray-1);
}
.footAreaIcon {
  grid-area: icon;
  font-size: 30px;
}
.footAreaTitle {
  grid-area: title;
  font-size: 10px;
}
.footAreaContents,
.footAreaLink {
  grid-area: contents;
}
.footAreaContents {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.footAreaContents .tel {
  font-size: clamp(21px, 6.56vw, 24px);
  font-weight: bold;
  color: var(--contents-color);
  text-decoration: none;
  font-family: var(--family-noto);
}
.footAreaLink {
  min-height: 50px;
  text-align: center;
  background-color: var(--contents-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 2px;
  font-weight: bold;
  font-size: 13px;
  position: relative;
}
.footAreaLink::after {
  content: '\f054';
  font: var(--fa-font-solid);
  position: absolute;
  right: 5%;
}
.footer {
  background: #fff;
}
.footerInfo {
  text-align: center;
  padding-block: 25px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footerInfoLogo {
  background: url(/img/common/or_logo_blue.png) no-repeat 0 50% / contain;
  text-indent: -9999px;
  display: block;
  width: 173px;
  height: 58px;
  font-weight: 600;
  grid-area: logo;
}
.footerInfoCompany {
  grid-area: company;
}
.footerInfoTel {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-blue-3);
  text-decoration: none;
  font-family: var(--family-noto);
  grid-area: tel;
}
.footerInfoHours {
  grid-area: hours;
}

.footerBnr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.footerBnrLink {
  display: flex;
  width: 100%;
  border: 1px solid #d6d6d6;
  justify-content: center;
  height: 57px;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  background: #fff;
}
.footerBnrImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===================================
  .pagetop
  =================================== */
.pagetop {
  width: 160px;
  padding-top: 10px;
  color: #fff;
  background-color: var(--color-blue-3);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin: 25px auto 0;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
  font-size: 14px;
  gap: 5px;
  letter-spacing: 0.2em;
  font-weight: 200;
  text-indent: 0.2em;
}
.pagetop::before {
  margin: auto;
  content: '';
  vertical-align: middle;
  z-index: 99999;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pagetop:hover {
  text-decoration: none;
  color: #96b9ff;
  opacity: 1;
}
.pagetop:hover::before {
  border-color: #96b9ff;
}

.copyright {
  color: var(--contents-color);
  background-color: var(--color-blue-3);
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-block: 30px;
}
.privacypolicyLink {
  color: var(--contents-color);
  text-decoration: none;
}

/* SP表示 */
/* 中央寄せ */
.inner {
  margin-inline: var(--content-spacing);
  box-sizing: border-box;
}
.innerPd {
  padding-inline: var(--content-spacing);
  box-sizing: border-box;
}
#foot02 .inner {
  margin: 0;
}
#wrap {
  margin-top: 20px;
}

/* ページタイトル */
#head {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pageTitle {
  grid-area: title;
  background-color: var(--contents-color);
  height: 120px;
  padding: 18px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.4;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: repeat-x 50% 50% / cover;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.pageTitle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
}
.pageTitle span {
  position: relative;
  z-index: 1;
}
/* ===================================
  .menu
  =================================== */
.menu {
  position: relative;
  background: #fff;
  z-index: 99999;
}
/* ヘッダーロゴ */
#headLogo {
  padding: 12px 15px;
  float: left;
}
#headLogo a {
  width: 163px;
  height: 40px;
  text-indent: -9999px;
  background: url(../img/logo_01.png) left center no-repeat;
  background-size: 100%;
  display: block;
}
#headLogo a:hover {
  opacity: 0.7;
}
.menuBtn {
  aspect-ratio: 1 / 1;
  align-self: center;
  background-size: 100%;
  background-color: var(--color-blue-3);
  color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: var(--hamburger-menu-size);
  height: var(--hamburger-menu-size);
}
.menuBtn::before {
  content: '\f0c9';
  font: var(--fa-font-solid);
  font-size: 22px;
}
.menuBtn.active {
}
.menuBtn.active::before {
  content: '\f00d';
}
#spMenu {
  width: 100%;
  padding-inline: var(--content-spacing);
  box-sizing: border-box;
  position: fixed;
  top: 100px;
  height: 100%;
  display: none;
  background: var(--color-blue-3);
  z-index: 10;
  overflow: auto;
}
@media (max-width: 767px) {
  #spMenu {
    padding-inline: 0;
    top: var(--hamburger-menu-size);
    overflow: scroll;
  }
}
.menuSec,
.menuClose {
  border-top: 1px solid #4f70bd;
}
.menuSec:first-child {
  border-top: none;
}
.menuInnerSlide {
  display: none;
  padding: 0 40px;
}
.menuInnerSlide li {
  padding: 2px 0 20px;
}
.menuInnerSlide a {
  display: block;
  position: relative;
  padding-left: 17px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}
.menuInnerSlide a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  margin: auto;
  content: '';
  vertical-align: middle;
  z-index: 99999;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}
.menuSec a {
  display: block;
  padding: 22px 32px;
  font-size: 18px;
  color: #fff;
  position: relative;
  text-decoration: none;
}
.menuSec a:hover {
  opacity: 0.7;
}
.menuSec .accordion:before {
  position: absolute;
  top: 30px;
  right: 30px;
  margin: auto;
  content: '';
  vertical-align: middle;
  z-index: 99999;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  z-index: 1;
}
.menuSec.active,
.menuInnerSlide.active {
  background: #264bc0;
}
.menuSec.active .accordion:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menuClose {
  padding: 25px 30px;
  padding-bottom: 100px;
  text-align: center;
}
.menuClose a {
  max-width: 315px;
  padding: 10px 0;
  font-size: 14px;
  color: #0337a6;
  background: url(../img/sp/ico_close_02.png) left 39% center no-repeat #fff;
  background-size: 12px;
  display: inline-block;
  text-decoration: none;
  width: 100%;
}
#spMenuOverlay {
  width: 100%;
  height: 100vh;
  background: var(--color-blue-3);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
}

/* ===================================
  #pankuzu
  =================================== */
#pankuzu {
  font-size: 12px;
  background: var(--bg-color);
  padding: 13px 0;
}
#pankuzu ul:after {
  content: '';
  display: block;
  clear: both;
}
#pankuzu ul li {
  margin-right: 0.5em;
  float: left;
}
#pankuzu ul li a {
  color: var(--color-blue-3);
  text-decoration: underline;
}
#pankuzu ul li:before {
  content: '> ';
}
#pankuzu ul li:first-child:before {
  content: '';
}

@media (min-width: 768px) {
  .header {
    grid-template-rows: 100px 1fr;
  }
  .header::before {
    height: 100px;
  }
  .headerInner {
    width: calc(100% - 100px);
    height: 100px;
    padding-left: 100px;
    grid-template-columns: 200px 1fr auto;
    grid-template-areas: 'button menu logo';
  }
  .headerButton {
    display: flex;
  }
  .headerButtonItem {
    height: 100%;
    aspect-ratio: 1 / 1;
  }
  .headerButtonLink {
    flex-direction: column;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--contents-color);
    gap: 5px;
  }
  .headerButtonContact .headerButtonLink {
    background-color: var(--color-blue-2);
  }
  .headerButtonAssessment .headerButtonLink {
    background-color: var(--color-gray-1);
  }
  .headerButtonLink .fa-solid {
    font-size: 20px;
  }
  .menuBtn {
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100px;
    height: 100px;
  }
  .menuBtn:hover {
    opacity: 0.7;
  }
  .menuBtn::after {
    content: 'MENU';
    font-size: 16px;
    font-weight: 700;
  }
  .menuBtn.active::after {
    content: '';
  }
  .footArea {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .footAreaBox {
    height: calc((100vw - 15px) / 3);
    max-height: 420px;
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .footAreaContents {
    height: 100px;
    font-size: 13px;
  }
  .footAreaLink {
    margin: 25px 0;
    width: 100%;
    max-width: 250px;
  }
  .footAreaTitle {
    font-size: 16px;
    margin-top: 20px;
  }
  .footAreaContents .tel {
    font-size: 32px;
  }
  .footerInfo {
    padding-block: 100px 30px;
    margin-block: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    text-align: left;
    gap: 0 10px;
    align-items: baseline;
    grid-template-areas:
      'logo company tel'
      'logo company hours';
  }
  .footerInfoLogo {
    height: 37px;
  }
  .footerInfoLogo,
  .footerInfoCompany {
    align-self: center;
  }
  .footerInfoHours {
    text-align: right;
  }

  .footMenu {
    margin-block: 30px 50px;
    justify-content: space-around;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1.5em;
  }
  .footMenuList {
    display: flex;
    flex-direction: column;
    line-height: 3;
  }
  .footMenuList a:hover {
    color: var(--color-blue-3);
  }
  .footMenuList .link-ext-icon {
    font-size: 80%;
  }

  .footerBnr {
    margin-block: 50px 100px;
    flex-direction: row;
    justify-content: space-between;
  }
  .footerBnrLink {
    height: 98px;
  }

  body {
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  a {
    color: var(--color-black-2);
    text-decoration: none;
  }
  pre {
    white-space: pre-wrap;
  }

  /* 中央寄せ */
  .inner {
    margin-inline: var(--content-spacing);
    box-sizing: border-box;
  }
  .innerPd {
    padding-inline: var(--content-spacing);
    box-sizing: border-box;
  }

  /* 中央寄せ */
  .pageTitle {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--contents-color);
    height: 315px;
    letter-spacing: 5px;
    background-size: auto 100%;
  }

  /* ===================================
  #head
  =================================== */
  #head {
    height: 315px;
  }

  /* ヘッダーロゴ */
  #head_logo {
  }

  /* .menu */
  .menu ul {
  }

  /* ===================================
  .menu
  =================================== */
  /* .menu {
    display: none;
  } */
  .menuInner {
    box-sizing: border-box;
    top: 15px;
    background-color: var(--contents-color);
    box-shadow: 1px 1px 2px 0px rgba(65, 64, 64, 0.05);
    border-radius: 1px;
    z-index: 10000;
  }
  #headLogo a {
    width: 80px;
    height: 55px;
    margin: 25px auto 15px;
    text-indent: -9999px;
    background: url(../img/logo_02.png) center no-repeat;
    display: block;
  }
  .menu01 {
    margin: 0 20px;
  }
  .menu01 li {
    border-top: 1px solid var(--color-gray-2);
  }
  .menu01 li:last-child {
    border-bottom: 1px solid var(--color-gray-2);
  }
  .menu01 li a {
    position: relative;
    padding: 16px 0 15px 20px;
    display: block;
    font-size: 15px;
    line-height: 1.2;
    font-weight: bold;
  }
  .menu01 li a:hover {
    text-decoration: none;
  }
  .menu01 li a:before {
    position: absolute;
    top: 20px;
    margin: auto;
    content: '';
    vertical-align: middle;
    z-index: 99999;
    left: 0px;
    width: 5px;
    height: 5px;
    border-top: 2px solid var(--color-blue-3);
    border-right: 2px solid var(--color-blue-3);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menuInner .onlyTop {
    display: none;
  }

  .menuContact {
    margin: 0 10px;
    font-weight: bold;
    color: var(--color-blue-3);
    text-align: center;
  }
  .menuContact .tel {
    display: inline-block;
    background: url(../img/ico_tel_02.png) center left no-repeat;
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    letter-spacing: 1px;
  }
  .menuContact .telNum {
    font-size: 15px;
  }
  .menuContact .hours {
    font-size: 10px;
  }

  /* ===================================
  #pankuzu
  =================================== */
  #pankuzu {
    padding: 20px 0;
    background: var(--contents-color);
  }
  #pankuzu ul:after {
    content: '';
    display: block;
    clear: both;
  }
  #pankuzu ul li {
    margin-right: 0.5em;
    font-size: 13px;
    float: left;
  }
  #pankuzu ul li a {
    color: var(--color-blue-3);
    text-decoration: underline;
  }
  #pankuzu ul li a:hover {
    text-decoration: none;
  }
  #pankuzu ul li:before {
    content: '＞ ';
  }
  #pankuzu ul li:first-child:before {
    content: '';
  }

  /* ===================================
  #foot
  =================================== */
  .fMap {
    margin-bottom: 30px;
  }

  /* #copyright */
}

@media (min-width: 890px) {
  .headerMenu {
    display: flex;
    gap: 1rem;
    padding-left: 2.5rem;
  }
}

@media (min-width: 1050px) {
  .contact {
    grid-area: contact;
    margin-right: 38px;
    display: grid;
    place-content: center;
    justify-items: center;
    color: var(--color-blue-3);
  }
  .tel {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-blue-3);
  }
}

/* PC表示 */
@media (min-width: 800px) {
  .footMenu {
    grid-template-columns: repeat(4, auto);
  }
}
@media (min-width: 879px) {
  .footerInfo {
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: 'logo company tel hours';
  }
}

/* PC表示 */
@media (max-width: 1260px) {
  .logo {
    padding-left: var(--content-spacing);
  }
}
@media (min-width: 1261px) {
  .logo {
    padding-left: 2.5rem;
  }
}

/* ===================================
.defaultContactBox
=================================== */
.defaultContactBox {
  /* height: 60px; */
  margin-bottom: 80px;
  padding: 30px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.defaultContactBox .txt01 {
  /* margin-top: 8px; */
  color: #06339d;
  font-size: 16px;
  font-weight: bold;
}

.defaultContactBox .img01 {
  float: left;
  margin-top: 5px;
}

.defaultContactBox .btn01 {
  width: 300px;
}

.defaultContactBox .btn01 a {
  display: block;
  width: 300px;
  height: 60px;
  background: url(/img/land/btn_land_01.png) no-repeat;
  text-indent: -9999px;
}

.defaultContactBox .btn01 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/* 190808追加 */
.defaultContactBoxInfo {
  pointer-events: none;
  /* margin-right: 30px; */
  /* width: auto; */
  display: flex;
  flex-direction: column;
}

.defaultContactInfoTel,
.defaultContactInfoReceptionTime {
  line-height: 1.2;
  color: #003199;
  display: inline-block;
  /* width: 220px; */
  text-align: center;
}

.defaultContactInfoTel {
  font-size: 33px;
  font-weight: bold;
  white-space: nowrap;
}
.defaultContactInfoTel i {
  font-size: 80%;
}

.defaultContactInfoReceptionTime {
  font-size: 15px;
  padding-top: 2px;
}

@media (max-width: 1000px) {
  /* ===================================
.defaultContactBox
=================================== */
  .defaultContactBox {
    padding: 0 0 15px 0;
    background: #fff;
    border: 20px solid #f6f6f6;
    margin-bottom: 0;
    height: auto;
    flex-direction: column;
    border-right: 0;
    border-left: 0;
  }

  .defaultContactBox .txt01 {
    padding: 14px 0 10px;
    color: #06339d;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    margin-top: 0;
    float: none;
  }

  .defaultContactBox .img01 {
    margin: 12px 0;
    text-align: center;
  }

  .defaultContactBox .btn01 {
    float: none;
    width: 100%;
  }

  .defaultContactBox .btn01 a {
    display: block;
    width: 90%;
    max-width: 300px;
    height: 50px;
    margin: 0 auto;
    background: url(/img/land/btn_land_02.png) no-repeat;
    background-size: 100% auto;
    text-indent: -9999px;
    margin-top: 13px;
  }
  /* 190808追加 */
  .defaultContactBoxInfo {
    text-align: center;
    float: none;
    width: 100%;
    animation: 0;
    margin: 0;
  }

  .defaultContactInfoTel,
  .defaultContactInfoReceptionTime {
    line-height: 1.1;
    color: #003199;
    text-align: center;
  }

  .defaultContactInfoTel {
    width: auto;
    font-size: 33px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
  }

  .defaultContactInfoReceptionTime {
    font-size: 15px;
    padding-top: 2px;
  }
}
