@charset "utf-8";

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

  BASE

----------------------------------------------------- */
body {
  width: 100vw;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  width: auto;
}

._sp {
  display: none !important;
}

a {
  text-decoration: none !important;
  color: #000;
  transition: 0.15s;
}

li {
  list-style: none;
}

a:hover {
  color: #0003;
}

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

@media screen and (max-width: 540px) {
  ._pc {
    display: none !important;
  }
  ._sp {
    display: block !important;
  }
}

.mainView {
  width: 100vw;
}

.inner {
  width: calc(100vw - 40px);
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.inner02 {
  width: calc(100vw - 40px);
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.sideNav {
  position: fixed;
  left: 20px;
  top: 20%;
  z-index: 12;
}

.sideNav h3:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 45px;
  background: #000;
  vertical-align: middle;
  margin-bottom: 15px;
  left: -2px;
  position: relative;
}

.sideNav h3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 10px;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  left: 3px;
  letter-spacing: 0.06em;
}

.sideNav li {
  width: 14px;
  line-height: 1;
  margin-bottom: 6px;
}

@media screen and (max-width: 1100px) {
  .sideNav {
    display: none;
  }
}

#scSec {
  margin-bottom: 80px;
}

@media screen and (min-width: 540px) and (max-width: 1200px) {
  .hide-on-tablet {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .hide-on-pc {
    display: none;
  }
}

.flex-place-holder {
}

@media screen and (max-width: 540px) {
  .flex-place-holder {
    display: none;
  }
}

div#tableofcontents,
div#tableofcontents ~ div[id] {
  margin-top: -90px;
  padding-top: 90px;
}

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

  headerTop

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

.headerTop.scrollView {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 13;
}

.headerTopInner {
  position: relative;
  width: calc(100vw - 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.headerTop .logo {
  text-align: left;
  padding: 30px 0 10px 0;
}

.headerTop h1 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  text-align: left;
  position: relative;
  letter-spacing: 0.06em;
}

.anniversary-text {
    display: block;
    position: absolute;
    font-family: 'Josefin Sans';
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #ff8d9c;
    left: 3px;
    top: -18px;
    font-size: 0.8rem;
}
.anniversary-text span {
    font-size: 1.25em;
}
.anniversary-text span span{
    font-size: 0.6em;
    font-weight: 900;
}

.scrollView .anniversary-text {
    left: 1px;
    top: -3px;
    font-size: 0.55rem;
}
@media screen and (max-width: 768px) {
    .anniversary-text {
        left: 1px;
        top: -14px;
        font-size: 0.6rem;
    }
    .scrollView .anniversary-text {
        left: 1px;
        top: -3px;
        font-size: 0.55rem;
    }
}

@media screen and (max-width: 540px) {
    .anniversary-text {}
}

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

  言語切り替えボタン
  配置: 検索ボックス（検索呼び出しボタン）とハンバーガーボタンの間

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

.language-select {
  position: absolute;
  top: 21px;
  right: 56px;
  z-index: 15;
}

.scrollView .language-select {
  top: 14px;
}

@media screen and (max-width: 768px) {
  .language-select {
    top: 14px;
    right: 46px;
  }
}

.language-select-inner {
    border: 3px solid black;
    width: 28px;
    height: 28px;
    line-height: 22px;
    font-weight: bold;
    font-size: 14px;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

/* ドロップダウン（suggest-container / suggest-header / suggest-item 相当・カドマル無し） */
.language-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 2px solid black;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.language-select.open .language-select-dropdown {
  display: block;
}

.language-select-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s;
}

.language-select-item:last-child {
  border-bottom: none;
}

.language-select-item:hover {
  background-color: #f5f5f5;
}

.language-select-item.active {
  background: #fafaed;
  cursor: default;
  pointer-events: none;
}

.language-select-item-code {
  font-weight: bold;
}

.headerTop.scrollView .logo {
  text-align: left;
  padding: 20px 0 10px 0;
}

@media screen and (max-width: 540px) {
  .headerTop.scrollView .logo {
    text-align: left;
    padding: 0 0 10px 0;
  }
}

.headerTop.scrollView h1 {
  font-size: 24px;
}

.siteTag {
  font-size: 12px;
  padding-left: 20px;
  font-weight: normal;
  letter-spacing: 0.09em;
}
.siteTag .number {
  font-size: 15px;
  padding-right: 0.15em;
}

.scrollView .siteTag {
  position: relative;
  top: -4px;
  padding-left: 15px;
}

.headerTopSns {
  position: absolute;
  top: 22px;
  /* 言語切り替えボタン（right: 56px + 28px + 4px）のスペースを確保 */
  right: 100px;
}

.modal {
  position: fixed;
  right: 65px;
  top: 18px;
  z-index: 20;
}

.dotHover a:hover::after {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900 !important;
  color: #ff8d9c;
  font-weight: normal;
  list-style: 1;
  font-size: 7px;
  position: absolute;
  left: 48%;
  bottom: -10px;
  opacity: 1;
}

@media screen and (min-width: 540px) {
  .modal {
    display: none;
  }
}

.modal::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(/images/common/search.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

.modaal-container {
  border-radius: 10px !important;
  text-align: center;
}

.modaal-container h2 {
  text-align: center;
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 700;
}

.modaal-container h2 span {
  font-weight: 700;
}

.modaal-container h2 span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 23px;
  background-color: #000;
  margin-right: 14px;
  position: relative;
  top: 4px;
  transform: rotate(-14deg);
}

.modaal-container h2 span:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 23px;
  background-color: #000;
  margin-left: 11px;
  position: relative;
  top: 4px;
  transform: rotate(14deg);
}

