/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
   article, aside, figcaption, figure, footer, header, hgroup, main,details,section {
    display: block;
  }
  audio, canvas, video {
    display: inline-block;
  }
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  [hidden], template {
   display: none;
  }
  /* ==========================================================================
     Base
  */
  /* 全ての要素のボックスサイズの計算方法を border-box にする */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  /* ページ全体のスタイル設定 */
  html {
    font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.7;
    overflow-y: scroll;  /* 常に縦スクロールバーを表示する */
    cursor: default;
    text-decoration-skip-ink: none;  /* Chrome で下線部の文字切れを調整する */
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;  /* iOS でフォントサイズの調整を避ける */
    -webkit-text-decoration-skip: objects;  /* iOS で下線部の文字切れを調整する */
    -webkit-overflow-scrolling: touch;  /* iOS で慣性スクロールを有効にする */
    -ms-overflow-style: scrollbar;
  }
  @-ms-viewport {
    width: device-width;
  }
  [tabindex="-1"]:focus {
    outline: 0 !important;
  }
  
  /* ページの基準となるスタイルを設定する */
  body {
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;  /* overflow-wrap が IE で効かないため指定する */
    line-height: 1.4;
  }
  body img {
      max-width: 100%;
      height: auto;
  }
  .clearfix{zoom:1}
  .clearfix:after,
  .clearfix:before{content:"";display:table}
  .clearfix:after{clear:both}
  /* ==========================================================================
     余白
  */
  /* 上下のマージンを設定する */
  hr,
  address, details, figcaption, fieldset, form, pre, summary, table {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  h1,h2, h3, h4, h5, h6 ,p {
    margin:0;
  }
  /* 下マージンをなくす : 入れ子のリスト・子要素のマージンと親要素のパディングとの衝突回避 */
  ol ol, ol ul,
  ul ol, ul ul,
  blockquote > :last-child,
  fieldset > :last-child,
  pre > :last-child {
    margin-bottom: 0;
  }
  /* リストの左パディングをなくす */
  ul {
    padding-left: 0;
    list-style: none;
  }
  ol{
    padding-left: 0;
  }
  dd{
    margin-left:0;
  }
  /* ==========================================================================
     Font
  */
  /* 見出しサイズを調整する */
  
  /*水平線*/
  hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  /* 斜体にしない */
  address, dfn, em, var {
    font-style: normal;
  }
  /* 略語・定義 */
  abbr[title],
  abbr[data-original-title] { 
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
  }
  /* 強調 */
  b,
  strong {
    font-weight: bolder;
  }
  /* IE11 でフォントサイズが小さくなるのを直す */
  code, kbd, samp, var {
    font-size: 1em;
  }
  /* 注釈のサイズを調整する */
  small {
    font-size: 80%;
  }
  /* 下付き文字・上付き文字のサイズ・位置を調整する */
  sub,
  sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
  }
  sub { bottom: -.25em; }
  sup { top: -.5em; }
  /* 要約 */
  summary {
    display: list-item; /* すべてのブラウザに正しい表示を追加する */
    cursor: pointer;
  }
  /* 等幅フォントにする */
  pre, code, kbd, samp, var, textarea {
    font-family: MeiryoKe_Gothic, "Ricty Diminished", "Osaka－等幅", "Osaka-等幅", Osaka-mono, "ＭＳ ゴシック", "MS Gothic", "Courier New", Courier, Monaco, Menlo, Consolas, "Lucida Console", monospace;
  }
  /* 等幅ブロック */
  pre {
    padding: 1em;
    overflow: auto;
    overflow-wrap: normal;
    -ms-overflow-style: scrollbar;
    word-wrap: normal;  /* IE・Edge 向け */
    word-break: keep-all;
    white-space: pre;
  }
  /* 引用ブロック */
  blockquote {
    border: 1px solid #00ddaa;  /* var(--nn-green-border) */
    border-radius: 4px;
    padding: 1em;
    background: #ddffee;  /* var(--nn-green-bg) */
    margin: 0 0 1rem;
  }
  /* 引用 */
  q {
    quotes: "\201C" "\201D" "\2018" "\2019";
  }
  q:before, q:after {
    content: '';
    content: none;
  }
  /*リンク*/
  a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
  }
  a:hover {
    color: #0056b3;
    text-decoration: none;
  }
  a:focus {
    outline: thin dotted;
  }
  a:active, a:hover {
    outline: 0;
  }
  a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
  }
  
  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
  }
  a:not([href]):not([tabindex]):focus {
    outline: 0;
  }
  /*テーブル*/
  table {
    border-collapse: collapse;
  }
  th {
    text-align: inherit;
  }
  /* ==========================================================================
     画像
   */
  img {
    border: none;/*IE 10-のリンク内の画像の枠線を削除*/
    vertical-align: middle;
  }
  svg {
    overflow: hidden;
    vertical-align: middle;
  }
  figure {
    margin: 0 0 1rem;
  }
  /* ==========================================================================
     Form
  */
  label {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  button {
    border-radius: 0;
  }
  button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
  }
  /* フォーム部品のフォントは親要素から継承させる */
  button, input, optgroup, select, textarea {
    margin: 0;  /* 要素の余白をなくす */
    font-family: inherit;
    font-size: inherit;
  }
  button,
  input {
    overflow: visible;/* 内容がボックスに収まらない場合、ボックスからはみ出して表示される（初期値） */
  }
  button,
  select {
    text-transform: none;/*大文字・小文字・全角文字への変換をしない */
  }
  /*ボタン類の表示仕様を揃える */
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
  }
  
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    -webkit-appearance: listbox;
  }
  
  fieldset { 
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
  }
  legend {
    display: block;
    width: 100%;
    max-width: 100%; 
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal; 
  }
  progress {
    vertical-align: baseline;
  }
  textarea {
    overflow: auto;
    resize: vertical;
  }
  
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box;
    padding: 0;
    vertical-align: middle;
  }
  
  
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  [type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
  }
  
  [type="search"]::-webkit-search-cancel-button,
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; 
  }
  output {
    display: inline-block;
  }
