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

/* ****************************************************************************************************
   * 標準フォント
**************************************************************************************************** */

@font-face {
  font-family: "NotoSerifCJKjp";
  font-style: normal;
  font-weight: 300;
  src:
    local("NotoSerifCJKjp"),
    url("../../_font/NotoSerifCJKjp-Light.woff") format("woff"),
    url("../../_font/NotoSerifCJKjp-Light.ttf") format("opentype");
}

@font-face {
  font-family: "NotoSerifCJKjp";
  font-style: normal;
  font-weight: 600;
  src:
    local("NotoSerifCJKjp"),
    url("../../_font/NotoSerifCJKjp-SemiBold.woff") format("woff"),
    url("../../_font/NotoSerifCJKjp-SemiBold.ttf") format("opentype");
}

@font-face {
  font-family: "NotoSerifCJKjp";
  font-style: normal;
  font-weight: 900;
  src:
    local("NotoSerifCJKjp"),
    url("../../_font/NotoSerifCJKjp-Black.woff") format("woff"),
    url("../../_font/NotoSerifCJKjp-Black.ttf") format("opentype");
}

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 300;
  src:
    local("NotoSansCJKjp"),
    url("../../_font/NotoSansCJKjp-Light.woff") format("woff"),
    url("../../_font/NotoSansCJKjp-Light.ttf") format("opentype");
}

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 600;
  src:
    local("NotoSansCJKjp"),
    url("../../_font/NotoSansCJKjp-SemiBold.woff") format("woff"),
    url("../../_font/NotoSansCJKjp-SemiBold.ttf") format("opentype");
}

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 900;
  src:
    local("NotoSansCJKjp"),
    url("../../_font/NotoSansCJKjp-Bold.woff") format("woff"),
    url("../../_font/NotoSansCJKjp-Bold.ttf") format("opentype");
}

/* ****************************************************************************************************
   * 共通
**************************************************************************************************** */

@media screen and (min-width: 736px) {
  [sp] {
    display: none;
  }
}

@media (min-width: 1100px) {
  [sp] {
    position: fixed !important;
    top: -100%;
    left: -100%;
  }
}
@media (min-width: 1101px) {
  [sp-nav] {
    position: fixed !important;
    top: -100%;
    left: -100%;
  }
}

@media (max-width: 1100px) {
  [pc] {
    display: none !important;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  .br-pc {
    display: block;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .br-sp {
    display: block;
  }
}

/* ****************************************************************************************************
   * inview
**************************************************************************************************** */

[class*="inview"] {
  position: relative;
  opacity: 0;
  visibility: hidden;
}

.inview-slideup {
  top: 60px;
  transition:
    0.75s top,
    0.75s opacity;
}

.inview-slideup.inview-active {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.inview-slideleft {
  right: -60px;
  transition:
    0.5s right,
    0.5s opacity;
}

.inview-slideleft.inview-active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.inview-slideright {
  left: -60px;
  transition:
    0.5s left,
    0.5s opacity;
}

.inview-slideright.inview-active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

/* ****************************************************************************************************
   * common
**************************************************************************************************** */

.body {
  max-width: 1160px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

[class*="layout-flex"] {
  display: flex;
  flex-wrap: wrap;
  /*  justify-content: space-between;*/
  /*  align-content: space-between;*/
  align-items: stretch;
}

/* IE対策*/
img[src$=".svg"] {
  width: 100%;
}

.layout-2 {
  display: flex;
  justify-content: space-between;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .layout-2 {
    display: block;
  }
}

/* ****************************************************************************************************
   * ヘッダー
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#header {
  position: relative;
  margin-bottom: 10px;
}

.fixed {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 10000;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #header {
    /*  height: 45px;*/
    position: -webkit-sticky; /* iosは必須*/
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    transition: 0.2s left;
    margin-bottom: 0;
  }

  #header.fixed {
    position: fixed;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * スクロール後ヘッダー
/* ------------------------------------------------------------------------------------------------- */

#header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition:
    0.2s opacity,
    0.2s transform;
  padding: 10px;
  background: #fff;
}

#header-fixed.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#header-fixed .body {
  max-width: 1500px;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header-fixed .body .logo {
  /*  width: 23.53%;*/
}

#header-fixed .body .nav {
  /*  width: 72%;*/
  margin-top: 0 !important;
}

#header-fixed .body .nav ul {
  display: flex;
  justify-content: space-between;
}

#header-fixed .body .nav > ul > li > a {
  position: relative;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s color;
  display: inline-block;
  padding: 10px 20px;
  color: #1a1a1a;
  height: 48px;
}
#header-fixed .body .nav > ul > li:first-child a {
  padding: 10px 20px 9px;
  height: 48px;
}
#header-fixed .body .nav > ul > li:first-child a i {
  color: #f7952b;
  font-size: 25px;
}
#header-fixed .body .nav > ul > li:first-child > a:hover i,
#header-fixed .body .nav > ul > li:first-child[current] > a i {
  color: #fff;
}