.modaal-container #topForm {
  width: 100%;
  margin-bottom: 15px;
}

.modaal-container p {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .headerTop.scrollView .logo {
    width: 100%;
    float: none;
    padding: 20px 0 13px 0;
  }

  .headerTop .logo {
    padding: 20px 0 0 0;
  }

  .headerTop h1 {
    font-size: 24px;
    width: 100%;
  }

  .scrollView .siteTag {
    padding-left: 0;
    display: none;
  }

  .siteTag {
    font-size: 11px;
    padding-left: 0;
    display: block;
    line-height: 1;
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    border-top: 1px solid #eaeaea;
  }

  .headerTopSns {
    display: none;
  }
}

.headerTopSns ul {
  text-align: right;
}

.headerTopSns li {
  display: inline-block;
  margin-right: 10px;
}

.headerTopSns li:last-child {
  margin-right: 0;
}

.headerTopSns li img {
  height: 20px;
  width: auto;
  display: block;
}

.headerTopSns li a {
  display: block;
  transition: 0.15s;
}

.headerTopSns li a:hover {
  opacity: 0.8;
}

/*==ふわっと出現させるためのCSS*/

/*　上に上がる動き　*/

.headerTop.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

.headerTop.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
  background: #fff;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  headerNav

----------------------------------------------------- */
.headerNav {
  position: relative;
  width: calc(100vw - 40px);
  max-width: 1200px;
  margin: 0 auto 4px auto;
}

.headerNavInner {
  border-top: 1px solid #eaeaea;
  padding-top: 3px;
}

.headerNav ul {
  list-style: none;
  display: flex;
  justify-content: left;
}
.headerNav ul ul {
  display: block;
}

.headerNav ul li {
  position: relative;
  font-size: 13px;
  line-height: 1;
  margin-right: 20px;
  padding: 12px;
}

.headerNav ul li:last-child {
  margin-right: 0;
}

.headerNav ul li li {
  margin-right: 0;
  padding: 0;
}

.headerNav ul li a {
  display: block;
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}

.headerNav ul li li a {
}

.headerNav ul li a:hover {
  opacity: 0.3;
}

.headerNav li.has-child ul {
  position: absolute;
  left: -20px;
  top: 40px;
  z-index: 14;
  background: #ff8d9c;
  width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.headerNav li.has-child:hover > ul,
.headerNav li.has-child ul li:hover > ul,
.headerNav li.has-child:active > ul,
.headerNav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

.headerNav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  padding: 12px 0;
  text-align: center;
}

.headerNav li.has-child ul li:last-child a {
  border-bottom: none;
}

.headerNav li.has-child ul li a:hover,
.headerNav li.has-child ul li a:active {
  background: #ff8d9c;
}

@media screen and (max-width: 768px) {
  .headerNav {
    display: none;
  }
}

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

  FOOTER

