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

  CSS Reset

-------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap&subset=japanese");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: #00846c;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #009d80;
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

th, td {
  padding: 0;
  vertical-align: middle;
  text-align: left;
}

ol, ul {
  list-style: none;
}

img, video, iframe {
  max-width: 100%;
}

img {
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

hr {
  display: block;
  height: 0;
  margin: 0 0 1em;
  padding: 0;
  font-size: 1em;
  line-height: 0;
  border: 0;
  -webkit-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

a, area, button, [role="button"], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.main-heading,
.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto .7em;
  padding: 0 0 1em;
  font-size: 1.2em;
  line-height: 1.3;
  border-bottom: 2px solid #fce57d;
}

@media screen and (min-width: 640px), print {
  .main-heading,
  .news-heading {
    padding: 0 0 .5em;
    font-size: 1.4em;
  }
}

@media screen and (min-width: 768px), print {
  .main-heading,
  .news-heading {
    margin-bottom: 1em;
    font-size: 1.7em;
  }
}

/* 共通見出し（h3相当）*/
.main-subheading {
  margin-bottom: 1rem;
  font-size: 1.3em;
  line-height: 1.2;
}

@media screen and (min-width: 640px), print {
  .main-subheading {
    font-size: 1.5em;
  }
}

/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
  list-style-type: none;
}

.main ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  left: .5em;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #ccc;
}

.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}

/* 共通リスト（リストマーカー非表示用）*/
ul.list-style-none > li {
  padding-left: 0;
  list-style-type: none;
}

ul.list-style-none > li:before {
  display: none;
}

ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}

/* 共通リスト（注釈用）*/
ul.list-style-note > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
}

ul.list-style-note > li:before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

/* 共通リンクボタン */
.more {
  margin-top: 1.5em;
  text-align: center;
}

.link-button {
  display: inline-block;
  text-align: center;
  padding: .4em 1em .6em 1em;
  border-radius: 5em;
  border: 3px solid #00846c;
  background-color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (min-width: 480px), print {
  .link-button {
    padding: .4em 1.5em .6em 1.7em;
  }
}

@media screen and (min-width: 640px), print {
  .link-button {
    text-align: left;
    padding: .8em 1.5em .9em 1.8em;
  }
}

@media screen and (min-width: 768px), print {
  .link-button {
    padding: .8em 2em .9em 2.4em;
  }
}

.link-button:hover {
  text-decoration: none;
  background-color: #FFF9DB;
}

.link-button span {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding-right: 27px;
}

@media screen and (min-width: 640px), print {
  .link-button span {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 768px), print {
  .link-button span {
    font-size: 1.8rem;
    padding-right: 35px;
  }
}

@media screen and (min-width: 1100px), print {
  .link-button span {
    font-size: 2rem;
    padding-right: 45px;
  }
}

.link-button span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00846c;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link-button span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

@media screen and (min-width: 1100px), print {
  .link-button {
    font-size: 1em;
  }
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.inner:after {
  content: "";
  display: table;
  clear: both;
}

/* コンテンツ隙間・間隔用 */
.gutter {
  margin-bottom: 5em;
}

.gutter > .inner {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 1.8;
}

@media screen and (max-width: 767.98px) {
  .gutter > .inner {
    padding-right: 0;
    padding-left: 0;
    line-height: 1.6;
  }
}

.gutter > .inner .inner {
  overflow: hidden;
}

.gutter .inner:not(:last-child) {
  margin-bottom: 42px;
  margin-bottom: 3rem;
}

.gutter.dmy {
  max-width: none;
}

.gutter.dmy > .inner {
  max-width: none;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.gutter.dmy.wide {
  margin-right: -22%;
  margin-left: -22%;
}

@media screen and (min-width: 1100px), print {
  .gutter.dmy.wide {
    margin-right: -230px;
    margin-left: -230px;
  }
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}

.anchor-point:before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -80px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0) url(../img/base/blank.gif);
  z-index: -100;
}

@media screen and (min-width: 1100px), print {
  .anchor-point:before {
    margin-top: -60px;
    margin-bottom: 60px;
  }
}

/* サブセクション */
.subsection:not(:last-child) {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #eee;
}

/* CSS カウンターの利用 | https://developer.mozilla.org/ja/docs/Web/Guide/CSS/Counters */
.css-counter {
  counter-reset: section;
}

.css-counter .counter:before {
  counter-increment: section;
  content: counter(section) ". ";
}

/* 下線マーカー */
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, rgba(0, 0, 0, 0)), color-stop(0%, black));
  background: linear-gradient(rgba(0, 0, 0, 0) 85%, black 0%);
}

/* クリック範囲を拡大（テキスト）*/
.widelink {
  display: inline-block;
  position: relative;
  margin: -10px;
  padding: 10px;
}

/* クリック範囲を拡大（カード）*/
.card {
  position: relative;
}

.card a:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

/* スクロール固定 */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* 共通お問い合わせ */
.global-contact {
  font-size: .9em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .global-contact {
    font-size: 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .global-contact-items {
    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;
    margin: 0 -1em 0 0;
  }
}

@media screen and (min-width: 1100px), print {
  .global-contact-item {
    padding: 0 1em 0 0;
  }
}

.global-contact .tel-link {
  display: block;
  position: relative;
  height: 100%;
  padding: 0 0 0 45px;
  color: #fce57d;
  line-height: 1.1;
  text-align: left;
}

.global-contact .tel-link:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e900";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 45px;
  height: 45px;
  color: #fce57d;
  text-align: center;
  line-height: 45px;
  font-size: 42px;
  font-size: 3rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.global-contact a.tel-link {
  color: #fce57d;
}

.global-contact a.tel-link:hover {
  color: #009d80;
  text-decoration: none;
}

.global-contact .text-item {
  display: block;
  font-size: .8em;
  text-align: left;
}

.global-contact .tel-num span {
  width: 100%;
  font-size: 1.8em;
  line-height: 1;
  font-weight: 700;
}

.global-contact .tel-text {
  display: block;
  font-size: .8em;
  background-color: #fce57d;
  color: #fff;
  padding: 2px 0;
}

.global-contact .mail-link {
  display: block;
  position: relative;
  height: 100%;
  color: #fce57d;
  line-height: 1.1;
  border: 2px solid #fce57d;
  border-radius: 20px;
  text-align: center;
  padding: .5em .5em .5em 50px;
}

.global-contact .mail-link:hover {
  background-color: #009d80;
  color: #fff;
  text-decoration: none;
}

.global-contact .mail-link:hover:before {
  color: #fff;
}

.global-contact .mail-link:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e902";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 45px;
  height: 45px;
  color: #fce57d;
  text-align: center;
  line-height: 45px;
  font-size: 28px;
  font-size: 2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* --------------------------------

  Webフォント

-------------------------------- */
/*
 * https://icomoon.io/
 */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?dbkwwe");
  src: url("../fonts/icomoon.eot?dbkwwe#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?dbkwwe") format("truetype"), url("../fonts/icomoon.woff?dbkwwe") format("woff"), url("../fonts/icomoon.svg?dbkwwe#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-tel:before {
  content: "\e900";
}

.icon-home:before {
  content: "\e901";
}

.icon-mail:before {
  content: "\e902";
}

.icon-arrow:before {
  content: "\e903";
}

/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSansJP-Thin.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Light.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Regular.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Medium.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Bold.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Black.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSerifJP-ExtraLight.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Light.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Regular.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Medium.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-SemiBold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Bold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Black.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Sawarabi Mincho" is lisenced under the SIL Open Font License, 1.1
 * SawarabiMincho-Regular.ttf: Copyright 2016 The Sawarabi Mincho Project Authors.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Kosugi Maru" is lisenced under the Apache License, Version 2.0
 * KosugiMaru-Regular.ttf: Copyright(C)2010 MOTOYA CO.,LTD.
 * https://www.google.com/fonts/attribution
 * http://www.apache.org/licenses/LICENSE-2.0.html
 */
/*
 * adobe-fonts/source-han-sans is licensed under the SIL Open Font License 1.1
 * https://github.com/adobe-fonts/source-han-sans
 * http://scripts.sil.org/OFL
 */
@font-face {
  font-family: "SourceHanSansEL";
  src: url("../fonts/SourceHanSans-ExtraLight.woff2") format("woff2"), url("../fonts/SourceHanSans-ExtraLight.woff") format("woff"), url("../fonts/SourceHanSans-ExtraLight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.slideout-open {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1099.98px) {
  .wrapper .header-logo,
  .wrapper .nav-button {
    -webkit-transition: top .3s;
    transition: top .3s;
  }
  .wrapper .tel-button,
  .wrapper .contact-button,
  .wrapper .pagetop {
    -webkit-transition: bottom .3s;
    transition: bottom .3s;
  }
  .wrapper.hide .header-logo,
  .wrapper.hide .nav-button {
    top: -90px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .wrapper.hide .tel-button,
  .wrapper.hide .contact-button {
    bottom: -60px;
  }
  .wrapper.hide .pagetop {
    bottom: 10px;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  padding-top: 90px;
}

@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 123px;
    border-top: 7px solid #fce57d;
  }
}

.header .inner {
  position: static;
  max-width: none;
  z-index: auto;
}

@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0 1em;
    z-index: 1001;
  }
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 1100px), print {
  .header-content {
    display: block;
    position: relative;
    max-width: 1100px;
    margin: auto;
  }
}

