/* RESPONSIVE 設定
------------------------------------------------------------*/
@media only screen and (min-width: 769px) {
  body {
    font-size: 14px;
  }
  a#menu {
    display: none;
  }
  .panel {
    display: block !important;
  }
  #mainnav li {
    display: inline-block;
    font-size: clamp(11px, 0.999vw, 15px);
    padding: 10px 2%;
  }
  #mainnav a {
    color: #DDD;
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 0px;
  }
  #mainnav a:hover {
    color: #FFCC00;
  }
  #mainnav .fixed {
    display: block;
    position: fixed;
    width: 100%;
    top: 100;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.60);
  }
  #mainnav h3 {
    font-weight: 100;
    color: #DDD;
  }
  .drop-menu-item:hover {
    background: rgba(0, 0, 0, 1);
    transition: background .6s;
  }
  .menu-item a {
    align-items: center;
    justify-content: center;
    display: block;
  }
  .menu-item:hover .drop-menu-list {
    transform: scaleY(1); /* ドロップダウンメニューの表示 */
  }
  .drop-menu {
    position: relative;
    z-index: 100;
  }
  .drop-menu-list {
    display: grid;
    position: absolute;
    top: 100%;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform .3s;
    width: 12em;
    z-index: 1;
  }
  .drop-menu-item {
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.9s;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    text-align: left;
  }
  .drop-menu-item > a {
    margin-left: 8px
  }
  .title {
    pointer-events: none;
  }
  .col2 li {
    width: 60%;
    vertical-align: top;
  }
  .col2 li:first-child {
    width: 35%;
    padding-right: 4%;
  }
  .innerS {
    width: 60%;
    margin: 0 auto;
    font-size: 18px;
  }
  a.fade {
    transition: 0.2s ease-in-out;
  }
  a.fade:hover {
    opacity: 0.6;
    filter: alpha(opacity=40);
  }
  /*パンくずリストここから*/
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px;
    font-size: clamp(11px, 0.999vw, 14px);
    padding: 0px;
  }
  .breadcrumb a {
    color: #FFF;
    text-decoration: underline;
  }
  .breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 0.6em;
    color: #FFF;
  }
  /*パンくずリスト終わり*/
}
@media only screen and (max-width: 768px) {
  #header {
    position: fixed;
    width: 100%;
    z-index: 500;
  }
  #headerWrap {
    position: relative;
    width: 100%;
    height: 70px;
    background: #777777;
    border-bottom: 1px solid #ccc;
    background: url(../images/system/bgGrid.jpg) left top repeat-x #555555;
  }
  #header h1 {
    padding-top: 0px;
  }
  #header h1 img {
    margin-top: 3px;
    max-height: 45px;
    width: auto !important;
  }
  h1#title {
    font-size: 12px;
    position: absolute;
    bottom: 0px;
    left: 10px;
  }
  #subnav {
    position: absolute;
    line-height: 0;
    top: 27px;
    right: 55px;
    display: flex;
    align-items: center;
    z-index: 1000;
  }
  #subnav a {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
  }
  #subnav li {
    padding: 0px;
    margin: 0 0 0 15px;
    display: flex;
  }
  #subnav img {
    width: 22px;
    height: 22px;
  }
  a#menu {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 10px;
  }
  #menuBtn {
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    width: 18px;
    height: 2px;
    margin: -1px 0 0 -7px;
    background: #FFF;
    transition: .2s;
  }
  #menuBtn:before, #menuBtn:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 2px;
    background: #FFF;
    transition: .3s;
  }
  #menuBtn:before {
    margin-top: -7px;
  }
  #menuBtn:after {
    margin-top: 5px;
  }
  a#menu .close {
    background: transparent;
  }
  a#menu .close:before, a#menu .close:after {
    margin-top: 0;
  }
  a#menu .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  a#menu .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .panel {
    width: 100%;
    display: none;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 6px;
    z-index: 100;
  }
  #mainnav {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: right;
    z-index: 500;
  }
  #mainnav ul {
    border-bottom: 1px solid #ccc;
    background: #fff;
    text-align: left;
  }
  #mainnav li {
    font-size: clamp(16px, 2.343vw, 18px);
  }
  #mainnav li a {
    position: relative;
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid #ccc;
    color: #000;
    font-weight: 400;
  }
  #mainnav li a:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #mainnav .list, .title, .list2 {
    position: relative;
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid #ccc;
    color: #000 !important;
    font-weight: 400;
  }
  #mainnav .list:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .title {
    pointer-events: all;
    position: relative;
  }
  .Toggle {
    display: none;
    margin-left: 2em;
  }
  .drop-menu-item > a {
    color: #000;
    display: block;
    margin: 4 0 4 8px;
  }
  .title::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #000;
    transform: rotate(90deg);
    transition: all .4s ease-in-out;
  }
  .title::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #000;
    transition: all .4s ease-in-out;
  }
  .title.open::before {
    transform: rotate(180deg);
  }
  .title.open:after {
    opacity: 0;
  }
  #mainImg {
    padding-top: 60px;
    z-index: -100;
  }
  section h2 {
    margin: 0 auto 70px;
    font-size: clamp(30px, 5.4616vw, 42px);
  }
  section h2 span {
    padding: 0 12px;
  }
  section h3 {
    font-size: clamp(20px, 3.125vw, 24px);
    margin-bottom: 60px;
  }
  .innerS {
    width: 94%;
    margin: 0 auto;
    font-size: clamp(16px, 2.343vw, 18px);
  }
  .overview li {
    width: 90%;
  }
  .overview p {
    margin-top: 10px;
  }
  .overview2 {
    font-size: clamp(14px, 2.083vw, 16px);
  }
  .overview2 li {
    margin: 50px auto 0 auto;
    display: block;
    width: 100%;
    line-height: 1.7;
    padding: 0px;
    margin-bottom: 60px;
  }
  .overview2 img {
    margin: 0 auto;
  }
  .overview2 .img {
    padding: 30px;
    margin-bottom: 20px;
  }
  #shooting_studio_sec01 #gallery ul {
    flex-flow: column;
    justify-content: space-between;
    gap: 60px;
  }
  #map iframe {
    width: 96% !important;
    left: 2%;
  }
  #googlemap-bottomspace {
    margin-bottom: 100px;
  }
  .googlemap-bw iframe {
    height: 400px;
  }
  #shooting_studio_sec01 {
    width: 94%;
    margin: 0 auto;
    margin-bottom: 150px;
  }
  #shooting_studio_sec01 .inner_sec1 {
    width: 100%;
    margin: 0 auto;
  }
  #shooting_studio_sec01 .spec_item {
    width: calc(100%);
  }
  #shooting_studio_sec01 .textbox, .textbox2 {
    font-size: clamp(14px, 2.34vw, 18px);
  }
  #shooting_studio_sec01 #map {
    width: 100%;
    padding: 40% 0;
    box-sizing: border-box;
  }
  #shooting_studio_sec01 .informations {
    width: 85%;
    padding: 15px 20px;
  }
  #shooting_studio_sec02 {
    width: 94%;
    margin: 0 auto;
    margin-bottom: 150px;
  }
  #shooting_studio_sec02 .price {
    width: 100%;
    font-size: clamp(14px, 2.34vw, 18px);
  }
  #shooting_studio_sec02 .price .parent-container {
    width: 94%;
    gap: 20px;
  }
  #shooting_studio_sec02 .spec_item {
    width: calc(100%);
    height: auto;
    background: #FFF;
    color: rgba(0, 0, 0, 1.00)
  }
  #shooting_studio_sec02 .spec_item2 {
    width: calc(100%);
    height: auto;
    background: #373232;
  }
  #shooting_studio_sec02 .spec_item_sec3 {
    width: 100%;
    padding: 50% 0;
    box-sizing: border-box;
  }
  #shooting_studio_sec02 .inner_sec2 {
    width: 100%;
    margin: 0 auto;
  }
  #shooting_studio_sec02 .spec_item_sec1 {
    flex-flow: column;
    margin-bottom: 3.5em;
  }
  #shooting_studio_sec02 .icon, .icon2 {
    height: 30%;
    margin: 0px;
    padding: 3% 0% 8% 0%;
  }
  #shooting_studio_sec02 .icon2 {
    padding: 3% 23% 8% 0%;
    display: flex;
  }
  #shooting_studio_sec02  .light {
    margin-top: 0;
    padding-right: 2rem;
  }
  #shooting_studio_sec02 .stand {
    margin-top: 0;
    padding-left: 2rem;
  }
  #shooting_studio_sec02 .main {
    width: 85%;
  }
  #shooting_studio_sec02 .centering_1, .centering_2 {
    margin-left: 0px;
  }
  #shooting_studio_sec02 .inner_sec2 h4 {
    font-size: clamp(30px, 5.461vw, 42px);
    margin-left: 0px;
    margin-bottom: 10%;
    text-align: center;
  }
  #shooting_studio_sec02 .textbox, .textbox2 {
    font-size: clamp(14px, 2.34vw, 18px);
  }
  #shooting_studio_sec02 .spec_item_sec2 {
    width: 100%;
  }
  #shooting_studio_sec03 {
    width: 94%;
    margin: 0 auto;
  }
  #shooting_studio_sec03 .inner_sec3 {
    width: 90%;
  }
  .span {
    height: auto;
  }
  .stand {
    display: flex;
  }
  /* ダウンロードボタン設定 */
  .DL_PDF > a {
    padding: 4% 7% 3% 7%;
    font-size: clamp(20px, 3.64vw, 28px);
  }
  .DL_PDF {
    align-self: baseline;
  }
  /* ダウンロードボタン設定ここまで */
  /*パンくずリストここから*/
  .breadcrumb_inner {
    width: 94%;
    margin: 0 auto;
    margin-bottom: 100px;
  }
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: clamp(11px, 0.999vw, 14px);
  }
  .breadcrumb a {
    color: #FFF;
    text-decoration: underline;
  }
  .breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 .6em; /* 記号の左右の余白 */
    color: #FFF; /* 記号の色 */
  } /*パンくずリスト終わり*/
}