----------------------------------------------------- */
.footer {
  padding-bottom: 60px;
}

.footerTop {
  margin-bottom: 40px;
  position: relative;
}

.footerTop h3 {
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.footerTop h3 span {
  display: block;
  margin-top: 15px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 34px;
}

.navi_inner .snsSet {
  margin-top: 40px;
}

.snsSet h4 {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.snsSet h4 span:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #000;
  margin-right: 14px;
  position: relative;
  top: 4px;
  transform: rotate(-14deg);
}

.snsSet h4 span:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #000;
  margin-left: 11px;
  position: relative;
  top: 4px;
  transform: rotate(14deg);
}

.snsSet li {
  display: inline-block;
  margin-right: 10px;
}

.snsSet li:last-child {
  margin-right: 0;
}

.snsSet li img {
  height: 26px;
  width: auto;
  display: block;
}

.snsSet li a {
  display: block;
  transition: 0.15s;
}

.snsSet li a:hover {
  opacity: 0.8;
}

.footerNav {
  margin-bottom: 40px;
}

.footerNav dl {
  width: 20%;
  float: left;
  border-left: 1px solid #000;
  padding-left: 20px;
}

.footerNav dl:first-child {
  border-left: none;
  padding-left: 0;
}

.footerNav dt {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footerNav dd {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.copyRight p {
  font-size: 10px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.copyRight img {
  width: 80px;
  height: auto;
}

.pageTopArrow {
  width: 16px;
  height: 100px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: skewY(135deg);
  position: relative;
  right: -10px;
}

.pageTop {
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 700;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .footerNav dt {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .footerNav dd {
    padding-right: 25px;
    line-height: 1.5;
    font-size: 10px;
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 540px) {
  .copyRight br {
    display: none;
  }

  .footerNavSp {
    display: none;
  }
}

.footerNavSp {
  margin-bottom: 20px;
}

.footerNavSp ul {
  text-align: center;
}

.footerNavSp li {
  display: inline-block;
  border-right: 1px solid #000;
  padding-right: 1em;
  margin-right: 1em;
  line-height: 1;
  font-size: 12px;
}

.footerNavSp li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

@media screen and (max-width: 540px) {
  .copyRight img {
    width: 125px;
  }

  .footerTop {
    margin-bottom: 20px;
  }

  .footerNavSp li {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .pageTopArrow {
    width: 12px;
    height: 70px;
  }

  .footerNav {
    display: none !important;
  }

  .pageTop {
    font-size: 12px;
    position: relative;
    right: auto;
    bottom: auto;
    width: 30px;
    margin-left: auto;
  }

  .snsSet h4 {
    margin-bottom: 5px;
  }

  .footer {
    padding-bottom: 70px;
  }
  .snsSet,
  .copyRight {
    text-align: center;
  }

  .copyRight p {
    text-align: center;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .footerTop h3 {
    text-align: center;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footerTop h3 span {
    font-size: 34px;
    margin-top: 10px;
  }
}

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

  MENU

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

.el_spChildNavOpen_wrapper::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900 !important;
  font-weight: normal;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  line-height: 1;
}

.js_fire .el_spChildNavOpen_wrapper::after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900 !important;
  font-weight: normal;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  line-height: 1;
}

.el_humburger {
  position: absolute;
  top: 26px;
  right: 0;
  width: 46px;
  height: 25px;
  padding-top: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0px;
  z-index: 15;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
}

.scrollView .el_humburger {
  top: 17px;
}

@media screen and (max-width: 768px) {
  .el_humburger {
    display: block;
    right: 0;
    top: 19px;
    padding-top: 0;
    width: auto;
    height: auto;
  }
  #factory .el_humburger {
    display: none;
  }

  .scrollView .el_humburger {
    top: 19px;
  }

  .modal {
    position: absolute;
    /* 言語切り替えボタン（right: 40px + 28px）のスペースを確保 */
    right: 92px;
    top: 10px;
    z-index: 20;
  }
}

.el_humburger_wrapper {
  margin-bottom: 5px;
  width: 28px;
  display: inline-block;
}

@media screen and (max-width: 840px) {
  .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 30px;
  }
}

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}

.el_humburger_text.el_humburger_text__close {
  display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}

@media screen and (max-width: 840px) {
  .el_humburger_text {
    font-size: 10px;
    padding-top: 2px;
  }
}

@media screen and (max-width: 840px) {
  .el_humburger_text svg path {
    -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    fill: #000;
  }
}

@media screen and (max-width: 840px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #000;
  }
}

.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #000;
}

@media screen and (max-width: 840px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    background: #000;
  }
}