/*========================================================
スタイルシート
/*========================================================*/  
/*==================
共通
==================*/
html, body {
margin: 0;
padding: 0;
height: 100%;
}
html {
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font-size: 100%;
}
body {
background: #ffffff;
height: 100%;
}
p,li{
  font-size:1.2rem;
}
header{
overflow: hidden;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 99;
}
h2 {
  color:#0c093a;
  padding:0 1rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.4;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }  
  h3 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 1rem;
  }
  h3 span{
    font-size:1.2em;
  }
  h4 {
    font-size: 1.2rem;
    margin: 1rem auto 0.5rem;
  }
  section{
    padding: 3rem 1rem;
  }
  .inner {
    width:1200px;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
  }
  .row {
    display: flex;
  }
  .row>div{
    width:50%;
    }
  .underline{
  text-decoration: underline;
  }
  .anno{
  font-size:0.75em;
  }
  .pc{display: block;}
  .sp{display: none;}

  
/*アニメーション：フェードインアップ*/
.fadeinup {
  transform: translate(0, 50px);
  opacity: 0;
}
.fadeinup.active {
  transition: 1.5s;
  transform: translate(0, 0);
  opacity: 1.0;
}
@keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}
/*アニメーション：グラデ背景*/
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*固定背景*/
/* .wrap::before {
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background: url("../img/bg.jpg") no-repeat center top/cover;
  
} */

/*==================
ヘッダー
==================*/
header{
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  border-bottom: 4px solid #2196f3;
}
main {
  padding-top: 110px;
}
.logo{
  width: 320px;
  line-height: 2.4;
  padding: 0 1rem;
  }

nav {
  font-weight: bold;
  display: flex;
  width: 1200px;
  justify-content: space-between;
  max-width: 96%;
  margin: 0 auto;
  align-items: center;
}


.note span{
font-size: 0.75em;
display: block;
}
.tel{
  font-weight: bold;
  font-size: 2.5rem;
  text-align:center;
}
.tel span {
  font-size: 1rem;
  display: block;
}
.tel a{
  display:block;
  color: #fff;
  background: #ff6e17;
  padding: 0.8rem 0.8rem 0 0.8rem;
  border-radius: 10px;
  margin: 0.5rem auto;
}
i.fa.fa-phone {
    margin-right: 5px;
}

.service{
  background: rgba(255,255,255,.7);
}

