@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: YakuHanRP, "Zen Kaku Gothic antique", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3E3A39;
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 30px;
  gap: 30px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  transition: 0.3s;
  color: #043459;
  border-bottom: solid 1px #043459;
}
header .header-menu_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 10px;
}
header .header-menu_logo a {
  display: block;
  transition: 0.5s;
  
}
header .header-menu_logo a img {
  display: block;
  height: auto;
  margin: 0 auto;
  transition: 0.5s;
}
header .header-menu_logo a:hover {
  opacity: 0.6;
}
header .header-menu_logo span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.3em;
  border: 1px solid #fff;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  header {
    justify-content: space-between;
    -webkit-clip-path: none;
            clip-path: none;
    padding: 20px 10px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  header .header-menu_logo a img {
    width: 180px;
  }
}

header .menu_wrap ul {
  display: flex;
}
header .menu_wrap ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .menu_wrap ul li a {
  transition: 0.5s;
}
header .menu_wrap ul li a:not(.head-inst) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  height: 100%;
  padding: 5px 1.6em;
  font-weight: 700;
}
header .menu_wrap ul li a:not(.head-inst) span {
  display: inline-block;
  line-height: 1.5;
}
header .menu_wrap ul li a:not(.head-inst) span:first-of-type {
  font-size: 14px;
}
header .menu_wrap ul li a:not(.head-inst):hover {
  color: #D1D6E4;
}
header .menu_wrap ul li a.head-inst {
  display: block;
  width: 30px;
  transition: 0.5s;
}
header .menu_wrap ul li a.head-inst img {
  width: 100%;
  height: auto;
}
header .menu_wrap ul li a.head-inst:hover {
  opacity: 0.5;
}
header .menu_wrap .overlay, header .menu_wrap address {
  display: none;
}
@media screen and (max-width: 1280px) {
  header .menu_wrap {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: -10px;
    right: -100vw;
    z-index: 1;
    opacity: 0;
    transform-origin: right;
    transition: 0.35s cubic-bezier(0.47, 0, 0.75, 0.72);
  }
  header .menu_wrap ul {
    margin-top: 90px;
    width: 100%;
    flex-flow: column;
    opacity: 0;
    transition: 1.2s;
  }
  header .menu_wrap ul li {
    flex-flow: column;
    align-items: flex-end;
  }
  header .menu_wrap ul li:last-of-type {
    margin-right: 0px;
  }
  header .menu_wrap ul li a:not(.head-inst) {
    display: inline-flex;
    justify-content: flex-start;
    flex-flow: column;
    padding: 20px 0.8em;
    width: 100%;
    font-size: 24px;
    color: #fff;
  }
  header .menu_wrap ul li a:not(.head-inst):hover {
    color: #fff;
    opacity: 0.5;
  }
  header .menu_wrap.active {
    right: -1vw;
    opacity: 1;
  }
  header .menu_wrap.active ul {
    opacity: 1;
  }
  header .menu_wrap .overlay {
    display: block;
    position: absolute;
    z-index: -1;
    top: 0vw;
    right: -150vw;
    width: 150vw;
    height: 120vh;
    opacity: 1;
    background: #043459;
    transition: 0.3s;
  }
  header .menu_wrap .overlay.active {
    right: 0vw;
  }
}

.nav_btn {
  display: none;
}
@media screen and (max-width: 1280px) {
  .nav_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100px;
    height: 50px;
    background: #043459;
    transition: 0.5s;
  }
  .nav_btn span {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
  }
  .nav_btn span::after {
    content: "MENU";
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    transition: 0.5s;
  }
  .nav_btn.active {
    background: #fff;
  }
  .nav_btn.active span::after {
    content: "CLOSE";
    color: #043459;
  }
}

/*　汎用--サブタイトル---　*/

.sub_ttl {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  padding: 40px 70px;
}

.sub_ttl h3{
  color: #043459;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4em;
}

.sub_ttl:before, .sub_ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #E5E5E5;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.sub_ttl:before {
  left:0;
}
.sub_ttl:after {
  right: 0;
}

.sp_br{
  display: none;
}
.pc_br{
  display: block;
}

@media screen and (max-width: 767px) {
  .sub_ttl {
  padding: 20px 50px;
}
  .sp_br {
    display: block;
  }
  .pc_br{
    display: none;
  }
}

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

/* white */
.button_wt a {
    background: #fff;
    border: solid 1px #043459;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-top: 10px;
    max-width: 220px;
    padding: 5px 15px;
    color: #043459;
    transition: 0.3s ease-in-out;
    font-weight: 400;
}
.button_wt a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.2s ease-in-out;
    content: "\025b6";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}
.button_wt a:hover {
    background: #043459;
    color: #fff;
}

/* navy */
.button_nv a {
    background: #043459;
    border: solid 1px #fff;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 400;
}
.button_nv a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.2s ease-in-out;
    content: "\025b6";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}
.button_nv a:hover {
    background: #fff;
    color: #043459;
}

