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

/*******************************
* ResetCSS
*******************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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;
}

nav 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;
}

/* 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;
}

ul,
li {
  list-style: none;
}

/***********************
root設定
***********************/

:root {
  --txt_color: #383838;
  --main_color: #374c7c;
  --sub_color: #ffffff;
}

body {
  font-size: 14px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--txt_color);
  background: #fff;
}

/***********************
フォント設定
***********************/
.en {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.bold {
  font-weight: 700;
}

/***********************
画像設定
***********************/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/***********************
リンク設定
***********************/

a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s;
  -webkit-appearance: none;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
}

/***********************
レイアウト
***********************/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
  min-height: 1%;
  clear: both;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex.between {
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.flex.start {
  justify-content: flex-start;
}

.sp {
  display: none;
}

#wrapper {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 820px) {
  #wrapper {
    padding-top: 112px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/***********************
Utils
***********************/

.ly_inner {
  max-width: 1084px;
  margin: 0 auto;
  position: relative;
  padding: 0 30px;
}

@media screen and (max-width: 480px) {
}

/***********************
Header
***********************/

#ly_header {
  background: #fff;
  height: 90px;
  padding-top: 25px;
}

#ly_header .logo {
  width: 190px;
}

.un_menuTrigger {
  display: none;
}

.bl_hNav {
  width: 100%;
}

.bl_menu {
  max-width: 776px;
  width: 75%;
}

.bl_menu li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #101010;
  font-size: 16px;
  font-weight: 700;
  border-bottom: solid 3px #101010;
  padding-top: 10px;
  padding-bottom: 5px;
}

#ly_header a.link_contact {
  color: #fff;
  border-bottom: none;
  padding: 15px 23px;
  background: var(--main_color);
  border-radius: 20px;
}

@media screen and (max-width: 820px) {
  #ly_header {
    width: 100%;
    height: 112px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    padding-top: 12px;
  }

  .un_menuTrigger {
    display: block;
    position: fixed;
    width: 124px;
    height: 30px;
    border-radius: 15px;
    background: #d9d9d9;
    top: 68px;
    left: 50%;
    transform: translateX(-50%);
    color: #374c7c;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    z-index: 9998;
  }

  #ly_header .bl_menu {
    width: 100%;
    max-width: inherit;
    position: fixed;
    top: -200vh;
    right: inherit;
    left: 0;
    transition: all 0.5s;
    background: rgba(255, 255, 255, 1);
    height: 100vh;
    z-index: 9999;
    padding: 140px 60px 50px;
  }

  #ly_header .bl_menu .un_menuTrigger {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 40px;
    left: 60px;
    background: transparent;
    border-radius: 0;
    transform: translateX(0);
    line-height: 1;
    z-index: 9999;
  }

  #ly_header.active .bl_menu {
    top: 0;
  }

  #ly_header .bl_hNav {
    margin-bottom: 30vw;
  }

  .bl_menu li {
    width: 100%;
    margin-bottom: 35px;
  }

  .bl_menu li:last-child {
    display: none;
  }

  .bl_menu li a {
    display: inline-block;
    text-align: left;
    font-size: 24px;
  }

  .tel_logo {
    text-align: center;
  }

  .tel_logo .img {
    margin-bottom: 10px;
  }

  .tel_logo .img img {
    width: 230px;
  }

  .tel_logo .tel_link {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
  }

  #ly_header a.link_contact {
    padding: 8px 15px;
    height: 32px;
    position: fixed;
    top: 15px;
    right: 30px;
  }
}

/***********************
Footer
***********************/

#ly_footer {
  text-align: center;
  padding: 45px 0;
}

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

#ly_footer .addr {
  font-size: 13px;
  margin-bottom: 10px;
}

#ly_footer .tel_link {
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}

.un_Copyright {
  font-size: 10px;
}

@media screen and (max-width: 480px) {
}

.sec_head {
  text-align: center;
  color: var(--main_color);
  font-weight: 700;
}

.sec_head.white {
  text-align: center;
  color: var(--sub_color);
}

.sec_head.ta_l {
  text-align: left;
}

.sec_head .sec_ttl {
  display: inline-block;
  font-size: 40px;
  border-bottom: solid 7px var(--main_color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sec_head.white .sec_ttl {
  border-bottom: solid 7px var(--sub_color);
}

.sec_head .sec_ttl_en {
  font-size: 24px;
  font-weight: 700;
}

.sec_sub_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.66;
  color: var(--main_color);
}

.sec_sub_ttl.white {
  color: var(--sub_color);
}

.desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.link {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 10px 35px;
  text-align: center;
  display: inline-block;
  border-radius: 20px;
}

.link_type01 {
  background: var(--main_color);
}

.link_type02 {
  background: var(--txt_color);
}

.link_type03 {
  background: #767657;
}

.recruit_link {
  background: #ee4848;
  padding: 15px 0;
  width: 100%;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.sec_pageHero {
  height: 400px;
  margin-bottom: 55px;
}

.sub_ttl {
  font-size: 24px;
  font-weight: 700;
  color: var(--main_color);
  text-align: center;
}

.main_ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--main_color);
}

@media screen and (max-width: 820px) {
  .sec_head .sec_ttl {
    font-size: 32px;
  }

  .sec_pageHero {
    height: 200px;
    margin-bottom: 25px;
  }

  .recruit_link {
    font-size: 20px;
  }
}