.header-lead {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .header-lead {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    font-size: .8em;
    line-height: 25px;
    text-align: center;
    background-color: #fff;
    color: #000;
    border-bottom: 1px solid #fce57d;
  }
}

.header-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  font-size: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  z-index: 900;
}

@media screen and (max-width: 1099.98px) {
  .header-logo {
    padding: .5em 1em;
    border-top: 6px solid #fce57d;
  }
}

@media screen and (min-width: 1100px), print {
  .header-logo {
    display: block;
    position: relative;
    max-width: 1100px;
    height: auto;
    margin: auto;
    background: none;
    z-index: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.header-link {
  display: block;
  width: 199.41176px;
}

@media screen and (min-width: 1100px), print {
  .header-link {
    position: absolute;
    top: 14px;
    left: 0;
    width: 339px;
  }
}

.header-text {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: .7em;
}

@media screen and (min-width: 1100px), print {
  .header-text {
    display: block;
    position: absolute;
    top: 30px;
    left: 430px;
    font-size: 2.1rem;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 500;
    margin-top: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .header-text span {
    font-size: 2.6rem;
    font-weight: 700;
  }
}

.header-info {
  display: none;
  width: 15em;
  font-size: .75em;
}

@media screen and (min-width: 1100px), print {
  .header-info {
    display: block;
    position: absolute;
    top: 32.5px;
    left: 420px;
  }
}

#top .header-info {
  display: block;
  padding: 1em 0;
}

@media screen and (min-width: 1100px), print {
  #top .header-info {
    padding: 0;
  }
}

.header-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: .3em;
}

.header-info dl dt {
  width: 6em;
  margin-right: .5em;
  background-color: #fce57d;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  padding: 2px 5px;
}

.header-info dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header-info p {
  font-weight: 700;
  color: #fce57d;
}

.header-contact {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .header-contact {
    position: absolute;
    display: block;
    top: 32.5px;
    right: 0;
  }
}

@media screen and (max-width: 1099.98px) {
  .header-contact-container {
    display: block;
    position: fixed;
    top: 60px;
    right: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
  }
  .contact-open .header-contact-container {
    pointer-events: auto;
    opacity: 1;
  }
}

@media screen and (max-width: 1099.98px) {
  .header-contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em;
    background-color: #fce57d;
  }
}

@media screen and (max-width: 1099.98px) {
  .header-contact .global-contact .tel-link,
  .header-contact .global-contact .mail-link,
  .header-contact .global-contact .fax-item {
    color: #fff;
  }
  .header-contact .global-contact .tel-link:before,
  .header-contact .global-contact .mail-link:before,
  .header-contact .global-contact .fax-item:before {
    color: #fce57d;
    background-color: #fff;
  }
  .header-contact .global-contact a.tel-link {
    color: #fff;
  }
  .header-contact .global-contact a.tel-link:hover {
    color: #fff;
  }
  .header-contact .global-contact .add-text,
  .header-contact .global-contact .text-item,
  .header-contact .global-contact .num-item,
  .header-contact .global-contact .mail-text {
    color: #fff;
  }
}

/* スクロール時固定用 */
/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
}

@media screen and (max-width: 1099.98px) {
  .nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1001;
    -webkit-transition: right .3s;
    transition: right .3s;
  }
  .nav-open .nav {
    right: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 1000;
    background-color: #eee;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav .inner {
    position: relative;
    width: 280px;
    height: 100%;
    margin: 0;
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (min-width: 1100px), print {
  .nav .inner {
    position: static;
    max-width: inherit;
  }
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    display: none !important;
  }
  .main-nav,
  .main-sp-nav {
    margin-top: 60px;
    padding: 0 10px;
    background-color: #fff;
    opacity: 0;
  }
  .nav-open .main-nav,
  .slideout-open .main-nav,
  .nav-open .main-sp-nav,
  .slideout-open .main-sp-nav {
    opacity: 1;
  }
}

@media screen and (min-width: 1100px), print {
  .main-sp-nav {
    display: none !important;
  }
  .main-nav,
  .main-sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item,
  .main-sp-nav .nav-item {
    position: relative;
  }
  .main-nav .nav-item:first-child,
  .main-sp-nav .nav-item:first-child {
    border-top: 1px solid #eee;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-item,
  .main-sp-nav .nav-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
  }
}

.main-nav .nav-link,
.main-sp-nav .nav-link {
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link,
  .main-sp-nav .nav-link {
    display: block;
    position: relative;
    padding: 1em 1em 1em .5em;
    color: #000;
    border-bottom: 1px solid #eee;
  }
  .main-nav .nav-link:hover,
  .main-sp-nav .nav-link:hover {
    color: #009d80;
    text-decoration: none;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link,
  .main-sp-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 50px;
    color: #000;
    text-align: center;
  }
  .main-nav .nav-link:hover,
  .main-sp-nav .nav-link:hover {
    color: #000;
    text-decoration: none;
    background-color: #fff7d1;
    z-index: 1;
  }
  .main-nav .nav-link:hover:before,
  .main-sp-nav .nav-link:hover:before {
    height: 100%;
    background-color: #009d80;
  }
  .main-nav .nav-link span,
  .main-sp-nav .nav-link span {
    position: relative;
    display: block;
    font-size: 2.1rem;
    padding-left: 35px;
  }
  .main-nav .nav-link span:before,
  .main-sp-nav .nav-link span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 27px;
    height: 26px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/base/header-icon2.png) no-repeat;
    background-size: cover;
  }
}

/* ドロップダウンナビ */
.sub-nav {
  height: 0;
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width: 1099.98px) {
  .sub-nav {
    overflow: hidden;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: absolute;
    top: 50%;
    left: -25%;
    width: 150%;
    margin: 0;
    padding: 0;
    background: #fff;
    -webkit-transition: .2s;
    transition: .2s;
  }
}

.sub-nav-active .sub-nav {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav {
    height: auto;
    overflow: visible;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav {
    top: 100%;
  }
}

.sub-nav ul {
  margin-top: -1px;
}

@media screen and (min-width: 1100px), print {
  .sub-nav ul {
    margin-top: 10px;
  }
  .sub-nav ul:after {
    content: "";
    display: table;
    clear: both;
  }
}

.sub-nav li:not(:last-child) {
  margin-bottom: 1px;
}

@media screen and (min-width: 1100px), print {
  .sub-nav li:not(:last-child) {
    margin-bottom: 0;
  }
}

.sub-nav a {
  display: block;
  position: relative;
  padding: 1em;
  font-size: .9em;
  color: #fff;
  background-color: #00846c;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .sub-nav a {
    padding: 1.5em 1em;
  }
}

.sub-nav a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #009d80;
}

/* ドロップダウンナビボタン */
.sub-nav-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 4em;
  height: 4em;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0) url(../img/base/blank.gif);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button {
    width: 100%;
    height: 100%;
    background: none;
    z-index: 10;
  }
}

.sub-nav-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button:after {
    top: auto;
    right: 0;
    bottom: 8px;
    left: 0;
  }
}

@media screen and (max-width: 1099.98px) {
  .sub-nav-button:hover:after {
    border-color: #00846c;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover:after {
    border-color: #fff;
  }
}

.sub-nav-active .sub-nav-button:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav-button:after {
    bottom: -.5em;
    border-color: #00846c;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button:after {
    bottom: 3px;
    border-color: #fff;
  }
}

/* ドロップダウンナビ（ hover + active ）*/
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover + .nav-link,
  .sub-nav-active .nav-link,
  .sub-nav-active .sub-nav-button:hover + .nav-link,
  .sub-nav-button.nav-link:hover,
  .sub-nav-active .nav-link.sub-nav-button:hover {
    color: #fff;
    background-color: #009d80;
    z-index: 1;
  }
  .sub-nav-button:hover + .nav-link:before,
  .sub-nav-active .nav-link:before,
  .sub-nav-active .sub-nav-button:hover + .nav-link:before,
  .sub-nav-button.nav-link:hover:before,
  .sub-nav-active .nav-link.sub-nav-button:hover:before {
    height: 100%;
    background-color: #009d80;
  }
}

/* ドロップダウンナビ（ hover ）*/
/* ドロップダウンナビ（ active ）*/
/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  outline: none;
  z-index: 910;
}

@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}

.nav-button-icon {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  margin: auto;
  background-color: #000;
}

.nav-button-icon:before, .nav-button-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #000;
}

.nav-button-icon:before {
  margin-top: -9px;
}

.nav-button-icon:after {
  margin-top: 9px;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: none;
}

@media screen and (max-width: 1099.98px) {
  .nav-close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    outline: none;
    z-index: 10;
  }
  .nav-close-button .nav-button-icon {
    display: block;
    position: absolute;
    top: -14px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background: none;
  }
  .nav-close-button .nav-button-icon:before, .nav-close-button .nav-button-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #000;
  }
  .nav-close-button .nav-button-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-close-button .nav-button-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .nav-close-button:after {
    content: "CLOSE";
    display: block;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    color: #000;
    font-size: .65em;
    font-weight: 700;
    text-align: center;
  }
}

/* ナビゲーション背景 */
.nav-screen {
  display: inline;
}

@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}