#header-fixed .body .nav > ul {
  margin: 0 auto;
}

#header-fixed .body .nav > ul > li {
  position: relative;
  /*  display: table-cell;*/
  text-align: center;
}

#header-fixed .body .nav > ul > li > a:after {
  /*
  content: '';
  display: block;
  width: 0;
  height: 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #fc4b22;
  transition: 0.2s width, 0.2s left;
*/
  display: none;
}

#header-fixed .body .nav > ul > li[current] > a,
#header-fixed .body .nav > ul > li > a:hover {
  color: #fff;
  background: #f7952b;
}

#header-fixed .body .nav > ul > li[current] > a:after,
#header-fixed .body .nav > ul > li > a:hover:after {
  width: 100%;
  left: 0;
}

#header-fixed .body .nav > ul > li > ul {
  display: inline-block;
  position: absolute;
  top: 50px;
  left: 0;
  text-align: left;
  background: #fff;
}
#header-fixed .body .nav > ul > li > ul.item-1 {
  width: 200px;
  text-align: left;
  border-top: 1px solid #f2f2f2;
}

#header-fixed .body .nav > ul > li > ul a {
  display: block;
  border: 1px solid #f2f2f2;
  border-top: 0;
  padding: 0.75em 1em;
  font-size: 16px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1300px) {
  #header-fixed .body .nav > ul > li {
    display: table-cell;
    text-align: center;
    margin:/* 0 0 0 20px*/ 0;
  }

  #header-fixed .body .nav > ul > li > a {
    position: relative;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s color;
    display: inline-block;
    padding: 10px 15px;
    color: #1a1a1a;
    height: auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * テキスト
/* ------------------------------------------------------------------------------------------------- */

#header .header-inner {
  background: #fc4b22;
  padding: 5px 0;
  color: #fff;
}

#header .header-inner .body {
  max-width: 1160px;
  margin: 0 auto;
}

#header .text {
  font-size: 14px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  .nav-fixed #header .header-inner {
    padding-top: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
  }

  #header .header-inner {
    background: #fc4b22;
    padding: 0;
    color: #fff;
  }

  #header .text {
    font-size: 10px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ロゴ
/* ------------------------------------------------------------------------------------------------- */

#header .logo {
  display: table-cell;
  /*  width: 25%;*/
}

#header .logo a {
  color: #fff;
  font-size: 31px;
  font-weight: bold;
  line-height: 1;
}

#header .logo a span {
  display: block;
  font-size: 20px;
  line-height: 1.4;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #header .logo {
    display: block;
  }
  #header .logo a {
    color: #000;
    font-size: 18px;
    margin-left: 0;
  }

  #header .logo img {
    height: 50px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ヘッダー：右メニュー
/* ------------------------------------------------------------------------------------------------- */

#header .header {
  /*  width: 75%;*/
  margin-right: 0;
  margin-left: auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #header .header {
    width: auto;
    margin-left: 0;
    margin-right: auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ヘッダー内容
/* ------------------------------------------------------------------------------------------------- */

#header .contents {
  position: relative;
  width: 100%;
  /*  margin-top: 25px;*/
}

#header .contents .body {
  position: relative;
  max-width: 1160px;
  align-items: center;
}

#header .contents ul.comment-list {
}

#header .contents ul.comment-list li {
  font-size: 13px;
  color: #f7952b;
  border: 1px solid #f7952b;
  text-align: center;
  padding: 0 5px;
  font-weight: bold;
}
#header .contents ul.comment-list li ~ li {
  margin-top: 10px;
}

#header .contents .link-btn {
  margin-top: 0;
}

#header .contents .sns ul {
  justify-content: space-between;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #header .contents .body {
    position: relative;
    max-width: 1500px;
    align-items: center;
    background: #fff;
    padding: 0 10px;
    border-radius: 0;
  }

  #header .contents {
    position: /*fixed*/ relative;
    top: 0;
    left: 0;
    padding-top: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
    /*  height: 45px;*/
    padding: 0;
    box-shadow: 0px 2px 3px 0px #cccccc;
    margin-top: 0;
  }
  #header .contents.scroll {
    background: #fff;
    box-shadow: 2px 0px 7px 0px #888888;
  }
  #header .contents.fixed {
    position: fixed;
    top: 0;
    height: 45px;
  }

  #header .contents ul.comment-list {
    margin: 5px 0;
    display: flex;
  }
  #header .contents ul.comment-list li ~ li {
    margin: 0 5px;
  }
  #header .contents .tel {
    display: none;
  }
  #header .contents .link-btn {
    display: none;
  }
  #header .contents .sns ul {
    display: none;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #header .contents ul.comment-list {
    display: none;
  }
}

/* ****************************************************************************************************
   * ドロップダウン
**************************************************************************************************** */