/* .js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg); }
 
.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0; }
 
.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-7px) rotate(45deg);
  -ms-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg); } */

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}

.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.navi {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  background-color: #f2f2f2;
  width: 300px;
  z-index: 20;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 900ms ease-out;
  -o-transition: all 900ms ease-out;
  transition: all 900ms ease-out;
  /* transform:translateZ(0) translateX(100%); */
  overflow: auto;
}
.navi > .el_humburger {
  right: 20px;
}
.js_humburgerOpen .navi > .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .navi > .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}

.js_humburgerOpen .navi > .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-7px) rotate(45deg);
  -ms-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

.js_humburgerOpen .navi {
  /* transform:translateZ(0) translateX(0); */
  right: 0;
  -webkit-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

@media screen and (max-width: 840px) {
  .navi {
    padding: 100px 5% 0;
  }
  .js_humburgerOpen .navi {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .navi {
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
  }
}

.navi_inner {
  width: 80%;
  margin: 0 auto;
}

.navi_item {
  position: relative;
  margin-bottom: 15px;
  font-size: 14px;
  white-space: nowrap;
  text-align: left;
}

.navi_item {
}

.navi_item.op_innerLink {
  cursor: pointer;
}

@media screen and (max-width: 840px) {
  .navi_item {
    margin-left: 0;
  }
}

.el_spChildNavOpen {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  padding: 0;
}

.el_spChildNavOpen_wrapper {
  position: relative;
  height: 15px;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.nav_child {
  padding-top: 10px;
}

.nav_child_item {
  position: relative;
  font-size: 14px;
  padding: 2px 15px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 6px;
}

.nav_child_item > a {
}

.nav_child_item:last-child {
  margin-bottom: 0px;
}

.js_openSwitch {
  cursor: pointer;
}

.js_openTarget {
  display: none;
}

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

  HEADER FORM

----------------------------------------------------- */
@media screen and (max-width: 540px) {
  .headerSearch {
    display: none;
  }
}

.headerSearch {
  position: absolute;
  /* 言語切り替えボタン（right: 56px + 28px + 6px）のスペースを確保 */
  right: 100px;
}

.headerSearch {
  top: 18px;
}

@media screen and (max-width: 768px) {
  .headerSearch {
    width: 240px;
    top: 11px;
    right: 92px;
  }
  .headerTopSns {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .headerSearch {
    width: 18vw;
    max-width: 240px;
  }
  .headerTopSns {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .headerSearch {
    width: 240px;
    /* SNSアイコンの左隣（SNS right: 94px + アイコン4個ぶん） */
    right: 240px;
  }
}

.scrollView .headerSearch {
  top: 11px;
}

.search-box {
  position: relative;
  display: flex;
  border-radius: 50px;
}

.search-menu-content .search-box {
}

.search-edit,
.search-menu-content .search-edit {
  width: 100%;
  height: 32px;
  background: #fff;
  padding: 0 10px;
  border: 2px solid #000;
  border-radius: 50px 0 0 50px;
  font-size: 11px;
}

.search-submit {
  width: 40px;
  background: #000;
  color: #fff;
  position: static;
  right: auto;
  top: auto;
  cursor: pointer;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 0;
}

.search-submit::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(/images/common/search02.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  left: -3px;
  position: relative;
}

.search-box input::placeholder {
  color: #bbb;
}

.search-box input:focus,
.search-box button:focus {
  outline: 0;
}

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

  管理画面 操作ボタン

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

.admin {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 200px;
  z-index: 100;
}

.admin a {
  margin-top: 10px;
}

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

  CLEARFIX

----------------------------------------------------- */
*:first-child + html .clearFix {
  display: inline-block;
} /* for IE7 */
.clearFix:after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}
* html .clearFix {
  display: inline-block;
}
/* no ie mac \*/
* html .clearFix {
  height: 1%;
}
.clearFix {
  display: block;
}
/* */