.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 950;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.nav-open .nav-screen-overlay,
.contact-open .nav-screen-overlay,
.slideout-open .nav-screen-overlay {
  opacity: .4;
  cursor: pointer;
  pointer-events: auto;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
  #top .nav.fixed {
    position: fixed;
    top: 0;
  }
  .nav.fixed:before {
    display: none;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 2.5em 1em 0;
  background: #fff;
  overflow: hidden;
  z-index: 100;
}

#top .main {
  padding: 0 1em;
}

@media screen and (min-width: 1100px), print {
  .main {
    padding: 2.5em 2em 0;
  }
  #top .main {
    padding: 0 2em;
  }
}

.main > .inner {
  max-width: none;
}

/* サイドバー付レイアウト用 */
@media screen and (min-width: 1100px), print {
  .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.main-container .main-column {
  margin-bottom: 5em;
}

@media screen and (min-width: 1100px), print {
  .main-container .main-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 2em;
  }
}

.main-container .main-column:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 1100px), print {
  .main-container .side-column {
    width: 280px;
  }
}

.main-container .side-column .inner {
  padding: 0;
  line-height: 1.5;
}

@media screen and (min-width: 1100px), print {
  .main-container .side-column-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  display: block;
  position: relative;
  padding: 1.5em 1em 0;
  overflow: hidden;
  z-index: 100;
}

@media screen and (min-width: 1100px), print {
  .footer {
    padding: 3em 2em 0;
  }
}

.footer-main {
  margin-bottom: 1.2em;
}

@media screen and (min-width: 768px), print {
  .footer-main {
    margin-bottom: 2.3em;
  }
}

.footer-side {
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  .footer-side {
    margin: 0 auto 1.5em;
  }
}

.footer-map {
  position: relative;
  margin: 0 -1em;
}

@media screen and (min-width: 1100px), print {
  .footer-map {
    margin: 0 -2em;
  }
}

.footer-map:before {
  content: "";
  display: block;
  padding-top: 400px;
  background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .footer-map:before {
    padding-top: 450px;
  }
}

.footer-map iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-logo {
  text-align: left;
}

@media screen and (min-width: 768px), print {
  .footer-logo {
    text-align: center;
  }
}

.footer-link {
  display: inline-block;
  max-width: 65%;
}

.footer-nav .nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 -1em 0;
}

@media screen and (min-width: 768px), print {
  .footer-nav .nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.footer-nav .nav-item {
  padding: 0 0 1em 0;
}

@media screen and (max-width: 639.98px) {
  .footer-nav .nav-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.footer-nav .nav-item:not(:last-child) span {
  border-right: 1px solid #ccc;
}

@media screen and (max-width: 639.98px) {
  .footer-nav .nav-item:not(:last-child) span {
    border-right: none;
  }
}

@media screen and (max-width: 639.98px) {
  .footer-nav .nav-item:nth-child(odd) span {
    padding: 0 2em 0 0;
    border-right: 1px solid #ccc;
  }
}

@media screen and (max-width: 479.98px) {
  .footer-nav .nav-item:nth-child(odd) span {
    padding: 0 1em 0 0;
  }
}

@media screen and (max-width: 639.98px) {
  .footer-nav .nav-item:nth-child(even) span {
    padding: 0 0 0 2em;
  }
}

@media screen and (max-width: 479.98px) {
  .footer-nav .nav-item:nth-child(even) span {
    padding: 0 0 0 1em;
  }
}

.footer-nav .nav-item:first-child span {
  padding: 0 2em 0 0;
}

@media screen and (max-width: 479.98px) {
  .footer-nav .nav-item:first-child span {
    padding: 0 1em 0 0;
  }
}

.footer-nav .nav-item:last-child span {
  padding: 0 0 0 2em;
}

@media screen and (max-width: 479.98px) {
  .footer-nav .nav-item:last-child span {
    padding: 0 0 0 1em;
  }
}

.footer-nav .nav-item span {
  display: block;
}

@media screen and (min-width: 640px), print {
  .footer-nav .nav-item span {
    padding: 0 2em;
  }
}

.footer-nav .nav-link {
  color: #000;
  font-size: 1.3rem;
}

@media screen and (min-width: 768px), print {
  .footer-nav .nav-link {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link {
    font-size: 1.8rem;
  }
}

.footer-nav .nav-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.footer .pagetop {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 10px;
  bottom: 70px;
  margin: 0;
  text-align: center;
  overflow: hidden;
  z-index: 100;
  border: 1px solid #fff;
}

@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    bottom: 10px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
}

@media screen and (min-width: 1100px) {
  .footer .pagetop.fixed {
    opacity: 1;
    pointer-events: auto;
  }
}

.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  background-color: #00846c;
  -webkit-transition: .2s;
  transition: .2s;
}

.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #009d80;
}

.footer .pagetop a:hover:before {
  border-color: #fff;
}

.footer .pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: .8em;
  height: .8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.footer .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  margin: 0 -1em;
  padding: 0 1em;
  color: #000;
  background-color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .footer .copy {
    margin: 0 -2em;
    padding: 0 2em;
  }
}

.footer .copy small {
  display: block;
  width: 100%;
  font-size: 1.2rem;
}

@media screen and (min-width: 480px), print {
  .footer .copy small {
    text-align: center;
  }
}

.footer .copy span {
  display: none;
}

@media screen and (min-width: 768px), print {
  .footer .copy span {
    display: inline;
  }
}

/* --------------------------------

  メインビジュアル

-------------------------------- */
.mainvisual {
  position: relative;
  margin-top: 0;
}

.mainvisual .inner {
  width: 100%;
  height: 100%;
  max-width: none;
  background-color: #fff;
}

.mainvisual-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 639.98px) {
  .mainvisual-img img.img1 {
    display: none;
  }
}

@media screen and (min-width: 640px), print {
  .mainvisual-img img.img2 {
    display: none;
  }
}

.mainvisual-catch {
  position: absolute;
  display: block;
  top: 10%;
  left: 0;
  padding: 0 1em;
  width: 100%;
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
}

.mainvisual-catch .catch {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.mainvisual-catch .br {
  display: block;
}

@media screen and (min-width: 640px), print {
  .mainvisual-catch .br {
    display: none;
  }
}

.mainvisual-heading {
  margin-bottom: 2%;
}

.mainvisual-heading span {
  display: block;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.mainvisual-heading span.lead {
  font-size: 1.5rem;
  letter-spacing: .1rem;
}

@media screen and (min-width: 768px), print {
  .mainvisual-heading span.lead {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .mainvisual-heading span.lead {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 1200px), print {
  .mainvisual-heading span.lead {
    font-size: 3rem;
  }
}

.mainvisual-heading span.heading {
  color: #00846c;
  font-size: 3.5rem;
  letter-spacing: .2rem;
}

@media screen and (min-width: 768px), print {
  .mainvisual-heading span.heading {
    font-size: 5rem;
  }
}

@media screen and (min-width: 1100px), print {
  .mainvisual-heading span.heading {
    font-size: 6rem;
  }
}

@media screen and (min-width: 1200px), print {
  .mainvisual-heading span.heading {
    font-size: 7rem;
  }
}

.mainvisual-list {
  margin-bottom: 1em;
}

.mainvisual-list li {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.8;
  padding-left: 26px;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .mainvisual-list li {
    font-size: 1.8rem;
    padding-left: 31px;
  }
}

@media screen and (min-width: 1100px), print {
  .mainvisual-list li {
    font-size: 2.2rem;
    padding-left: 36px;
  }
}

@media screen and (min-width: 1200px), print {
  .mainvisual-list li {
    font-size: 2.6rem;
    padding-left: 40px;
  }
}

.mainvisual-list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-icon1.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .mainvisual-list li:before {
    width: 25px;
    height: 22px;
  }
}

@media screen and (min-width: 1100px), print {
  .mainvisual-list li:before {
    width: 30px;
    height: 26px;
  }
}

@media screen and (min-width: 1200px), print {
  .mainvisual-list li:before {
    width: 34px;
    height: 30px;
  }
}

.mainvisual-list li span {
  background: url(../img/base/top-line1.png) repeat-x left bottom;
}

@media screen and (max-width: 767.98px) {
  .mainvisual-list li span {
    background: url(../img/base/top-sp-line1.png) repeat-x left bottom;
    background-size: auto 5px;
  }
}

.mainvisual-text {
  font-size: 1.5rem;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .mainvisual-text {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1100px), print {
  .mainvisual-text {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1200px), print {
  .mainvisual-text {
    font-size: 2.6rem;
  }
}

/* --------------------------------

  スライダー

-------------------------------- */
.slider {
  position: relative;
  margin-bottom: 40px;
  background-color: #fff;
}

.slider .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}

.slider-main {
  display: block;
  position: relative;
}

.slider-main:before {
  content: "";
  display: block;
  padding-top: 35.14%;
}

@media screen and (min-width: 1600px), print {
  .slider-main:before {
    padding-top: 674px;
  }
}

.slider-side {
  padding: 1.5em 1em;
  background-color: #fce57d;
}

@media screen and (min-width: 768px), print {
  .slider-side {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 60px;
    background: none;
    z-index: 100;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 1100px), print {
  .slider-side {
    padding: 0 140px;
  }
}

.slider-catch {
  max-width: 1100px;
  margin: auto;
  color: #fff;
  text-align: center;
}

.slider-catch .catch {
  font-weight: 700;
}

.slider-catch .catch1 {
  display: block;
  font-size: .9em;
}

@media screen and (min-width: 1100px), print {
  .slider-catch .catch1 {
    font-size: 1.4em;
  }
}

.slider-catch .catch2 {
  display: block;
  font-size: 1.5em;
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 1100px), print {
  .slider-catch .catch2 {
    font-size: 2.4em;
  }
}

.slider-catch .br {
  display: block;
}

@media screen and (min-width: 640px), print {
  .slider-catch .br {
    display: none;
  }
}

.slider .slick-slider,
.slider .slick-list,
.slider .slick-track {
  height: 100%;
}

.slider .slick-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.slider .slick-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.slider .slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider .slide img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1600px;
  height: 1px;
  margin: auto;
  z-index: 101;
}

.slider-prev, .slider-next {
  display: block;
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media screen and (min-width: 768px), print {
  .slider-prev, .slider-next {
    top: -25px;
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 1100px), print {
  .slider-prev, .slider-next {
    top: -55px;
    width: 110px;
    height: 110px;
  }
}

.slider-prev:before, .slider-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: auto;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.slider-prev {
  left: 0;
}

.slider-prev:before {
  left: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slider-next {
  right: 0;
}

.slider-next:before {
  right: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.slider-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 100;
}

.slider-dots ul {
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.slider-dots li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 30px;
  height: 40px;
  cursor: pointer;
}

.slider-dots li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 100%;
  background-color: #ddd;
}

.slider-dots li.slick-active:before {
  background-color: #999;
}

.slider-dots button {
  display: none;
}

/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* .tel-button,
.contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60px;
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: #fff;
  text-align: center;
  border: none;
  background: #00846c;
  cursor: pointer;
  outline: none;
  z-index: 900;
}

@media screen and (min-width: 1100px), print {
  .tel-button,
  .contact-button {
    display: none;
  }
}

.tel-button:hover,
.contact-button:hover {
  color: #fff;
  background-color: #009d80;
}

.tel-button a,
.contact-button a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  border-top: 1px solid #fff;
}

.tel-button a:hover,
.contact-button a:hover {
  color: #fff;
  text-decoration: none;
}

.tel-button .icon,
.contact-button .icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tel-button .icon:before,
.contact-button .icon:before {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  font-size: 35px;
  font-size: 2.5rem;
}

.tel-button .icon:after,
.contact-button .icon:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  font-size: .7em;
  font-weight: 700;
  letter-spacing: .1em;
  font-family: "Noto Sans JP", sans-serif;
}

.tel-button {
  right: 0;
}

.tel-button .icon:after {
  content: "TEL";
}

.contact-button {
  left: 0;
}

.contact-button a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 2px;
  height: 50%;
  margin: auto;
  background-color: #fff;
}

.contact-button .icon:after {
  content: "CONTACT";
} */

/* 電話でまずは無料相談 */
#wrapper .tel-button {
  -webkit-transition: bottom .3s;
  transition: bottom .3s;
}

#wrapper.hide2 .tel-button {
  bottom: 0;
}