#header .nav {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  vertical-align: bottom;
  margin-top: 10px;
}

#header .nav a {
}

#header .nav ul.dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .nav ul.dropdown > li {
  position: relative;
  z-index: 1;
  text-align: center;
}
#header .nav ul.dropdown > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 50px;
  background: #ebe0ce;
  margin-top: -25px;
}
#header .nav ul.dropdown > li:last-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50px;
  background: #ebe0ce;
  margin-top: -25px;
}

#header .nav ul.dropdown > li:first-child {
  font-size: 25px;
}
#header .nav ul.dropdown > li:first-child a {
  padding: 7px 20px 6px;
}
#header .nav ul.dropdown > li:first-child a i {
  color: #f7952b;
}
#header .nav ul.dropdown > li:first-child > a:hover i,
#header .nav ul.dropdown > li:first-child[current] a i {
  color: #fff;
}

#header .nav ul.dropdown > li > a {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 10px 25px 20px;
  font-weight: bold;
  color: #1a1a1a;
  height: 58px;
}

#header .nav ul.dropdown > li > a:hover,
#header .nav ul.dropdown > li[current] > a {
  color: #fff;
  background: #f7952b;
}

#header .nav ul.dropdown > li > a:before {
  content: attr(data-text);
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 5px;
  color: #f7952b;
  font-size: 10px;
  text-align: center;
}
#header .nav ul.dropdown > li:hover > a:before,
#header .nav ul.dropdown > li[current] > a:before {
  color: #fff;
}

#header .nav ul.dropdown > li > a:after {
  /*
  content: '';
  position: absolute;
  display: block;
  height: 4px;
  background: #fc4b22;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.2s left, 0.2s right;
*/
  display: none;
}
#header .nav ul.dropdown > li > a:hover:after,
#header .nav ul.dropdown > li[current] > a:after {
  left: 0;
  right: 0;
  opacity: 1;
}
#header .nav ul.dropdown ul {
  position: absolute;
  left: 1px;
  min-width: 100%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  margin-top: 3px;
}
#header .nav ul.dropdown ul.item-1 {
  width: 200px;
  text-align: left;
}

#header .nav ul.dropdown ul li a {
  display: block;
  text-decoration: none;
  padding: 0.75em 1em;
  background: #fff;
  border: 1px solid #f2f2f2;
  margin-top: -1px;
  color: #1a1a1a;
}
#header .nav ul.dropdown ul li a:hover {
  background: #fffaed;
}

