@charset "UTF-8";
/***************************************************************
* common.css
* 共通ファイルで使用するスタイル。以下を含みます。
* リセットCSS：html5reset-1.6.1
* header
*　全体
*　コンテンツ基礎
*　コンポーネント
*　　レイアウト（2~4カラム）
*　　タイトル（中ページメインビジュアル相当）
*　　ボタン
*　　矢印リンク
*　　番号付き見出し
*　　パンくず
*　　ロゴ一覧
* 以下、記事で使える汎用パーツのスタイル
* col
* page-title
* quotation
* style-about
* toc
* insert-image
* item-list
* list
****************************************************************/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
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;
}

/* 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;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #313131;
}

body * {
  box-sizing: border-box;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  transition: all 0.3s ease;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  /*color: #ccc;*/
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  /*color: #ccc;*/
}

::placeholder {
  /* Others */
  /*color: #ccc;*/
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #3b88ff;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

strong {
  color: #ff8c00;
}

small {
  font-size: 1.1rem;
}

@media screen and (max-width: 559px) {
  body {
    font-size: 1.4rem;
  }
}

/***************************************************************
*
* ヘッダー
*
****************************************************************/
header {
  height: 72px;
  background-color: #fff;
  font-size: 1.4rem;
  display: flex;
}

header {
  /* 倉持追加 20200212 */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

header .nav-name a{
  color: #000000;
  text-decoration: none;
}



header figure a {
  height: 100%;
  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;
  padding: 0 30px;
}

header nav {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav > ul {
  margin-right: 20px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav > ul li {
  height: 100%;
  position: relative;
  /* 倉持追加 20200212 */
}

header nav > ul > li.external-link::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/images/common/icon_blankwin.svg") no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: 5px;
  top: calc(50% - 4px);
}

header nav > ul li > ul {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  width: 200px;
  height: 0;
  transition: 0.4s;
}

header nav > ul li:hover > ul {
  height: auto;
}

header nav > ul li a {
  height: 100%;
  padding: 1.6vw;
  display: flex;
  align-items: center;
  font-size: 16px;
}

header nav > ul li a:hover {
  text-decoration: underline;
}

header nav > ul li > ul li a,
header nav > ul li > ul li {
  height: 50px;
}

header nav > ul li > ul li {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: solid 1px #444;
}

header nav > ul li > ul li a {
  font-feature-settings: "palt";
  justify-content: space-between;
}

header nav > ul li > ul li a::after {
  content: "";
  display: inline-block;
  border: solid #666;
  border-width: 1px 1px 0 0;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
}

header nav p > * {
  height: 100%;
  padding: 0 1.171875vw;
  display: flex;
  align-items: center;
}

header nav p img {
  margin-right: 10px;
}

header nav p em {
  line-height: 1;
  font-style: normal;
}

header nav p.tel {
  border-left: 1px solid #333;
}

header nav p.tel em {
  font-weight: bold;
  font-size: 2rem;
  display: block;
}

header nav p.tel small {
  display: block;
  color: #fff;
  margin-top: 4px;
  line-height: 1;
  font-size: 1.2rem;
}

header nav p.mail a {
  background-color: #ff8c00;
}

header nav p.mail a:hover {
  background-color: #ff4d00;
}

header .contact {
  margin-left: auto;
  display: flex;
      padding-right: 30px;
}

header .kv-btn {
    margin: auto;
}

header .kv-btn-text a {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

header .btn-dl .kv-btn-text {
    background: linear-gradient(90deg, #ff9362 0%, #f93025 100%);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    border: none;
    width: auto;
    text-align: center;
    margin-bottom: 0;
    box-shadow: 0px 10px 15px 0px #5a12001a;
    margin-right: 20px;
}

header .btn-contact .kv-btn-text {
    background: linear-gradient(90deg, #00d1ca 0%, #00908c 100%);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    border: none;
    width: auto;
    text-align: center;
    margin-bottom: 0;
    box-shadow: 0px 10px 15px 0px #5a12001a;
}
/* ハンバーガーメニュー */
.hamburger,
.hamburger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 101;
}

.hamburger span {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.hamburger span:nth-of-type(1) {
  top: 10px;
}

.hamburger span:nth-of-type(2) {
  top: 21px;
}

.hamburger span:nth-of-type(3) {
  bottom: 10px;
}

.hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

a.link-blank {
  background-image: url("/images/common/icon_blankwin.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right 50%;
  padding-right: 25px;
}

a.link-blank.gn {
  background-image: url("/images/common/icon_blankwin.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right 25%;
  padding-right: 10px;
  margin-right: 15px;
}

@media screen and (max-width: 1320px) {
  header nav ul {
    margin-right: 10px;
  }
  header nav ul li a {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1200px) {
  header {
    height: 72px;
  }
  header figure a {
    padding: 0 20px;
  }
  header figure a img {
    width: 120px;
  }

  header .nav-sp{
    display: none;
  }

}

@media screen and (max-width: 599px) {
  header {
    height: 65px;
  }
  header nav.contact{
    display: none;
  }
}


@media screen and (max-width: 1200px) {
  header nav > ul li > ul {
    /* 倉持追加 20200212 */
    position: static;
    width: auto;
    height: auto;
  }
  header nav > ul li:hover > ul {
    height: auto;
  }
  /* 倉持追加 20200212 */
  header nav > ul li > ul {
    display: none;
  }

  header nav > ul li > ul.open {
    display: block;
  }
  /* 倉持追加 20200212 */
}