.tel-button {
  display: block;
  position: fixed;
  bottom: -80px;
  right: 0;
  width: 100%;
  height: 80px;
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: #fff;
  text-align: center;
  border: none;
  background-color: #009d80;
  outline: none;
  z-index: 900;
}

.tel-button .tel-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2em;
  padding: .1em 0;
  text-decoration: none;
  border-top: 1px solid #fff;
}

.tel-button .icon-tel span {
  font-weight: 700;
  font-family: 'Manrope', sans-serif !important;
}

.tel-button .icon-tel:before {
  font-size: .9em;
  margin-right: .2em;
}

@media screen and (max-width: 640px) {
  .tel-button .tel-link {
    font-size: 1.5em;
    padding: .4em 0;
  }
  .tel-button .icon-tel:before {
    font-size: .8em;
  }
}

.tel-button .tel-link:hover {
  color: #fff;
  text-decoration: none;
}

.tel-button .icon:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  font-size: .5em;
  font-weight: 700;
  letter-spacing: .1em;
}

.tel-button .icon:after {
  content: "電話でまずは無料相談";
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  background: url(../img/base/bg.jpg) center 23% no-repeat;
  background-size: cover;
  overflow: hidden;
}

.page-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 160px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .page-title-inner {
    height: 250px;
  }
}

.page-title-name {
  display: block;
  width: 100%;
  padding: 0 10px;
  color: #00846c;
  font-size: .7em;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .page-title-name {
    font-size: 1em;
  }
}

/* --------------------------------

  パンくずリスト

-------------------------------- */
.topic-path {
  position: relative;
  margin: -5em 0 3em;
  overflow: hidden;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .topic-path {
    margin: -5em 0 5em;
  }
}

.topic-path ul {
  max-width: 1100px;
  margin: auto;
  padding: 1em .5em;
}

@media screen and (min-width: 1100px), print {
  .topic-path ul {
    padding: 1.5em .5em;
  }
}

.topic-path ul:after {
  content: "";
  display: table;
  clear: both;
}

.topic-path li {
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-indent: 0;
  font-size: .85em;
  font-family: "Noto Sans JP", sans-serif;
}

.topic-path li:before, .topic-path li:after {
  display: none;
}

.topic-path li.current {
  color: #000;
}

.topic-path a {
  display: block;
  position: relative;
  margin-right: .7em;
  padding-right: 1em;
}

.topic-path a:hover {
  text-decoration: underline;
}

.topic-path a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: .5em;
  height: .5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
  body {
    width: 1100px;
    background: none;
  }
}

/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  margin-right: -1em;
  margin-left: -1em;
}

@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}

.section-header {
  max-width: 1100px;
  margin: 0 auto 1.5em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .section-header {
    margin: 0 auto 2em;
  }
}