@media (max-width: 1100px) {
  #header .nav {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-right: 0;
  }

  #header .nav ul.dropdown {
    width: 100%;
    display: table;
    margin-top: 0px;
  }
  #header .nav ul.dropdown ul {
    margin-top: 0;
  }
  #header .nav ul.dropdown > li {
    position: relative;
    display: block;
    border-bottom: 1px solid #f2f2f2;
    text-align: left;
    width: 100%;
    padding: 0;
  }
  #header .nav ul.dropdown > li[sp] .tel {
    display: block;
    padding: 10px;
  }
  #header .nav ul.dropdown > li[sp] .link-btn {
    display: block;
    text-align: left;
    padding: 10px;
  }

  #header .nav ul.dropdown > li[sp] .sns {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
  }
  #header .nav ul.dropdown > li[sp] .sns > a {
    margin: 0 5px;
  }

  #header .nav ul.dropdown li::after {
    display: none;
  }
  #header .nav ul.dropdown li:first-child::before {
    display: none;
  }
  #header .nav ul.dropdown > li > a {
    display: block;
    text-align: left;
    padding: 10px;
    height: auto;
  }
  #header .nav ul.dropdown > li:first-child > a {
    padding: 10px;
    line-height: 1;
  }
  #header .nav ul.dropdown > li a::before {
    display: none;
  }
  #header .nav ul.dropdown > li > a:after {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    background: #fc4b22;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    transition:
      0.2s left,
      0.2s right;
  }
  #header .nav ul.dropdown > li > a:hover:after,
  #header .nav ul.dropdown > li[current] > a:after {
    left: 0;
    right: 0;
    opacity: 1;
  }

  #header .nav ul.dropdown > li[current] {
    border-bottom: 0;
  }

  /* ----------------------------------------------------------------------------------------------------
   * 下層メニュー
/* ------------------------------------------------------------------------------------------------- */

  #header .nav ul.dropdown li.parent {
    display: block;
    border-right: 0 !important;
    border-bottom: 1px solid #e4e4e4;
  }
  #header .nav ul.dropdown li.parent a {
    width: calc(100% - 50px);
  }
  #header .nav ul.dropdown li.parent:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 20px;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #848473;
    border-bottom: 2px solid #848473;
    transform: rotate(45deg);
    background: none;
  }
  #header .nav ul.dropdown li.parent.active:after {
    top: 20px;
    transform: rotate(-135deg);
  }
  #header .nav ul.dropdown ul {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    /*    margin-bottom: -0.75em;*/
  }
  #header .nav ul.dropdown > li > ul > li > a {
    border-top: 1px solid #e4e4e4;
  }
  #header .nav ul.dropdown ul li {
    border: none;
    padding: 0;
  }
  #header .nav ul.dropdown ul li a {
    padding-left: 2em;
    border: 0;
  }
  #header .nav ul.dropdown > li > a:after {
  }
  #header .nav ul.dropdown > li > a {
    height: auto;
    text-align: left;
    padding: 0.75em;
    border-radius: 0;
    margin-top: 0;
  }

  /* icon */
  .icon-menu-trigger {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 0;
    padding-top: 50px;
    background: #fc4b22;
    -webkit-appearance: none;
    border: none;
    z-index: 9999999999;
  }
  .icon-menu-trigger:before,
  .icon-menu-trigger:after,
  .icon-menu-trigger span:before {
    content: "";
    position: absolute;
    left: 20%;
    display: block;
    width: 60%;
    height: 0;
    padding-top: 2px;
    background: #fff;
  }
  .icon-menu-trigger:before {
    top: 29%;
    transition:
      0.2s top,
      0.2s transform;
  }
  .icon-menu-trigger:after {
    top: 47%;
    transition: 0.2s opacity;
  }
  .icon-menu-trigger span:before {
    top: 66%;
    transition:
      0.2s top,
      0.2s transform;
  }

  /* active */
  .icon-menu-trigger.nav-active:before {
    top: 50%;
    transform: rotate(135deg);
  }
  .icon-menu-trigger.nav-active:after {
    opacity: 0;
  }
  .icon-menu-trigger.nav-active span:before {
    top: 50%;
    transform: rotate(45deg);
  }

  /* ----------------------------------------------------------------------------------------------------
   * グローバルメニューアクティブ時の動き
/* ------------------------------------------------------------------------------------------------- */

  #wrapper {
    position: relative;
    left: 0;
    transition: 0.2s left;
    border-right: 1px solid #f2f2f2;
  }
  #wrapper.nav-active {
    left: -290px;
  }
  #sp-nav {
    position: fixed;
    top: 47px;
    right: -290px;
    bottom: 0;
    z-index: 9999;
    width: 290px !important;
    background: #fff;
    overflow-y: auto;
    transition: 0.2s right;
  }
  .nav-fixed #sp-nav {
    top: 0;
    /*
  height: 0;
  padding: 0;
  overflow: hidden;
  */
  }
  #wrapper.nav-active {
    right: 0;
  }
  .nav-active #header .nav {
    top: 0;
    right: 0;
  }
}

/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body.layout-index #main .visual {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: #fffbf0;
}
body.layout-index #main .visual::after {
  content: "";
  display: block;
  background: #fffbf0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 99;

  /* 曲線*/
  min-height: 50px;
  border-top-right-radius: 10000px 700px;
  border-top-left-radius: 10000px 700px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  body.layout-index #main .visual::after {
    display: none;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * スライドショー
/* ------------------------------------------------------------------------------------------------- */

body.layout-index #main .visual .slideshow img {
  width: 100%;
}

body.layout-index #main .visual .slick-dots {
  position: absolute;
  left: 0;
  bottom: 8.125%;
  width: 100%;
  text-align: center;
  z-index: 999;
}

body.layout-index #main .visual .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}

body.layout-index #main .visual .slick-dots li button {
  width: 12px;
  height: 12px;
  font-size: 0;
  border: 2px solid #f7952b;
  border-radius: 50%;
  transition: 0.2s background;
}

body.layout-index #main .visual .slick-dots li.slick-active button {
  background: #f7952b;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  body.layout-index #main .visual .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
  }

  body.layout-index #main .visual .slick-dots li button {
    width: 10px;
    height: 10px;
    font-size: 0;
    border: 2px solid #f7952b;
    border-radius: 50%;
    transition: 0.2s background;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 受付時間など
/* ------------------------------------------------------------------------------------------------- */

body.layout-index #main .visual .detail {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 999;
}

body.layout-index #main .visual .detail > .body {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

body.layout-index #main .visual .detail ul.layout-2 li {
  margin: 0 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  body.layout-index #main .visual .detail {
    display: block;
    position: relative;
    z-index: 1;
    background: #fffbf0;
  }

  body.layout-index #main .visual .detail::before {
    content: "";
    display: block;
    background: #fffbf0;
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 9;

    /* 曲線*/
    min-height: 50px;
    border-top-right-radius: 10000px 700px;
    border-top-left-radius: 10000px 700px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
  }

  body.layout-index #main .visual .detail .body {
    position: relative;
    z-index: 999;
  }

  body.layout-index #main .visual .detail > .body {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
  }

  body.layout-index #main .visual .detail ul.layout-2 {
    display: flex;
  }

  body.layout-index #main .visual .detail ul.layout-2 li {
    margin: 0 10px;
  }
}