.overview,.counterplan,.other{
  background: rgba(255,255,255,.8);
}
/*==================
fv
====================*/
.fv{
  background: linear-gradient(-45deg, #524cff, #51c6ff, #23a6d5, #2350d5);
  background-size: auto;
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
  padding: 5rem 0;
  }
.fv h2 {
  text-shadow: 0 4px 5px rgba(0,0,0,.35);
  padding: 1rem 0 2rem;
  font-style:italic;
  color: #fff;
  position: relative;
  z-index: 9;
}
.fv h2 br{
  display:none;
}
.fv h2 .title01 {
    font-size: 7rem;
    font-feature-settings: "pkna";
    letter-spacing: 0.08rem;
    display: inline-block;
    padding: 4px 20px 0;
    vertical-align: middle;
}
.fv h2 .title02 {
  font-size:4rem;
  position:relative;
}
.fv h2 .title02:after {
  content: "";
  background: url(/img/line.png) no-repeat center center/contain;
  padding: 4.5rem 8rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.catch {
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 0 5px #fff;
  font-weight: bold;
  font-feature-settings: "pkna";
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*==================
overview
====================*/
.overview .erea {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.erea dl {
  font-size: 1.8rem;
  display: inline-block;
  width: 48%;
border: 1px solid #f98a8a;
}
.erea dt {
  background-color: #f98a8a;
  font-weight: 600;
  color: #fff;
}
.erea dd {
  padding: 0.5rem;
}
/*==================
counterplan
====================*/
.counterplan{
padding-bottom: 2rem;
}
.peace{
  border: 4px double #ac8510;
  padding: 1rem 2rem 2rem;
    overflow: hidden;
    width:1000px;
    max-width: 90%;
    margin:0 auto;
}
.peace h2{
    color:#ac8510;
    margin-bottom: 2rem;

}

.peace p{
  text-align: justify;
  font-size: 1.4rem;
  float: left;
}
.peace p span{
font-weight: bold;
}
.peace img {
  float: right;
  width: 42%;
}
/*==================
service
====================*/
.service h2 span{
  display: block;
    font-size: 0.7em;
}
.service h3 {
    color: #fff;
    background-color: #2196f3;
    padding: 5px 10px;
    line-height: 1.4;
}
.service ul {
  flex-wrap: wrap;
  display: flex;

}
.service li {
  width: 23%;
    margin: 0 1% 1rem;
}
.service li p span{
  font-weight: bold;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #ff0000;
    vertical-align: middle;
    padding-left: 5px;
}
.service li p span span{
    font-size: 2rem;
    padding-right: 5px;
}
.desc{
  text-align: justify;
}
/*==================
other
====================*/
.other h3 {
    color: #0c093a;
    padding: 5px 10px;
    margin-bottom: 1rem;
    font-size:1.2rem;
}
.other p {
    font-size:1rem;
}
.other ul {
  flex-wrap: wrap;
  display: flex;
}
.other li {
  width: 18%;
  margin: 0 1% 1rem;
}
.other li p span{
  font-weight: bold;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #ff0000;
  vertical-align: middle;
  padding-left: 5px;
}
.other li p span span{
    font-size: 2rem;
    padding-right: 5px;
}
/*==================
faq
====================*/
.qa {
  background: linear-gradient(-45deg, #524cff, #51c6ff, #23a6d5, #23bcd5);
  background-size: auto;
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
}
.qa h2 {
    color: #fff;
}
.qa dl {
    background-color: #fff;
    padding: 1rem 2rem;
    text-align: justify;
    width: 800px;
    margin: 1rem auto;
    font-size: 1.6rem;
    max-width: 100%;
}
.qa dt{
  margin-bottom:5px;
  border-bottom: 1px dashed #c9c9c9;
}
.qa dt::before ,.qa dd::before {
padding-right: 5px;
font-size: 2.6rem;
    vertical-align: middle;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
    .qa dt::before {
    content: "Q.";
    color: #04c8dc;
}
.qa dd::before {
    content: "A.";
    color: #f98a8a;
}
/*==================
efforts
====================*/
.efforts {
  background: url(../img/effort_bg.jpg) no-repeat center center/cover;
  padding: 5rem 0;
}
.efforts ol {
  width: 600px;
  margin: 2rem auto 0;
  padding: 1rem;
  max-width: 100%;
}
.efforts li {
  text-align: justify;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  border-top: 1px solid #c9c9c9;
  padding: 1rem 0;
  border-bottom: 1px solid #c9c9c9;
  list-style: none;
  position: relative;
}
.arrow{
  border: none;
    background: #2196f3;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    height: 20px;
    width: 40px;
    margin: 0 auto 1rem;
    padding: 0 !important;
    display: block;
}
/*==================
foote
===================*/
.company {
    color: #fff;
    background-color: #0c7be5;
    text-align:center;
    padding: 1.5rem 1rem;
}
.company .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.company .inner div:nth-of-type(1) {
    width: 38%;
    margin: 0 1%;
}
.company .inner div:nth-of-type(2) {
  width: 58%;
  margin: 0 1%;
}
.company li {
  display: inline-block;
  background-color: #ffed5c;
  color: #003c75;
  padding: 5px;
  margin: 0 3px;
  font-weight: bold;
}
.copy{
border-bottom: 2px dotted #fff;
font-size: 1.4rem;
font-weight: bold;
display: inline-block;
}
.name{
  line-height: 1.4;
  font-size:2.4rem;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.name span{
  font-size:.5em;
  display: block;
}
.name img {
    width: 300px;
}
.contact {
  font-size: 2.8rem;
  font-family:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  background-color: #ff6e17;
  width:330px;
  margin: 1rem auto;
  border-radius: 10px;
}
.contact a{
  color:#fff;
  display: block;
  margin: 0 auto;
}
a{
transition: .3s;
}
a:hover{
  opacity: 0.9;
}
.mail{
font-size: 2rem;
}
.copyright {
    text-align:center;
   background-color: #003c75;
  color: #fff;
  padding: 10px;
}
#page_top a{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  text-decoration: none;
}

@media (min-width:768px) {
a[href*="tel:"] {
  pointer-events: none;
}
}

@media (max-width:1024px) {
.pc{display: none;}
.sp{display: block;}

.fv h2 span {
  display: block;
}
.fv h2 .title02::after {
  left: 34%;
}
.fv h2 span {
  margin-right: 0;
}
.overview .inner {
  display: block;
}
.overview .inner div {

  width: 100%;
  margin-bottom: 3rem;
}
.service li{
  width: 31%;
}
}
@media (max-width: 860px) {
  .fv h2 .title01 {
    font-size: 5.5rem;
  }
  .erea dl {
    font-size: 1.2rem;
  }
  }
@media (max-width: 800px) {
.fv h2 span {
  font-size: 5rem;
}
}
@media (max-width: 700px) {
.fv h2 span {
  font-size: 4rem;
  letter-spacing: 0.5rem;
}
h2{
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;

}

.peace h2 {
  margin-bottom: 1rem;
}
.peace p {
  font-size: 1.2rem;
  float: none;
  margin-bottom: 1rem;
  width: 100%;
}
.peace img {
  float: none;
  width: 80%;
}
  .service ul{
    display: block;
  }
  .service li{
    width: 100%;
    margin: 0 auto 2rem;
  }
  .other h3 {
    font-size: 1rem;
}
  .other li {
    width: 48%;
    
  }

.name {
  font-size: 2rem;
}

.qa dl {
  font-size: 1.2rem;
}
.qa dt::before, .qa dd::before {
  font-size: 2rem;
}
.efforts li {
  font-size: 1.2rem;
}
::marker {
  font-size: 1.8rem;
}
.company .inner {
  display: block;
}
.company .inner div:nth-of-type(1),.company .inner div:nth-of-type(2) {
    width: 100%;
    margin: 0 auto 1rem;
}
}

@media (max-width: 640px) {
  .logo {
    width: 200px;
  }
.tel span {
  font-size: 0.7rem;
  display: block;
}
.tel a {
  padding: 0.5rem 0.8rem 0 0.8rem;
  font-size: 1.2rem;
}
main {
  padding-top: 70px;
}
  .catch{
    font-size: 1.2rem;
  }
  .fv{
  padding: 3rem 0;
  background-size: 200% 200%;
}
  .fv h2 {
    font-size: 3rem;
  }
  
.fv h2 span {
  padding: 4px 20px;
  line-height: 1.2;
}
.fv h2 br{
  display: inline-block;
}
.fv h2 .title02::after {
  left: 15%;
}
.erea dl {
  width:100%;
  
}
.copy{
  font-size:1rem;
}
.contact {
  font-size: 2.4rem;
  padding:0.5rem 1rem;
}
}