@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 {
  --main_color: #000;
}

body {
  font-size: 14px;
  line-height: 1;
  font-family: "ten-mincho-text", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--main_color);
  background-image: url("../images/common/bg_screen.png");
  background-attachment: fixed;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/***********************
フォント設定
***********************/
.ff_shipo {
  font-family: "ten-mincho-text", serif;
  font-weight: 400;
  font-style: normal;
}
.ff_noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

.el_imgTxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

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

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

#wrapper {
  position: relative;
  width: 100%;
  padding-top: 100px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #wrapper.home {
    padding-top: 0;
  }
}

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

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

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

@media screen and (max-width: 7680px) {
  .ly_inner {
    width: 100%;
    padding: 0 20px;
  }
}

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

#ly_header {
  width: 100%;
  height: 100px;
  padding: 22px 50px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9000;
}

#ly_header .logo {
  width: 204px;
  height: 56px;
  float: left;
}

.bl_menu {
  width: 1049px;
  float: right;
}

.bl_hNav {
  width: 100%;
  align-items: center;
}

.bl_hNav li {
  display: inline-block;
}

.bl_hNav li a {
  font-size: 16px;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
  background: #fff;
  border-radius: 30px;
}

.bl_hNav li a:hover {
  background: #d7ecf0;
}

.bl_menu .contact {
  display: inline-block;
}

.bl_menu .contact a {
  text-align: center;
  font-size: 18px;
  color: #4684c1;
  border: solid 1px #000;
  padding: 20px 30px;
  background: #fff;
  display: block;
  border-radius: 50px;
}

.bl_menu .contact a:hover {
  color: #fff;
  border: solid 1px #4684c1;
  background: #4684c1;
}

.bl_menu .mark {
  display: none;
}

@media screen and (max-width: 1353px) {
  .bl_menu {
    width: auto;
    max-width: 1049px;
    float: right;
  }
}

@media screen and (max-width: 1291px) {
  #ly_header {
    padding: 22px 20px;
  }
}

@media screen and (max-width: 1232px) {
  .un_menuTrigger {
    display: block;
    width: 56px;
    height: 54px;
    background: url(../images/common/btn_menu_off.svg) center center no-repeat;
    background-size: cover;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }

  #ly_header.active .un_menuTrigger {
    background: url(../images/common/btn_menu_on.svg) center center no-repeat;
    background-size: cover;
  }

  #ly_header .bl_menu {
    width: 100%;
    max-width: inherit;
    position: fixed;
    top: -200vh;
    right: inherit;
    left: 0;
    background: #d7ecf0;
    height: 100vh;
    z-index: 9998;
    padding: 35px 55px;
  }

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

  .bl_hNav li {
    width: 100%;
  }

  .bl_hNav li a {
    background: none;
    padding: 20px 0;
  }

  .bl_hNav li a:hover {
    background: none;
  }

  .bl_menu .contact {
    text-align: center;
    margin-top: 20px;
  }

  .bl_menu .contact a {
    display: inline-block;
    width: 262px;
    padding: 20px 0;
  }

  .bl_menu .mark {
    display: block;
    margin: 40px auto 0;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  #ly_header {
    background: transparent;
  }

  .whead #ly_header {
    padding-top: 30px;
  }

  #ly_header .logo .wh {
    display: none;
    transition: all 0.5s;
  }

  .whead #ly_header .logo .def {
    display: none;
    transition: all 0.5s;
  }

  .whead #ly_header .logo .wh {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  #ly_header {
    height: 86px;
    padding: 20px 20px 0;
  }

  #ly_header .logo {
    width: 174px;
    height: 48px;
  }

  .un_menuTrigger {
    top: 5px;
    right: 4px;
  }
}

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

#ly_footer {
  background: url(../images/common/bg_footer.png) center bottom no-repeat;
  background-size: cover;
  height: 550px;
  padding-top: 207px;
}

#ly_footer .bnrs {
  margin-bottom: 140px;
}

#ly_footer .bnrs .bnr {
  width: 30%;
}

.un_Copyright {
  color: #fff;
  font-size: 12px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  #ly_footer {
    height: 530px;
    background: #fff url(../images/common/bg_footer_sp.png) center bottom 50px no-repeat;
    background-size: 100%;
    padding-top: 60px;
  }

  #ly_footer .bnrs {
    width: 336px;
    margin: 0 auto 100px;
  }

  #ly_footer .bnrs .bnr {
    width: 100%;
    margin-bottom: 25px;
  }

  .un_Copyright {
    color: #000;
    font-size: 10px;
    text-align: center;
  }

  .un_Copyright {
  }
}

/*
ohter
*/

.pc {
  display: block;
}

.sp {
  display: none;
}

.head_box {
  background: url(../images/home/bg_home_head.svg) center center no-repeat;
  background-size: 346px 158px;
  padding: 64px 0 35px;
  text-align: center;
  min-height: 158px;
}

.head_box .head {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.link_out img {
  vertical-align: sub;
  margin-left: 0.5em;
}

.link_out {
  font-size: 18px;
  border: solid 1px #000;
  padding: 10px 35px;
  background: #fff;
  background-size: 24px;
  border-radius: 50px;
  display: inline-block;
}

.cmn_link {
  width: 210px;
  height: 42px;
  font-size: 20px;
  line-height: 42px;
  background: #fff url(../images/common/btn_cmn.svg) right center no-repeat;
  background-size: 42px;
  color: #4684c1;
  border-radius: 24px;
  display: block;
  padding-left: 25px;
}

.cmn_link:hover {
  background: #4684c1 url(../images/common/btn_cmn.svg) right center no-repeat;
  background-size: 42px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .head_box {
    background: url(../images/home/bg_home_head.svg) center center no-repeat;
    background-size: contain;
    padding: 70px 0 0;
    text-align: center;
    min-height: 158px;
  }

  .head_box .head {
    font-size: 30px;
  }
}