/* ****************************************************************************************************
   * 下層ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body#layout-lower .visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 155px;
  background: #f7952b;
  margin-bottom: 0;
  border-bottom: 3px solid #fcda4f;
}

body#layout-lower .visual .title {
  position: relative;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

body#layout-lower .visual .title::before {
  content: "";
  display: inline-block;
  background: url("../../_images/_common/title-mark-2.png") no-repeat;
  background-size: 55px 48px;
  width: 55px;
  height: 48px;
  margin-right: 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  body#layout-lower .visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: #f7952b;
    margin-bottom: 0;
  }

  body#layout-lower .visual .title {
    position: relative;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body#layout-lower .visual .title::before {
    content: "";
    display: inline-block;
    background: url("../../_images/_common/title-mark-2.png") no-repeat;
    background-size: 28px 24px;
    width: 28px;
    height: 24px;
    margin-right: 20px;
  }
}

/* ****************************************************************************************************
   * パンくず
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#breadcrumb {
  background: #fffbf0;
}

#breadcrumb div.body {
  max-width: 1160px !important;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #breadcrumb {
  }

  #breadcrumb div.body {
    max-width: 1200px;
    padding: 20px 10px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

#breadcrumb ol,
#breadcrumb ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#breadcrumb ol {
  letter-spacing: -0.5em;
  margin: 10px 0 20px 0;
}
#breadcrumb ol li {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: normal;
  vertical-align: middle;
  display: inline-block;
}
#breadcrumb ol li::after {
  content: ">";
  margin: 0 10px 0 10px;
}
#breadcrumb ol li:last-child::after {
  content: none;
}
#breadcrumb ol li a {
  text-decoration: none;
  color: #f7952b;
}
#breadcrumb ol li a:hover {
  text-decoration: underline;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #breadcrumb ol {
    margin: 10px 0;
    padding: 0 10px;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #breadcrumb ol {
    letter-spacing: -0.4em;
    margin-top: 15px;
    padding-left: 0px;
  }
}

/* ****************************************************************************************************
   * ページナビ
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#page-nav {
  margin-top: 100px !important;
  background: #fff;
}

#page-nav .body {
  max-width: 1140px !important;
  padding: 0 !important;
  background: #fdd970;
  border-radius: 50px;
}

/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

#page-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#page-nav ul li {
  width: 23%;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  transition:
    0.2s color,
    0.2s all;
}

#page-nav ul li:hover,
#page-nav ul li[current] {
  color: #fc4b22;
}

#page-nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 15px;
  margin: 20px;
  color: #fc4b22;
  background: #fff;
  border: 2px solid #fc4b22;
  border-radius: 50px;
}

#page-nav ul li a:after {
  content: "";
  display: block;
  background: url("../../_images/_common/arrow.png") no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -15px;
  z-index: 1;
  transition: 0.2s left;
}
#page-nav ul li a:hover {
  background: #fc4b22;
  border: 2px solid #ffffff;
  color: #fff;
}

#page-nav ul li a:hover:after {
  left: 1em;
}

#page-nav ul li a span {
  position: relative;
  display: block;
}
#page-nav ul li a span:before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #bbbbbb;
  position: absolute;
  top: 0;
  left: -20px;
}
#page-nav ul li:last-child a span:after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #bbbbbb;
  position: absolute;
  top: 0;
  right: -20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #page-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #page-nav ul li {
    width: 50%;
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    transition:
      0.2s color,
      0.2s all;
  }

  #page-nav ul li:hover,
  #page-nav ul li[current] {
    color: #fc4b22;
  }

  #page-nav ul li a {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 20px 20px 40px;
  }

  #page-nav ul li a:after {
    content: "";
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 4px #fc4b22;
    border-right: solid 4px #fc4b22;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: -8px auto;
    transition: 0.2s bottom;
  }
  #page-nav ul li a:hover {
    opacity: 0.7;
  }

  #page-nav ul li a:hover:after {
    bottom: 1.5em;
  }

  #page-nav ul li a span {
    position: relative;
    display: block;
  }
  #page-nav ul li a span:before {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background: #bbbbbb;
    position: absolute;
    top: 0;
    left: -20px;
  }
  #page-nav ul li:nth-child(2) a span:after,
  #page-nav ul li:last-child a span:after {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background: #bbbbbb;
    position: absolute;
    top: 0;
    right: -20px;
  }
}

/* -------------------------------------------------------------------------------------------------
   * 要素が3つ
/* ---------------------------------------------------------------------------------------------- */

#page-nav ul.flex-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#page-nav ul.flex-3 li {
  width: 33.3333%;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  transition:
    0.2s color,
    0.2s all;
}

#page-nav ul.flex-3 li a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 20px;
}

#page-nav ul.flex-3 li a span {
  line-height: 1;
}

#page-nav ul.flex-3 li a:after {
  display: none;
}