/*　コンテンツ---------　*/

#contents{
  width: 100%;
  overflow: hidden;
}

.first-view {
  position: relative;
}

.first-view img{
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
}

.pc-main-i{
    display: block !important;
    margin: 0 auto;
  }
.sp-main-i{
    display: none !important;
    margin: 0 auto;
  }



.first-view .head-wrap{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  align-items: center;
  padding-top: 100px;
  justify-content: flex-start;
  z-index: 2;
  gap: 15px;
}

.first-view h1 {
  display: block;
  line-height: 1.4em;
  font-size: 2.5em;
  letter-spacing:0.2em;
  font-weight: 500;
  text-align: center;
  color: #FFF;
}

.first-view .small_ttl {
  display: block;
  background-color: #000;
  padding: 10px;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .first-view {
    padding: 0 ;
  }
  .first-view img{
    height:70vh;
  }

.pc-main-i {
    display: none !important; 
  }
.sp-main-i {
    display: block !important;
  }

  .first-view .head-wrap{
    padding-top: 40px;
    gap: 30px;
  }
  .first-view h1 {
    line-height: 1.4em;
    font-size: 1.6em;
    letter-spacing:0.1em;
  }
  .first-view .small_ttl {
    padding: 8px;
  }
}

/* スタジオジャムとは */

.about{
  position: relative;
}

.about h2 {
  color: #ffffff;
  font-weight: 700;
  padding-top: 30px;
  margin-top:-30px;
  margin-bottom:10px ;
  font-size: 32px;
  text-align: center;
}

.about small{
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom:10px ;
  text-align: center;
}

.about img{
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
}

.about .ab-wrap{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 0;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about .copy{
  position: relative;
  z-index: 2;
  font-weight: 300;
  color: #fff;
  font-size: 20px;
  line-height:2;
  padding-top: 28px;
  text-align: center;
}

@media screen and (max-width: 767px) {
.about img{
  height: 100vh;
}

.about .copy{
  font-size: 18px;
  line-height: 2;
  }
}

/* 事業内容　*/

.business{
  background: #F4F4F4;
  margin: 0 auto;
  padding: 100px 0 80px;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
}

.business h2{
  color: #043459;
  font-weight: 700;
  margin-bottom:10px;
  text-align: center;
  font-size: 32px;
}

.business small{
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 10px;
  text-align: center;
}

.business .bs_container{
  padding: 30px 0 60px;
  text-align: center;
}

.business .bs_container .bs_txt{
  font-size: 18px;
  line-height: 1.8em;
  padding: 30px 0;
}

.business .txt_tag{
	display: inline-block;
	margin: 0 .6em .6em 0;
	padding: .8em;
	line-height: 1;
	text-decoration: none;
	color: #101722;
	background-color: #D1D6E4;
	border-radius: 2em;
}

.pc-bs-i{
    display: block !important;
    margin: 0 auto;
  }
.sp-bs-i{
    display: none !important;
    margin: 0 auto;
  }

@media screen and (max-width: 767px) { 
  .business {
     padding: 40px 0;
  }
  .business .bs_container{
    padding: 10px 0 0;
  }
  .business .bs_container .bs_txt{
    font-size: 18px;
    line-height: 1.8em;
    padding: 15px 30px ;
  }

  .business img{
    width: 100%;
   padding: 40px 0;
}

  .pc-bs-i {
    display: none !important; 
  }
  .sp-bs-i {
    display: block !important;
  }
}

.bs_detail {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 60px 15vw;
}

.hr{
  width: 70%;
  margin: 30px auto 60px;
  display: inline-block;
  border-bottom:2px solid #D1D6E4; 
}

.bs_detail .bs_work{
  display: flex;
  flex-direction: column;
}

.bs_detail .bs_work dl{
  padding:  0 0 10px;
}

.bs_detail .bs_work div dt{
  padding: 0;
  line-height: 1.8em;
  color: #043459;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.bs_detail .bs_work div dt::before{
  content: '';
    width: 2px;/*線の太さ*/
    height: 10px;/*線の長さ*/
    background-color: #D9D9D9;/*線の色*/
    margin-right: 10px;
    transform: rotate(-90deg);
}

.bs_detail .bs_work div dd{
  padding-left: 12px;
  line-height: 1.8em;
}

.bs_detail .bs_work dt{
  padding: 0 0 5px;
  line-height: 1.8em;
  color: #043459;
  font-weight: 500;
}

.bs_detail .bs_work dd{
  padding: 0 0 10px;
  line-height: 1.8em;
}


.bs_detail img {
  display: block;
}

@media screen and (max-width: 767px) { 
  .bs_detail {
    flex-direction: column;
    gap: 20px;
    margin: 40px 9vw;
  }
  .hr{
    margin: 10px auto 40px;
  }
  .bs_detail img {
    width: 100%;
  }
}

/* 　業務内容　*/

.bs_detail .bs_work_pp dl{
  padding:  0 0 10px;
}

.bs_detail .bs_work_pp dt{
  padding: 0;
  line-height: 1.8em;
  color: #043459;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.bs_detail .bs_work_pp dd{
  padding-left: 12px;
  line-height: 1.8em;
}

.bs_detail .bs_work_pp dd::before{
  content: '・';
  margin-right: 10px;
}

/* 　取引先一覧　*/

.partner{
  margin: 0 auto;
}

.partner ul {
  display: flex;
  list-style: none;
}

.partner li::after{
  content:" / ";
}

@media screen and (max-width: 767px) {
  .partner{
   text-align: center;
  }
  .partner ul {
    display: flex;
    flex-direction: column;
  }
  .partner li {
    padding:  5px 0;
  }
  .partner li::after{
    content:"";
  }
}

/*　会社概要　*/

.company{
  background: #fff;
  margin: 0 auto;
  padding: 100px 0 80px;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
}

.company h2{
  color: #043459;
  font-weight: 700;
  margin-bottom:10px;
  font-size: 32px;
  text-align: center;
}

.company small{
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom:10px ;
  text-align: center;
}

.company .data_wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 15vw;
}