@media screen and (min-width: 1100px), print {
  .section-header {
    margin: 0 auto 3em;
  }
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 480px), print {
  .section-heading {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 768px), print {
  .section-heading {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .section-heading {
    font-size: 4rem;
  }
}

.section > .inner {
  line-height: 1.8;
}

@media screen and (max-width: 767.98px) {
  .section > .inner {
    line-height: 1.6;
  }
}

/* 相続税に強い税理士に関する記事 */
.tax-accountant-section .section-inner {
  padding: 2.5em 1em;
}

@media screen and (min-width: 640px), print {
  .tax-accountant-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .tax-accountant-section .section-inner {
    padding: 5em 2em 0;
  }
}

.tax-accountant-section .section-header {
  margin: 0 auto 2em;
}

@media screen and (min-width: 1100px), print {
  .tax-accountant-section .section-header {
    margin: 0 auto 3em;
  }
}

.tax-accountant-section .section-heading {
  position: relative;
  display: inline-block;
  padding-left: 39px;
}

@media screen and (min-width: 768px), print {
  .tax-accountant-section .section-heading {
    padding-left: 44px;
  }
}

@media screen and (min-width: 1100px), print {
  .tax-accountant-section .section-heading {
    padding-left: 50px;
  }
}

.tax-accountant-section .section-heading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 25px;
  height: 38px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-icon5.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .tax-accountant-section .section-heading:before {
    width: 30px;
    height: 46px;
  }
}

@media screen and (min-width: 1100px), print {
  .tax-accountant-section .section-heading:before {
    width: 36px;
    height: 55px;
  }
}

.tax-accountant-section .section-heading span {
  font-size: 1.9rem;
  font-weight: 700;
  padding-bottom: .3em;
  background: url(../img/base/top-line3.png) no-repeat left bottom;
}

@media screen and (min-width: 480px), print {
  .tax-accountant-section .section-heading span {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 1100px), print {
  .tax-accountant-section .section-heading span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1099.98px) {
  .tax-accountant-section .section-heading span {
    background: url(../img/base/top-sp-line3.png) repeat-x left bottom;
    background-size: auto 14px;
  }
}

@media screen and (min-width: 1100px), print {
  .tax-accountant-section .inner {
    padding: 0 0 5em;
    border-bottom: 1px dotted #00846c;
  }
}

/* 相続税に関する記事 */
.souzoku-section .section-inner {
  padding: 2.5em 1em;
}

@media screen and (min-width: 640px), print {
  .souzoku-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .souzoku-section .section-inner {
    padding: 5em 2em;
  }
}

.souzoku-section .section-header {
  margin: 0 auto 2em;
}

@media screen and (min-width: 1100px), print {
  .souzoku-section .section-header {
    margin: 0 auto 3em;
  }
}

.souzoku-section .section-heading {
  position: relative;
  display: inline-block;
  padding-left: 44px;
}

@media screen and (min-width: 768px), print {
  .souzoku-section .section-heading {
    padding-left: 50px;
  }
}

@media screen and (min-width: 1100px), print {
  .souzoku-section .section-heading {
    padding-left: 68px;
  }
}

.souzoku-section .section-heading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 30px;
  height: 37px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-icon6.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .souzoku-section .section-heading:before {
    width: 36px;
    height: 44px;
  }
}

@media screen and (min-width: 1100px), print {
  .souzoku-section .section-heading:before {
    width: 44px;
    height: 54px;
  }
}

.souzoku-section .section-heading span {
  font-size: 1.9rem;
  font-weight: 700;
  padding-bottom: .3em;
  background: url(../img/base/top-line3.png) no-repeat left bottom;
}

@media screen and (min-width: 480px), print {
  .souzoku-section .section-heading span {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 1100px), print {
  .souzoku-section .section-heading span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1099.98px) {
  .souzoku-section .section-heading span {
    background: url(../img/base/top-sp-line3.png) repeat-x left bottom;
    background-size: auto 14px;
  }
}

/* 専門スタッフがご相談に乗っています */
.contact-section .section-inner {
  padding: 2.5em 1em;
}

@media screen and (min-width: 640px), print {
  .contact-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-section .section-inner {
    padding: 3em 2em;
  }
}

.contact-section .inner {
  max-width: 980px;
}

.contact-section:first-child {
  margin-top: -2.5em;
}

@media screen and (min-width: 1100px), print {
  .contact-section:first-child {
    margin-top: -3em;
  }
}

.contact-wrap {
  border: 8px solid #fff7d1;
}

.contact-inner {
  padding: 2.5em;
  background: url(../img/top/top-img1.jpg) no-repeat right top;
  background-size: auto;
}

@media screen and (max-width: 767.98px) {
  .contact-inner {
    padding: 1.8em 1.2em;
    background-size: 65%;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-inner {
    background: url(../img/top/top-sp-img1.jpg) no-repeat right top;
  }
}

.contact-main {
  margin-bottom: 1.7em;
}

.contact-heading {
  color: #00846c;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .15rem;
  line-height: 1.35;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: .5em;
}

@media screen and (min-width: 768px), print {
  .contact-heading {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-heading {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-heading .br {
    display: block;
  }
}

.contact-list {
  display: inline-block;
  margin-bottom: 1em;
}

@media screen and (max-width: 767.98px) {
  .contact-list {
    padding: .7em .3em;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
  }
}

@media screen and (max-width: 639.98px) {
  .contact-list {
    display: block;
  }
}

.contact-list li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4 !important;
  padding-left: 27px !important;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .contact-list li {
    font-size: 2rem;
    padding-left: 33px !important;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-list li {
    font-size: 2.4rem;
    padding-left: 40px !important;
  }
}

.contact-list li:not(:last-child) {
  margin-bottom: .3em;
}

.contact-list li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 18px;
  height: 17px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-icon4.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .contact-list li:after {
    width: 20px;
    height: 19px;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-list li:after {
    width: 27px;
    height: 25px;
  }
}

.contact-text {
  font-size: 1.5rem;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .contact-text {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-text {
    font-size: 2rem;
  }
}

.contact-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 639.98px) {
  .contact-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 640px), print {
  .contact-tel {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.3;
    padding: 1em 0;
    border-top: 1px solid #f76016;
    border-bottom: 1px solid #f76016;
  }
}

@media screen and (min-width: 768px), print {
  .contact-tel {
    padding: 1em .7em;
  }
}

@media screen and (min-width: 992px), print {
  .contact-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 640px), print {
  .contact-tel .text {
    color: #f76016;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .1rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

@media screen and (min-width: 992px), print {
  .contact-tel .text {
    text-align: center;
    margin: 0 1em 0 0;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-tel .text {
    font-size: 2rem;
  }
}

@media screen and (min-width: 640px), print {
  .contact-tel .text span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
  }
}

@media screen and (min-width: 992px), print {
  .contact-tel .text span {
    display: block;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-tel .text span {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 640px), print {
  .contact-tel .tel {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #f76016;
    font-size: 3.7rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding-left: 49px;
  }
}

@media screen and (min-width: 768px), print {
  .contact-tel .tel {
    font-size: 4rem;
    padding-left: 59px;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-tel .tel {
    font-size: 5rem;
    padding-left: 70px;
  }
}

@media screen and (min-width: 640px), print {
  .contact-tel .tel:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 35px;
    height: 23px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/top/top-icon3.png) no-repeat;
    background-size: cover;
  }
}

@media screen and (min-width: 768px), print {
  .contact-tel .tel:before {
    width: 45px;
    height: 30px;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-tel .tel:before {
    width: 56px;
    height: 37px;
  }
}

@media screen and (max-width: 639.98px) {
  .contact-tel.pc {
    display: none;
  }
}

@media screen and (min-width: 640px), print {
  .contact-tel.sp {
    display: none;
  }
}

.contact-mail {
  width: 100%;
  margin: 1.5em 0 0 0;
}

@media screen and (min-width: 640px), print {
  .contact-mail {
    width: auto;
    margin: 0 0 0 1.5em;
  }
}

.contact-link {
  display: block;
  text-align: center;
  padding: .4em 1.5em .6em 1.7em;
  border-radius: 5em;
  border: 3px solid #00846c;
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (min-width: 640px), print {
  .contact-link {
    text-align: left;
    padding: 1em 1.5em 1em 1.7em;
  }
}

@media screen and (min-width: 768px), print {
  .contact-link {
    padding: 1.2em 2em 1.2em 2.2em;
  }
}

.contact-link:hover {
  text-decoration: none;
  background-color: #fff7d1;
}

.contact-link span {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 27px;
}

@media screen and (min-width: 640px), print {
  .contact-link span {
    font-size: 1.7rem;
    padding-left: 32px;
  }
}

@media screen and (min-width: 768px), print {
  .contact-link span {
    font-size: 1.8rem;
    padding-left: 35px;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-link span {
    font-size: 2.2rem;
    padding-left: 40px;
  }
}

.contact-link span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-icon2.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 640px), print {
  .contact-link span:before {
    width: 25px;
    height: 25px;
  }
}

@media screen and (min-width: 768px), print {
  .contact-link span:before {
    width: 28px;
    height: 28px;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-link span:before {
    width: 33px;
    height: 33px;
  }
}

.contact-telbtn {
  position: relative;
  display: block;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  padding: .5em 2em .8em;
  margin-bottom: 1em;
  border-radius: 1em;
  -webkit-box-shadow: 0 6px 0 0 #cb5600;
  box-shadow: 0 6px 0 0 #cb5600;
  background-color: #f16600;
}

@media screen and (min-width: 360px), print {
  .contact-telbtn {
    padding: .5em 3em .8em;
  }
}

.contact-telbtn:hover {
  color: #fff;
  text-decoration: none;
}

.contact-telbtn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: .8em;
  display: block;
  width: 20px;
  height: 33px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-sp-icon1.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 360px), print {
  .contact-telbtn:before {
    left: 1.2em;
    width: 28px;
    height: 46px;
  }
}

.contact-telbtn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: .8em;
  display: block;
  width: 20px;
  height: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-sp-icon2.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 360px), print {
  .contact-telbtn:after {
    right: 1.2em;
    width: 30px;
    height: 37px;
  }
}

.contact-telbtn .tel {
  font-size: 2.5rem;
  font-family: 'Manrope', sans-serif;
}

.contact-telbtn .text {
  font-size: 1.5rem;
  font-weight: 700;
}

/* 税理士に相談・依頼するタイミング */
.timing-section .section-inner {
  padding: 2em 1em;
  background-color: #fff3db;
}

@media screen and (min-width: 640px), print {
  .timing-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .timing-section .section-inner {
    padding: 5em 2em;
  }
}

.timing-item {
  border-radius: 1em;
  border: 3px solid #00846c;
  background-color: #fff;
}

.timing-item:not(:last-child) {
  margin-bottom: 1.3em;
}

@media screen and (min-width: 768px), print {
  .timing-item:not(:last-child) {
    margin-bottom: 2.5em;
  }
}

.timing-item .timing-inner {
  background-repeat: no-repeat;
  background-position: 92% 1%;
}

@media screen and (min-width: 768px), print {
  .timing-item .timing-inner {
    background-position: 95% 5%;
  }
}

.timing-item.item1 .timing-inner {
  background-image: url(../img/top/top-img2.png);
  background-position: 92% 3%;
  background-size: 25%;
}

@media screen and (min-width: 768px), print {
  .timing-item.item1 .timing-inner {
    background-size: auto;
    background-position: 95% 5%;
  }
}

.timing-item.item2 .timing-inner {
  background-image: url(../img/top/top-img3.png);
  background-size: 17%;
}

@media screen and (min-width: 768px), print {
  .timing-item.item2 .timing-inner {
    background-size: auto;
  }
}

.timing-item.item3 .timing-inner {
  background-image: url(../img/top/top-img4.png);
  background-size: 20%;
}

@media screen and (min-width: 768px), print {
  .timing-item.item3 .timing-inner {
    background-size: auto;
  }
}

.timing-item.item4 .timing-inner {
  background-image: url(../img/top/top-img5.png);
  background-size: 13%;
}

@media screen and (min-width: 768px), print {
  .timing-item.item4 .timing-inner {
    background-size: auto;
  }
}

.timing-inner {
  position: relative;
  padding: 4.3em 1.5em 2em;
}

@media screen and (min-width: 768px), print {
  .timing-inner {
    padding: 5.5em 3em 3em;
  }
}

.timing-number {
  position: absolute;
  top: 0;
  left: 1.5em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  padding: .1em 1.2em .6em;
  border-radius: 0 0 1em 1em;
  background-color: #00846c;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .timing-number {
    left: 2.5em;
    font-size: 2rem;
    padding: .1em 1.2em .4em;
  }
}

@media screen and (min-width: 1100px), print {
  .timing-number {
    font-size: 2.2rem;
  }
}

.timing-number > span {
  color: #f8e27c;
  font-size: 1.9rem;
  font-weight: 700;
}

@media screen and (min-width: 768px), print {
  .timing-number > span {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 1100px), print {
  .timing-number > span {
    font-size: 3rem;
  }
}

.timing-number > span > span {
  font-size: 2.7rem;
}

@media screen and (min-width: 768px), print {
  .timing-number > span > span {
    font-size: 3.4rem;
  }
}

@media screen and (min-width: 1100px), print {
  .timing-number > span > span {
    font-size: 4rem;
  }
}

.timing-heading {
  margin-bottom: 1em;
}

@media screen and (min-width: 768px), print {
  .timing-heading {
    margin-bottom: 2em;
  }
}

.timing-heading span {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0, #f8e27c));
  background: linear-gradient(transparent 75%, #f8e27c 0);
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .timing-heading span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .timing-heading span {
    font-size: 2.6rem;
  }
}

.timing-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .timing-text p {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 1100px), print {
  .timing-text p {
    font-size: 2rem;
  }
}

.timing-text span {
  color: #f76016;
  font-weight: 700;
}

.timing-text a {
  color: #39b4f4;
}

.timing-text a:hover {
  text-decoration: none;
}

/* 相続に強い税理士の選び方 */
.choose-section .section-inner {
  padding: 2em 1em;
  background-color: #fff7d1;
}

@media screen and (min-width: 640px), print {
  .choose-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .choose-section .section-inner {
    padding: 5em 2em;
  }
}

@media screen and (max-width: 1099.98px) {
  .choose-item.item1 img {
    width: 84px;
  }
}

@media screen and (max-width: 1099.98px) {
  .choose-item.item2 img {
    width: 114px;
  }
}

@media screen and (max-width: 1099.98px) {
  .choose-item.item3 img {
    width: 128px;
  }
}

@media screen and (max-width: 1099.98px) {
  .choose-item.item4 img {
    width: 85px;
  }
}

@media screen and (max-width: 1099.98px) {
  .choose-item.item5 img {
    width: 126px;
  }
}

@media screen and (max-width: 1099.98px) {
  .choose-item.item6 img {
    width: 57px;
  }
}

.choose-inner {
  height: 100%;
  padding: .5em 1.2em 1.2em;
  border-radius: 1em;
  border: 3px solid #f5d649;
  background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .choose-inner {
    padding: .5em 1.5em 1.5em;
  }
}

.choose-head {
  text-align: center;
  margin-bottom: .8em;
}

.choose-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: .7em;
}

@media screen and (min-width: 480px), print {
  .choose-point {
    min-height: 127px;
  }
}

.choose-point .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 68px;
  height: 68px;
  color: #00846c;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  padding: .5em 0;
  border-radius: 50%;
  background-color: #f8e27c;
}

@media screen and (min-width: 1100px), print {
  .choose-point .number {
    width: 100px;
    height: 100px;
    font-size: 1.8rem;
  }
}

.choose-point .number span {
  display: block;
  font-size: 3.2rem;
}

@media screen and (min-width: 1100px), print {
  .choose-point .number span {
    font-size: 3.8rem;
  }
}

.choose-point .img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 1100px), print {
  .choose-point .img {
    margin: 0 0 0 1em;
  }
}

.choose-heading {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: .4em 0;
  border-top: 3px solid #E4F2F0;
  border-bottom: 3px solid #E4F2F0;
}

@media screen and (min-width: 768px), print {
  .choose-heading {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .choose-heading {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 479.98px) {
  .choose-heading .br {
    display: block;
  }
}

.choose-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .choose-content p {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 1100px), print {
  .choose-content p {
    font-size: 2rem;
  }
}

.choose-secondary .choose-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -.5em -1.2em 0;
}

@media screen and (min-width: 768px), print {
  .choose-secondary .choose-items {
    margin: 0 -1em -2em 0;
  }
}

@media screen and (min-width: 1100px), print {
  .choose-secondary .choose-items {
    margin: 0 -2.5em -2.8em 0;
  }
}

.choose-secondary .choose-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 .5em 1.2em 0;
}

@media screen and (min-width: 480px), print {
  .choose-secondary .choose-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 768px), print {
  .choose-secondary .choose-item {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
    padding: 0 1em 2em 0;
  }
}

@media screen and (min-width: 1100px), print {
  .choose-secondary .choose-item {
    padding: 0 2.5em 2.8em 0;
  }
}

/* 相続税申告を何故税理士に依頼、相談するの？ */
.reason-section .section-inner {
  padding: 2em 1em;
  background-color: #f4fcfb;
}

@media screen and (min-width: 640px), print {
  .reason-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .reason-section .section-inner {
    padding: 5em 2em;
  }
}

.reason-item {
  border-radius: 1em;
  border: 3px solid #00846c;
  background-color: #fff;
}

.reason-item:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 768px), print {
  .reason-item:not(:last-child) {
    margin-bottom: 2.5em;
  }
}

.reason-item:nth-child(odd) .reason-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 639.98px) {
  .reason-item:nth-child(odd) .reason-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.reason-item:nth-child(odd) .reason-side {
  margin: 0 0 0 3em;
}

@media screen and (max-width: 639.98px) {
  .reason-item.item1 .reason-head {
    background-image: url(../img/top/top-img12.png);
    background-size: 3em;
  }
}

@media screen and (max-width: 639.98px) {
  .reason-item.item2 .reason-head {
    background-image: url(../img/top/top-img13.png);
    background-size: 2em;
  }
}

@media screen and (max-width: 639.98px) {
  .reason-item.item3 .reason-head {
    background-image: url(../img/top/top-img14.png);
    background-size: 3.5em;
  }
}

@media screen and (max-width: 639.98px) {
  .reason-item.item4 .reason-head {
    background-image: url(../img/top/top-img15.png);
    background-size: 4.8em;
  }
}

.reason-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2em 2.5em 2.5em;
}

@media screen and (max-width: 639.98px) {
  .reason-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 1.2em 1.5em;
  }
}

.reason-side {
  margin: 0 3em 0 0;
}

@media screen and (max-width: 639.98px) {
  .reason-side {
    display: none;
  }
}

.reason-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.reason-head {
  position: relative;
}

@media screen and (max-width: 639.98px) {
  .reason-head {
    background-repeat: no-repeat;
    background-position: right center;
  }
}

.reason-heading {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-bottom: .8em;
  margin-bottom: 1.4em;
  background: url(../img/base/top-line2.png) no-repeat left bottom;
}

@media screen and (max-width: 639.98px) {
  .reason-heading {
    padding-top: 1.5em;
    background: url(../img/base/top-sp-line2.png) repeat-x left bottom;
    background-size: auto 5px;
  }
}

@media screen and (min-width: 768px), print {
  .reason-heading {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .reason-heading {
    font-size: 2.4rem;
  }
}

.reason-heading > span {
  display: block;
  color: #00846c;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (min-width: 640px), print {
  .reason-heading > span {
    display: inline-block;
  }
}

@media screen and (min-width: 768px), print {
  .reason-heading > span {
    font-size: 2.3rem;
  }
}

@media screen and (min-width: 1100px), print {
  .reason-heading > span {
    font-size: 2.8rem;
  }
}

.reason-heading > span > span {
  color: #00846c;
  font-size: 2.5rem;
  font-weight: 700;
}

@media screen and (min-width: 768px), print {
  .reason-heading > span > span {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1100px), print {
  .reason-heading > span > span {
    font-size: 3.6rem;
  }
}

.reason-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .reason-text p {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 1100px), print {
  .reason-text p {
    font-size: 2rem;
  }
}

.reason-text p.strong {
  margin-bottom: 1em;
}

.reason-text p.strong span {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0, #f8e27c));
  background: linear-gradient(transparent 75%, #f8e27c 0);
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .reason-text p.strong span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .reason-text p.strong span {
    font-size: 2.6rem;
  }
}

.reason-text p.text span {
  color: #f76016;
  font-weight: 700;
}

/* 相続税申告の税理士報酬の相場 */
.market-price-section .section-inner {
  padding: 2em 1em;
  background-color: #e4f2f0;
}

@media screen and (min-width: 640px), print {
  .market-price-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .market-price-section .section-inner {
    padding: 5em 2em;
  }
}

.market-price-inner {
  height: 100%;
  padding: 1.2em 1.5em 1.5em;
  border-radius: 1em;
  border: 3px solid #00846c;
  background-color: #fff;
}

@media screen and (min-width: 480px), print {
  .market-price-inner {
    padding: 1.5em 1em 1.5em;
  }
}

@media screen and (min-width: 1100px), print {
  .market-price-inner {
    padding: 1.5em 1.5em 2.5em;
  }
}

.market-price-head {
  text-align: center;
  margin-bottom: .8em;
}

.market-price-head p.title {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: .05rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 992px), print {
  .market-price-head p.title {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1100px), print {
  .market-price-head p.title {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1280px), print {
  .market-price-head p.title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 479.98px) {
  .market-price-head p.title {
    margin-bottom: .5em;
  }
}

.market-price-head p.img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 480px), print {
  .market-price-head p.img {
    min-height: 140px;
  }
}

@media screen and (max-width: 991.98px) {
  .market-price-head p.img img {
    max-width: 65%;
  }
}

@media screen and (max-width: 767.98px) {
  .market-price-head p.img img {
    max-width: 50%;
  }
}

@media screen and (max-width: 479.98px) {
  .market-price-head p.img img {
    max-width: 45%;
  }
}

@media screen and (max-width: 479.98px) {
  .market-price-lead {
    margin-bottom: .5em;
  }
}

.market-price-heading {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: .7em 0 .8em;
  border-top: 3px solid #E4F2F0;
  border-bottom: 3px solid #E4F2F0;
}

@media screen and (min-width: 768px), print {
  .market-price-heading {
    font-size: 2rem;
    padding: .4em 0;
  }
}

@media screen and (min-width: 1100px), print {
  .market-price-heading {
    font-size: 2.6rem;
  }
}

.market-price-heading span {
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (min-width: 480px), print {
  .market-price-heading span {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1100px), print {
  .market-price-heading span {
    font-size: 2rem;
  }
}

.market-price-heading .br {
  display: block;
}

@media screen and (max-width: 767.98px) {
  .market-price-heading .br {
    display: none;
  }
}

.market-price-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .market-price-content p {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 1100px), print {
  .market-price-content p {
    font-size: 2rem;
  }
}

.market-price-content span {
  color: #f76016;
  font-weight: 700;
}

.market-price-content a {
  color: #39b4f4;
}

.market-price-content a:hover {
  text-decoration: none;
}

.market-price-secondary .market-price-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -.5em -1.2em 0;
}

@media screen and (min-width: 1100px), print {
  .market-price-secondary .market-price-items {
    margin: 0 -2.5em -3em 0;
  }
}

.market-price-secondary .market-price-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 .5em 1.2em 0;
}

@media screen and (min-width: 640px), print {
  .market-price-secondary .market-price-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 768px), print {
  .market-price-secondary .market-price-item {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 1100px), print {
  .market-price-secondary .market-price-item {
    padding: 0 2.5em 3em 0;
  }
}

/* 私たちの想い */
.thought-section .section-inner {
  padding: 2em 1em;
  background-color: #FFF9DB;
}

@media screen and (min-width: 640px), print {
  .thought-section .section-inner {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-section .section-inner {
    padding: 5em 2em;
  }
}

.thought-side-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767.98px) {
  .thought-side-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.thought-img {
  margin: 2em 0 0 0;
  max-width: 70%;
}

@media screen and (min-width: 768px), print {
  .thought-img {
    margin: 0 0 0 3em;
  }
}

.thought-desire {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.thought-desire p {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .thought-desire p {
    font-size: 1.7rem;
    line-height: 2;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-desire p {
    font-size: 2rem;
  }
}

.thought-desire p:not(:last-child) {
  margin-bottom: 1.8em;
}

.thought-desire span {
  font-size: 1.7rem;
}

@media screen and (min-width: 768px), print {
  .thought-desire span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-desire span {
    font-size: 2.2rem;
  }
}

.thought-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .thought-text p {
    font-size: 1.7rem;
    line-height: 2;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-text p {
    font-size: 2rem;
  }
}

.thought-text p.strong {
  margin-top: .1em;
}

.thought-text p.strong span {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0, #fdc57c));
  background: linear-gradient(transparent 75%, #fdc57c 0);
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .thought-text p.strong span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-text p.strong span {
    font-size: 2.4rem;
  }
}

.thought-text span {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0, #fdc57c));
  background: linear-gradient(transparent 75%, #fdc57c 0);
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .thought-text span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-text span {
    font-size: 2.4rem;
  }
}

.thought-text:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 768px), print {
  .thought-text:not(:last-child) {
    margin-bottom: 2.5em;
  }
}

.thought-list li {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4 !important;
  padding-left: 27px !important;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .thought-list li {
    padding-left: 33px !important;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-list li {
    font-size: 2rem;
    padding-left: 40px !important;
  }
}

.thought-list li:not(:last-child) {
  margin-bottom: .4em;
}

.thought-list li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 18px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/top/top-icon8.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .thought-list li:after {
    width: 20px;
    height: 18px;
  }
}

@media screen and (min-width: 1100px), print {
  .thought-list li:after {
    width: 25px;
    height: 22px;
  }
}

.thought-btn {
  text-align: center;
  margin-top: 2em;
}

@media screen and (min-width: 768px), print {
  .thought-btn {
    text-align: right;
  }
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-area {
  position: relative;
}

.news-area .inner {
  line-height: 1.5;
}

.news-area .inner:not(:last-child) {
  margin-bottom: 0;
}

.news-area .news-list,
.news-area .news-thumb-list,
.news-area .news-img-list {
  padding-bottom: 2em;
}

.news-detail .inner {
  line-height: 1.5;
}

.news-detail .inner:not(:last-child) {
  margin-bottom: 0;
}

.news-detail .news-date {
  font-size: .9em;
}

.news-link {
  display: block;
  padding: 2.5em 0;
  border-radius: .8em;
  border: 1px solid #ccc;
}

.news-title {
  word-break: break-all;
  word-wrap: break-word;
}

.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}

.news-text {
  margin-top: 1em;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}

.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}

.news-back {
  clear: both;
  max-width: 1100px;
  margin: 2em auto 0;
  padding: 2em 0 0 0;
  text-align: center;
  border-top: 1px dotted #eee;
}

/* お知らせ一覧（テキストのみ）*/
.news-list .news-link {
  position: relative;
  padding: .8em 1em;
}

@media screen and (min-width: 640px), print {
  .news-list .news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.news-list .news-link:hover {
  text-decoration: none;
}

.news-list .news-link:hover .news-date {
  color: #009d80;
}

.news-list .news-link:hover .news-title {
  text-decoration: underline;
}

.news-list .news-date {
  font-size: .9em;
  color: #000;
}

@media screen and (min-width: 640px), print {
  .news-list .news-date {
    width: 7em;
    font-size: 1em;
  }
}

/* お知らせ一覧（サムネイル縦並び）*/
.news-thumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -2em -1.5em 0;
}

.news-thumb-list .news-topics {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 2em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .news-thumb-list .news-topics {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.news-thumb-list .news-link {
  display: block;
  position: relative;
  padding-left: 130px;
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (min-width: 768px), print {
  .news-thumb-list .news-link {
    padding-left: 125px;
  }
}

.news-thumb-list .news-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.news-thumb-list .news-date {
  position: relative;
  color: #b3b3b3;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-left: 20px;
  margin-bottom: .5em;
}

@media screen and (min-width: 768px), print {
  .news-thumb-list .news-date {
    font-size: 1.6rem;
    padding-left: 26px;
  }
}

.news-thumb-list .news-date:before {
  content: "";
  position: absolute;
  top: 80%;
  left: 0;
  display: block;
  width: 18px;
  height: 16px;
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
  background: url(../img/top/top-icon7.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .news-thumb-list .news-date:before {
    width: 24px;
    height: 22px;
  }
}

.news-thumb-list .news-title {
  overflow: hidden;
  color: #000;
  font-size: 1.5rem;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: .1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (min-width: 768px), print {
  .news-thumb-list .news-title {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1100px), print {
  .news-thumb-list .news-title {
    font-size: 1.8rem;
  }
}

.news-thumb-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
  width: 100px;
  height: 100px;
  margin: auto;
  background: #fff url(../img/pages/topics/news-img1.jpg) center no-repeat;
  background-size: auto;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .news-thumb-list .news-img {
    left: .6em;
  }
}

.news-thumb-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせ一覧（大きいサムネイル）*/
.news-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -.5em -1em 0;
}

@media screen and (min-width: 640px), print {
  .news-img-list {
    margin: 0 -1em -1.5em 0;
  }
}

.news-img-list .news-topics {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  padding: 0 .5em 1em 0;
}

@media screen and (min-width: 640px), print {
  .news-img-list .news-topics {
    padding: 0 1em 1.5em 0;
  }
}

@media screen and (min-width: 768px), print {
  .news-img-list .news-topics {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}

.news-img-list .news-link {
  position: relative;
  height: 100%;
  padding: 75% 0 0;
  color: #000;
  text-align: center;
  line-height: 1.5;
  font-size: .9em;
  border: none;
}

@media screen and (min-width: 1100px), print {
  .news-img-list .news-link {
    font-size: 1em;
  }
}

.news-img-list .news-link:hover {
  color: #009d80;
  text-decoration: none;
}

.news-img-list .news-link:hover .news-date {
  color: #009d80;
}

.news-img-list .news-date {
  margin: .5em 0 .2em;
  font-size: .9em;
  color: #000;
}

.news-img-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: 80% auto;
  overflow: hidden;
}

.news-img-list .news-img:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.news-img-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 150%;
  max-height: 150%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせ一覧（横スクロールスライダー）*/
.news-slider-list {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.news-slider-list.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.news-slider-list .news-topics {
  width: 240px;
  padding: 0 10px;
}

@media screen and (min-width: 1100px), print {
  .news-slider-list .news-topics {
    width: 260px;
    padding: 0 15px;
  }
}

.news-slider-list .news-link {
  position: relative;
  height: 100%;
  padding: 75% 0 0;
  color: #000;
  text-align: center;
  line-height: 1.5;
  font-size: .9em;
  border: none;
}

@media screen and (min-width: 1100px), print {
  .news-slider-list .news-link {
    font-size: 1em;
  }
}

.news-slider-list .news-link:hover {
  color: #009d80;
  text-decoration: none;
}

.news-slider-list .news-link:hover .news-date {
  color: #009d80;
}

.news-slider-list .news-date {
  margin: .5em 0 .2em;
  font-size: .9em;
  color: #000;
}

.news-slider-list .news-title {
  overflow: hidden;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-slider-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: 80% auto;
  overflow: hidden;
}

.news-slider-list .news-img:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.news-slider-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 150%;
  max-height: 150%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせスライダー用前後ボタン */
.news-arrow {
  display: block;
  clear: both;
  margin-top: 1em;
  text-align: center;
}

@media screen and (min-width: 640px), print {
  .news-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 1280px;
    margin: -1.5em auto 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 1100px), print {
  .news-arrow {
    margin-top: -2em;
  }
}

.news-arrow-prev, .news-arrow-next {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 15px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #ccc;
  border: 1px solid #ccc;
  cursor: pointer;
}

@media screen and (min-width: 640px), print {
  .news-arrow-prev, .news-arrow-next {
    display: block;
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    margin: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .news-arrow-prev, .news-arrow-next {
    top: -24px;
    width: 48px;
    height: 48px;
  }
}

.news-arrow-prev:before, .news-arrow-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 40%;
  margin: auto;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

@media screen and (min-width: 640px), print {
  .news-arrow-prev:before, .news-arrow-next:before {
    border-width: 2px;
  }
}

@media screen and (min-width: 640px), print {
  .news-arrow-prev {
    left: 10px;
  }
}

.news-arrow-prev:before {
  left: 20%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 640px), print {
  .news-arrow-next {
    right: 10px;
  }
}

.news-arrow-next:before {
  right: 20%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* WordPress お知らせ詳細用 */
.news-pagers {
  position: relative;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px dotted #eee;
  overflow: hidden;
}

.news-pager {
  width: 70px;
  height: 40px;
  margin: auto;
  overflow: hidden;
}

@media screen and (min-width: 480px), print {
  .news-pager {
    width: 80px;
  }
}

.news-pager a {
  display: block;
  position: relative;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 0;
  background-color: #00846c;
  -webkit-transition: .2s;
  transition: .2s;
}

.news-pager a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #009d80;
}

.news-pager a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.news-pager-prev {
  position: absolute;
  top: 2em;
  right: 0;
  left: -190px;
}

@media screen and (min-width: 480px), print {
  .news-pager-prev {
    left: -240px;
  }
}

.news-pager-prev a {
  padding-left: 10px;
}

.news-pager-prev a:before {
  display: none;
}

.news-pager-prev a:after {
  left: -40px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.news-pager-next {
  position: absolute;
  top: 2em;
  right: -190px;
  left: 0;
}

@media screen and (min-width: 480px), print {
  .news-pager-next {
    right: -240px;
  }
}

.news-pager-next a {
  padding-right: 10px;
}

.news-pager-next a:before {
  display: none;
}

.news-pager-next a:after {
  right: -40px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.news-pager-back {
  width: 90px;
  font-size: 13px;
}

@media screen and (min-width: 480px), print {
  .news-pager-back {
    width: 120px;
  }
}

.news-pager-back a:before, .news-pager-back a:after {
  display: none;
}

/* お知らせ（サイドバー有レイアウト） */
.news-column-wrapper {
  margin-bottom: 3em;
  line-height: 1.8;
}

@media screen and (min-width: 1100px), print {
  .news-column-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news-column-main {
  margin-bottom: 3em;
}

@media screen and (min-width: 1100px), print {
  .news-column-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 2em;
  }
}

.news-column-side {
  width: 250px;
}

.news-column-side section:not(:last-child) {
  margin-bottom: 2em;
}

.news-column-side h3 {
  position: relative;
  background-color: #fce57d;
  color: #fff;
  font-size: 1em;
  margin-bottom: .8rem;
  padding: 3px 0 3px 30px;
}

.news-column-side h3::before {
  position: absolute;
  display: block;
  content: "";
  background: #fff;
  width: 5px;
  height: 60%;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.news-column-side .calendar_wrap a {
  color: #00846c;
}

.news-column-side .searchform {
  position: relative;
}

.news-column-side .screen-reader-text {
  display: none;
}

.news-column-side input#s {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0.5em calc(60px + 1em) 0.5em 1em;
  color: #999;
  line-height: 1.8;
  border: 1px solid #eee;
  background: #f8f8f8;
  outline: none;
}

.news-column-side input#searchsubmit {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  margin: auto;
  text-align: center;
  padding: .5rem;
  font-size: .9em;
  color: #fff;
  line-height: 1.85;
  border: none;
  background: #fce57d;
  cursor: pointer;
  overflow: hidden;
}

.news-column-side input#searchsubmit:hover {
  background: #009d80;
}

/* --------------------------------

  下層ページ用

-------------------------------- */
/* パンくずリスト */
.pankz {
  max-width: 1100px;
  margin: 0 auto 2.5em;
}

/* 基礎知識や事例 */
.category-text {
  margin-bottom: 3em;
}

.category-text h2 {
  font-weight: bold;
  margin: 1.25em 0 .5em;
}

.category-text h3 {
  font-weight: bold;
  margin: 1.25em 0 .5em;
}

.category-text p:not(:last-child) {
  margin-bottom: 1em;
}

.category-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1.5em -1.5em 0;
}

.category-list ul li {
  overflow: hidden;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1.5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .category-list ul li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.category-link {
  float: right;
  width: 100%;
  margin-left: -90px;
  padding-left: 100px;
  color: #000;
}

.category-link:hover {
  color: #000;
  text-decoration: none;
}

.category-link:hover .category-title {
  color: #009d80;
}

.category-title {
  color: #00846c;
  font-size: 1em;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: .5rem;
}

.category-body {
  font-size: .9em;
}

.category-img {
  float: left;
  width: 90px;
}

.category-img img {
  width: 90px;
  height: 90px;
  vertical-align: bottom;
}

/* 投稿ページ */
.detail-text {
  margin-bottom: 3em;
}

.detail-paging-subsection:first-child {
  overflow: hidden;
  margin-bottom: 1.5em;
}

.detail-paging-subsection a {
  font-weight: bold;
  text-decoration: underline;
}

.detail-paging-subsection .prev {
  float: left;
}

.detail-paging-subsection .next {
  float: right;
}

.detail-paging-subsection .back {
  text-align: center;
}

.detail .post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1.5em -1.5em 0;
}

.detail .post-list li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1.5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .detail .post-list li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.detail .post-list li:before {
  display: none;
}

.detail .post-list li a {
  display: inline-block;
  font-weight: bold;
  color: #555;
  text-decoration: underline;
  margin-bottom: .5rem;
}

.detail .post-list li p {
  font-size: .9em;
}

.detail .post-list mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* ページネーション */
.pagination {
  padding-top: 2em;
  text-align: center;
  overflow: hidden;
}

.pagination a,
.pagination span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
  padding: .6em 1.2em;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  background-color: #ccc;
}

.pagination a:hover,
.pagination span.current {
  background-color: #00846c;
  color: #fff;
}

.pagination a:hover {
  text-decoration: none;
}

/* お問い合わせ */
.contact-description {
  border: 2px solid #C1272D;
  border-radius: 5px;
  padding: 10px;
}

.contact-form table tr {
  display: block;
}

@media screen and (min-width: 768px), print {
  .contact-form table tr {
    display: table;
    width: 100%;
  }
}

.contact-form table tr:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 768px), print {
  .contact-form table tr:not(:last-child) {
    margin-bottom: 0;
  }
}

.contact-form table th {
  position: relative;
  display: block;
  margin-bottom: .5em;
}

@media screen and (min-width: 768px), print {
  .contact-form table th {
    display: table-cell;
    vertical-align: middle;
    width: 15em;
    margin-bottom: 0;
    padding: .8em 1em;
  }
}

.contact-form table th .title {
  font-weight: bold;
}

.contact-form table th .require,
.contact-form table th .option {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: .9em;
  color: #fff;
  width: 3em;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact-form table th .require {
  background-color: #fce57d;
}

.contact-form table th .option {
  background-color: #999;
}

.contact-form table td {
  display: block;
}

@media screen and (min-width: 768px), print {
  .contact-form table td {
    display: table-cell;
    vertical-align: middle;
    padding: .8em 0 .8em 1em;
  }
}

.contact-form table td input[type="text"],
.contact-form table td input[type="email"],
.contact-form table td input[type="tel"] {
  padding: 8px;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 1em;
}

.contact-form table td input::-webkit-input-placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td input:-ms-input-placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td input::-ms-input-placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td input::placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td .full {
  width: 100%;
}

.contact-form table td .per60 {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .contact-form table td .per60 {
    width: 60%;
  }
}

.contact-form table td select {
  padding: 8px 4px;
  border-radius: 3px;
}

.contact-submit {
  margin-top: 1em;
  text-align: center;
}

.contact-submit .btn {
  display: block;
  border: 1px solid #fce57d;
  background-color: #fff;
  color: #fce57d;
  text-decoration: none;
  font-weight: bold;
  padding: 20px;
  width: 150px;
  margin: 0 auto;
  cursor: pointer;
}

.contact-submit .btn:hover {
  color: #fff;
  background-color: #fce57d;
}

/* プライバシーポリシー */
.privacy {
  line-height: 1.6;
}

.privacy strong {
  font-weight: bold;
}

/* 画像回り込み */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  display: block;
  margin: 0 auto 1em;
}

@media screen and (min-width: 480px), print {
  .alignright {
    float: right;
    margin: 0 0 1em 1em;
  }
}

.alignleft {
  display: block;
  margin: 0 auto 1em;
}

@media screen and (min-width: 480px), print {
  .alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* --------------------------------

  修正・追加用

-------------------------------- */