#page-nav ul.flex-3 li a span:before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #bbbbbb;
  position: absolute;
  top: 0;
  left: -20px;
}
#page-nav ul.flex-3 li:last-child a span:after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #bbbbbb;
  position: absolute;
  top: 0;
  right: -20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #page-nav ul.flex-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #page-nav ul.flex-3 li {
    width: 50%;
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    transition:
      0.2s color,
      0.2s all;
  }

  #page-nav ul.flex-3 li a {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 20px;
  }

  #page-nav ul.flex-3 li a:after {
    display: none;
  }

  #page-nav ul.flex-3 li a span:before {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background: #bbbbbb;
    position: absolute;
    top: 0;
    left: -20px;
  }
  #page-nav ul.flex-3 li:nth-child(4) a span:after,
  #page-nav ul.flex-3 li:last-child a span:after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background: #bbbbbb;
    position: absolute;
    top: 0;
    right: -20px;
  }
}

/* -------------------------------------------------------------------------------------------------
   * 要素が6つ
/* ---------------------------------------------------------------------------------------------- */

#page-nav ul.flex-6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#page-nav ul.flex-6 li {
  width: 16.6666%;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  transition:
    0.2s color,
    0.2s all;
}

#page-nav ul.flex-6 li a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 20px;
}

#page-nav ul.flex-6 li a:after {
  display: none;
}

#page-nav ul.flex-6 li a span:before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #bbbbbb;
  position: absolute;
  top: 0;
  left: -20px;
}
#page-nav ul.flex-6 li:last-child a span:after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #bbbbbb;
  position: absolute;
  top: 0;
  right: -20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #page-nav ul.flex-6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  #page-nav ul.flex-6 li {
    width: 50%;
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    transition:
      0.2s color,
      0.2s all;
  }

  #page-nav ul.flex-6 li a {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 20px;
  }

  #page-nav ul.flex-6 li a:after {
    display: none;
  }

  #page-nav ul.flex-6 li a span:before {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background: #bbbbbb;
    position: absolute;
    top: 0;
    left: -20px;
  }
  #page-nav ul.flex-6 li:nth-child(4) a span:after,
  #page-nav ul.flex-6 li:last-child a span:after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background: #bbbbbb;
    position: absolute;
    top: 0;
    right: -20px;
  }
}

/* ****************************************************************************************************
   * 地図
**************************************************************************************************** */

iframe {
  line-height: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  iframe {
    height: 250px;
  }
}

/* ****************************************************************************************************
   * ご予約
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.yoyaku {
  background: #f7952b;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.yoyaku .title {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yoyaku .title::before {
  content: "";
  display: inline-block;
  background: url("../../_images/_common/title-mark-2.png") no-repeat;
  background-size: 55px 48px;
  width: 55px;
  height: 48px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .yoyaku .title {
    position: relative;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .yoyaku .title::before {
    content: "";
    display: inline-block;
    background: url("../../_images/_common/title-mark-2.png") no-repeat;
    background-size: 28px 24px;
    width: 28px;
    height: 24px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * テキスト
/* ------------------------------------------------------------------------------------------------- */