.data_wrap .association_overview {
  width: calc(50% - 20px);
}

.data_wrap .association_overview dl {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  display: flex;
  flex-flow: column;
  background: #fff;
}
.data_wrap .association_overview dl div {
  display: flex;
  padding: 25px 0;
  line-height: 1.8em;
  border-bottom: 1px solid #948E7E;
}
.data_wrap .association_overview dl div dt {
  width: 130px;
  color: #043459;
}
.data_wrap .association_overview dl div dd {
  width: calc(100% - 130px);
}

@media screen and (max-width: 767px) {
  .company{
    padding: 40px 0;
  }
  .company .data_wrap {
    flex-flow: column;
    padding: 0 10vw;
  }
  .data_wrap .association_overview {
    width: 100%;
  }

  .data_wrap .association_overview dl div {
    padding: 14px 0;
  }
  .data_wrap .association_overview dl div dt {
    width: 100px;
  }
  .data_wrap .association_overview dl div dd {
    width: calc(100% - 100px);
  }
}

/* アクセス */

.access {
  display: flex;
  align-items: center;
  padding-top: 90px;
  margin-top: -90px;
}
.access .map {
  width: 50%;
}
.access .map iframe {
  width: 100%;
}

.access .access_data {
  width: 50%;
  margin: 0 auto;
  padding: 0 ;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  padding-block: 108px;
  padding-inline: 20px;
  background-color: #043459;
}

.access .access_data h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom:10px ;
  font-size: 32px;
  text-align: center;
}

.access .access_data small{
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom:10px ;
  text-align: center;
}

.access .access_data p {
  color: #ffffff;
  text-align: center;
  line-height: 1.8;
  padding: 10px 0;
}


@media screen and (max-width: 767px) {
  .access {
    flex-flow: column;
  }
  .access .map {
    width: 100%;
  }
  .access .access_data {
    width: 100%;
    padding-block: 40px;
    padding-inline: 7.5vw;
  }
}

/*　プライバシーポリシー　*/

.privacy{
  background: #F4F4F4;
  margin: 0 auto;
  padding: 100px 0 80px;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
}

.privacy h2{
  color: #043459;
  font-weight: 700;
  margin-bottom:10px;
  font-size: 32px;
  text-align: center;
}

.privacy small{
  color: #5b5b5b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom:10px ;
  text-align: center;
}

.privacy .pr-wrap{
  width: 42%;
  margin: 0 auto;
  padding: 0 ;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
}

.privacy .pr-txt {
  z-index: 2;
  font-weight: normal;
  font-size: 16px;
  line-height:2;
  padding: 20px 0;
}

.privacy h3{
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  padding: 20px 0 10px;
  color: #043459;
}

.pr-item{
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 20px;
  line-height: 1.8em;
}

.pr-list{
  font-weight: 400;
  font-size: 16px;
  padding: 0 0 20px 30px;
  line-height: 2em;
  list-style-type: revert;
}

@media screen and (max-width: 767px) {
  .privacy{
    padding: 40px 0;
  }
  .privacy .pr-wrap{
    width: 80%;
  }
  .privacy h3{
  padding: 10px 0;
  line-height: 1.8em;
  }
}

/*　プライバシーポリシー　お問い合わせ　*/

.pri-inquiry{
  border:solid 1px #043459;
  padding: 20px; 
}

.pri-inquiry p{
  line-height: 1.8em;
}

.pri-inquiry h3{
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  padding: 10px 0;
  color: #043459;
}

.pri-inquiry dl{
  font-size: 16px;
  line-height: 1.8em;
}

.pr-item-r{
  padding-top: 20px;
 font-size: 16px;
 text-align: right;
 line-height: 1.8em;
}

/*footer*/

footer {
  padding: 20px 0;
  background: #043459;
  color: #fff;
}

footer small {
  display: block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 20px 0 ;
    color: #fff;
  }
}