.yoyaku .text {
  text-align: center;
  color: #fff;
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.yoyaku .btn {
  width: 500px;
  font-size: 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .yoyaku .btn {
    width: 100%;
    font-size: 16px;
  }
}

/* ****************************************************************************************************
   * お問い合わせ（2院構成）
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.contact {
  position: relative;
  padding: 0 !important;
}

.contact .contents > * {
  width: 50%;
}

.contact .contents > .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* :::::::: ブレイクポイント :::::::: */

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

  .contact .contents > * {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 詳細エリア
/* ------------------------------------------------------------------------------------------------- */

.contact .detail {
  display: flex;
  flex-direction: column;
}

.contact .detail__info {
  background: #fffbf0;
  padding: 29px 60px 30px;
  flex: 1;
}

.contact .detail__info .item ~ .item {
  margin-top: 20px;
}

.contact .detail__map {
  line-height: 0;
}

.contact .detail__map iframe {
  width: 100%;
  height: 324px;
  display: block;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1400px) {
  .contact .detail__info {
    padding: 29px 30px 30px;
  }
}

@media screen and (max-width: 736px) {
  .contact .detail__info {
    padding: 20px 15px;
  }

  .contact .detail__info .item ~ .item {
    margin-top: 20px;
  }

  .contact .detail__map iframe {
    height: 250px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ロゴ
/* ------------------------------------------------------------------------------------------------- */

.contact .logo {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.8;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1700px) {
  .contact .logo {
    font-size: 30px;
  }
}

@media screen and (max-width: 736px) {
  .contact .logo {
    font-size: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 住所
/* ------------------------------------------------------------------------------------------------- */

.contact address {
  font-size: 20px;
  line-height: 1.4;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact address {
    font-size: 16px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * SNS
/* ------------------------------------------------------------------------------------------------- */

.contact .contents .sns ul {
  justify-content: flex-start;
}

.contact .contents .sns ul li {
  margin-right: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .contents .sns {
    margin-top: 0;
  }

  .contact .contents .sns ul {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .contact .contents .sns ul li {
    margin-right: 10px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * tel
/* ------------------------------------------------------------------------------------------------- */

.contact .detail .tel {
  text-align: left;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .detail .tel {
    text-align: center;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.contact .contents .link-btn {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .contents .link-btn {
    margin-top: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 診療時間
/* ------------------------------------------------------------------------------------------------- */

.contact .schedule img {
  max-width: 460px;
  width: 100%;
}

/* ----------------------------------------------------------------------------------------------------
   * テキスト
/* ------------------------------------------------------------------------------------------------- */

.contact .text {
  color: #fff;
  text-align: center;
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .text {
    color: #fff;
    text-align: left;
    margin-top: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1700px) {
  .contact .detail > .item.layout-flex-2 {
    max-width: 100%;
    align-items: center;
  }
  .contact .detail > .item.layout-flex-2 > .logo {
    width: 40%;
  }
  .contact .detail > .item.layout-flex-2 > .comment-list {
    width: 60%;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1400px) {
  .contact .detail {
    background: #fffbf0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .detail {
    background: #fffbf0;
    margin-top: 0;
  }

  .contact .detail .item ~ .item {
    margin-top: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ロゴ
/* ------------------------------------------------------------------------------------------------- */

.contact .logo {
  font-size: 40px;
  font-weight: bold;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1700px) {
  .contact .logo {
    font-size: 30px;
    font-weight: bold;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .logo {
    font-size: 20px;
    font-weight: bold;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 住所
/* ------------------------------------------------------------------------------------------------- */

.contact address {
  font-size: 20px;
  line-height: 1.4;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact address {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ロゴ横テキスト
/* ------------------------------------------------------------------------------------------------- */

.contact .contents ul.comment-list {
}

.contact .contents ul.comment-list li {
  font-size: 13px;
  background: #fff;
  color: #f7952b;
  border: 1px solid #f7952b;
  text-align: center;
  padding: 0 5px;
  font-weight: bold;
  width: 310px;
}
.contact .contents ul.comment-list li ~ li {
  margin-top: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .contents ul.comment-list {
    margin-top: 10px;
  }
  .contact .contents ul.comment-list li {
    font-size: 13px;
    background: #fff;
    color: #f7952b;
    border: 1px solid #f7952b;
    text-align: center;
    padding: 0 5px;
    font-weight: bold;
    width: 100%;
    margin: 0 auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * SNS
/* ------------------------------------------------------------------------------------------------- */

.contact .contents .sns ul {
  justify-content: flex-start;
}
.contact .contents .sns ul li {
  margin-right: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .contents .sns {
    margin-top: 0;
  }

  .contact .contents .sns ul {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .contact .contents .sns ul li {
    margin-right: 10px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * tel
/* ------------------------------------------------------------------------------------------------- */

.contact .detail .tel {
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .detail .tel {
    text-align: center;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.contact .contents .link-btn {
  margin-top: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .contact .contents .link-btn {
    margin-top: 20px;
  }
}

/* ****************************************************************************************************
   * フッター
**************************************************************************************************** */

#footer {
  position: relative;
}

#footer .body {
  max-width: 1160px !important;
}
#footer .footer {
  padding: 20px 0;
  margin: 0 auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #footer .footer {
    font-size: 14px;
    display: table;
    table-layout: fixed;
    padding: 1.5em 10px 50px;
    margin: 0 auto;
  }

  #footer .footer > * {
    display: block;
    vertical-align: top;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #footer {
    padding-bottom: 17.4%;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ナビ
/* ------------------------------------------------------------------------------------------------- */

#footer .nav {
  width: 100%;
  display: flex;
}

#footer .nav ul.item {
  letter-spacing: normal;
  width: 100%;
  display: flex;
  align-items: center;
}

#footer .nav ul.item li.parent {
}

#footer .nav ul.item li ul li {
}

#footer .nav ul.item li {
  position: relative;
  padding: 20px 15px 20px 25px;
}

#footer .nav ul.item li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  background: url("../../_images/_common/arrow-icon.png") no-repeat;
  width: 16px;
  height: 16px;
  margin-top: -6px;
}

#footer .nav ul.item > li a {
  color: #333333;
  display: block;
  text-decoration: none;
}
#footer .nav ul.item > li a:hover {
  text-decoration: underline;
}

#footer .nav .item li a {
  position: relative;
  display: block;
}
#footer .nav ul.item > li > a {
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #footer .nav {
    width: 100%;
    display: flex;
    font-size: 14px;
    margin: 20px 20px 0;
  }

  #footer .nav ul.item {
    width: 100%;
    display: block;
    vertical-align: top;
    letter-spacing: normal;
    margin-bottom: 30px;
    text-align: left;
  }

  #footer .nav ul.item li.parent {
  }

  #footer .nav ul.item li ul li {
  }

  #footer .nav ul.item li {
    position: relative;
    padding: 10px 15px 10px 25px;
  }

  #footer .nav ul.item > li a {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  #footer .nav ul.item > li > a {
    padding-left: 1em;
    background: url(../../_images/_common/ico_arrow_01.png) 0 0.6em no-repeat;
  }

  #footer .nav ul.item > li ul {
    font-size: 0.9em;
    margin-top: 0;
    padding-top: 1em;
    padding-left: 1em;
  }

  #footer .nav ul.item li a:hover {
    text-decoration: underline;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #footer .nav {
    width: 100%;
    display: block;
    font-size: 14px;
    margin-top: 20px;
    padding: 0 10px;
  }
  #footer .nav ul.item {
    width: 100%;
    display: block;
    vertical-align: top;
    letter-spacing: normal;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * サイトマップ
/* ------------------------------------------------------------------------------------------------- */

#footer .actab {
  /*  width: 75%;*/
}

/* スマホ　サイトマップ非表示*/
#footer .actab input {
  display: none;
}
#footer .actab label {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #footer .actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 20px auto;
    color: #ffffff;
  }
  #footer .actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  #footer .actab label {
    font-weight: bold;
    line-height: 3;
    position: relative;
    text-align: center;
    display: block;
    cursor: pointer;
    background: #fc4b22;
    letter-spacing: 0;
  }
  #footer .actab .actab-content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #333;
    background: #f4f4ee;
  }
  #footer .actab .actab-content p {
    margin: 1em;
  }
  /* :checked */
  #footer .actab input:checked ~ .actab-content {
    max-height: 85em;
  }
  /* Icon */
  #footer .actab label::after {
    line-height: 3;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 3em;
    height: 3em;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-align: center;
  }
  #footer .actab input[type="checkbox"] + label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 3px solid;
    border-bottom: 3px solid;
    margin-top: -6px;
    transform: rotate(45deg);
    color: #fff;
  }
  #footer .actab input[type="checkbox"]:checked + label::after {
    top: 57%;
    transform: rotate(225deg);
  }
  #footer .actab a {
    display: inline !important;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * コピーライト
/* ------------------------------------------------------------------------------------------------- */

#footer div.copyright {
  margin-top: 0;
  background: #fc4b22;
}
#footer div.copyright div.body {
  position: relative;
}

#footer div.copyright p {
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #footer div.copyright p {
    font-size: 12px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ページトップ
/* ------------------------------------------------------------------------------------------------- */

#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 77%;
  z-index: 999;
}
#pagetop a {
  background: #fc4b22;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  display: block;
  border: 1px solid #fff;
}
#pagetop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#pagetop a:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 4px #fff;
  border-left: solid 4px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: -4px;
  transition: 0.2s right;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 1100px) {
  #pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 77%;
    z-index: 999;
  }
  #pagetop a {
    background: #fc4b22;
    text-decoration: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    text-align: center;
    display: block;
    border: 1px solid #fff;
  }
  #pagetop a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #pagetop a:before {
    content: "";
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -4px;
    transition: 0.2s right;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  #pagetop {
    margin-top: 0;
    position: fixed;
    bottom: 80px;
    right: 10px;
    font-size: 77%;
    z-index: 9999;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 下部固定メニュー
/* ------------------------------------------------------------------------------------------------- */

.fixbtn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  border-top: 1px solid #fff;
}

/* flex-3 -----------------------------------*/

.fixbtn ul.layout-flex-3 {
  align-items: center;
  text-align: center;
}

.fixbtn ul.layout-flex-3 li {
  width: 33.3333%;
  /*  border-right: 1px solid #fff;*/
  margin-top: 0;
  padding: 5px 0 0 0 !important;
  background: #f7952b;
}

.fixbtn ul.layout-flex-3 li a {
  display: block;
  color: #fff;
  /*  padding: 10px 0;*/
}

.fixbtn ul.layout-flex-3 li img {
}

/* flex-4 -----------------------------------*/

.fixbtn ul.layout-flex-4 {
  background: #f7952b;
}

.fixbtn ul.layout-flex-4 li {
  width: 25%;
  border-right: 1px solid #fff;
  margin-top: 0;
  text-align: center;
  margin: 0 auto;
}

.fixbtn ul.layout-flex-4 li img {
  width: 80%;
}

/* flex-5 -----------------------------------*/

.fixbtn ul.layout-flex-5 {
}

.fixbtn ul.layout-flex-5 li {
  width: 20%;
  border-right: 1px solid #fff;
  margin-top: 0;
}

/* ****************************************************************************************************
   * フッター下部用　PC /スマホ表示振り分け
**************************************************************************************************** */

.sp-fnav {
  display: none !important;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 736px) {
  .sp-fnav {
    display: block !important;
  }
}
