
/*-------------------------------------------------
header
-------------------------------------------------*/

.header {
  background:rgba(255,255,255,0.1);
  width: 100%;
  position: fixed;
  z-index: 17;
  padding: 20px 0;
}

.header-contents {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
}

.header-logo a img {
  width: 160px;
}

.header-right ul {
  display: flex;  
}

.header-right li {
  padding-left: 20px;
}

.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.menu_item {
  padding: .1em 0;
  box-sizing: border-box;
}


#overlay {
  height: 100vh;
  width: 100vw;
  z-index: 2;
  visibility: hidden;
  position: fixed;
}
/* #overlay.active {

} */
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
}
#overlay ul li a:hover {
  color: #000!important;
}


  /*---メニュー開閉ボタン---*/
.menu-btn{
  display: none;

}


/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  pointer-events: auto;
  opacity: 1;
}


/*-----------------------------------------------------
全体
-----------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
}
.section-title h1 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 40px;
  color: #102942;
}

.section-title-white h1 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 40px;
  color: #fff;
}

.title-border {
  background-color:#102942;
  width:1px;
  height:20px;
  margin: 20px auto 0 auto;
}

.white-border {
  background-color:#fff;
  width:1px;
  height:20px;
  margin: 20px auto 0 auto;
}

.container {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  padding: 200px 0;
}

.service-container {
  padding: 200px 0;
}


/*---------------------------------------
ふわっと
---------------------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.5s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*-----------------------------------------------------
btn
-----------------------------------------------------*/

.main-btn a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #102942;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 200px;
  padding: 4px 16px 4px 0px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.main-btn a::before {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  height: 1px;
  background: #102942;
  bottom: 0;
  transition: all 0.3s;
}

.main-btn a::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #102942;
  rotate: 40deg;
  right: -3px;
  bottom: 10px;
  transition: all 0.3s;
}

.main-btn a:hover::after,
.main-btn a:hover::before {
  translate: 10px 0;
  transition: all 0.3s;
}

.center-btn a {
  margin: 60px auto 0 auto;
}

.white-btn a {
  margin: 60px auto 0 auto;
  color: #fff;
}

.white-btn a::before {
  background: #fff;
}

.white-btn a::after {
  background: #fff;
}

/*-----------------------------------------------------
top-wrapper
-----------------------------------------------------*/
.top-wrapper {
  background-color: #fff;
}

.top-img {
  text-align: right;
}

.top-img img {
  width: 75%;
  height: 550px;
  object-fit: cover;
  text-align: right;
}

.top-container {
  width:80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

.top-contents { 
  font-size: 34px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.top-contents h1 { 
 letter-spacing: 5px;
}

.top-title {
  padding-left: 40px;
}

/*-----------------------------------------------------
top-profile
-----------------------------------------------------*/

.top-profile-contents {
  display: flex;
  justify-content: space-between;
}

.top-profile-img {
  width: 45%;
  text-align: right;
  position: relative;
}

.top-profile-img img {
  width: 90%;
  height: 700px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9;
}

.phone-profile {
  display: none;
}

.box {
  background-color: #102942;
  width: 90%;
  height: 800px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  z-index: 8;
}

.top-profile-text {
  width: 50%;
}

.top-profile-center h1 {
  font-size: 28px;
}

.top-profile-center p {
  padding: 40px 0 ;
}

.top-profile-center {
    height: auto;
    padding: 80px 0 80px 40px;
}

/*-----------------------------------------------------
service-wrapper 
-----------------------------------------------------*/
.service-wrapper {
  background-color: #102942;
}

.service-contents {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.service-img {
  width: 100%;
}

.service-img img {
  width: 80%;
  height: 600px;
  object-fit: cover;
}

.service-item {
  width: 40%;
  position: absolute;
   top: 50%;
   right: 40px;
   transform: translateY(-50%);
  background-color: #f2f2f2;
  padding: 60px 40px;
}

.service-text {
  border-bottom: #102942 solid 1px;
  margin-bottom: 20px;
}

.service-text h1 {
  color: #102942;
  padding-bottom: 0px;
  font-size: 20px;
}

.service-text p {
  font-size: 16px;
}

.service-text:last-child {
  margin-bottom: initial;
}

/*-----------------------------------------------------
works-wrapper 
-----------------------------------------------------*/
.photo-wrapper {
  background-color: #102942;
}

.works-contents {
  display: flex;
  flex-wrap: wrap;
}

.works-img {
  width: 33%;
  height: 250px;
  margin-bottom: 5px;
  margin-right: 5px;
  object-fit: cover;
}

.works-img:nth-child(3n) {
  margin-right: 0px;
}

.works-img a {
  height: 250px;
}

.works-img a img {
  width: 100%;
  height: 250px;  
  vertical-align:top;
  object-fit: cover;
}

.works-btn {
  padding-top: 100px;
}

.works-btn .main-btn a {
  margin: 0 auto;
}

/*-----------------------------------------------------
movie
-----------------------------------------------------*/

.embedbox{
	width: 70%;
	min-width: 360px;
	max-width: 1000px;
	margin: 0 auto;
  object-fit: cover;
}


.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}
 
.embed-container iframe,
.embed-container object,
.embed-container embed {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
}

.movie-contents {
  padding-top: 60px;
}

.movie-contents h1 {
  color: #102942;
  font-size: 24px;
}

.movie-contents h2 {
  font-size: 24px;
  color: #102942;
  border-bottom: 1px solid #102942;
  display: inline-block;
  margin-bottom: 20px;
}

/*-----------------------------------------------------
photo
-----------------------------------------------------*/

.photo-img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

/*-----------------------------------------------------
top-contact
-----------------------------------------------------*/
.contents-bg {
    background-image: url(img/contact_bg.png);
    background-size: cover;
    background-position: center;
    height: auto;
}

.contents {
    background-color: rgba(16,41,66,0.6);
    height: auto;
}

.top-contact-wrapper {
  color: #fff;
  text-align: center;
}

/*-----------------------------------------------------
sub-page全体
-----------------------------------------------------*/

.sub-page-title {
  height: 400px;
}

.box-main {
  position: relative;
  margin: 0 auto;
  width:80%;
  max-width: 1200px;
}

.sub-box {
  background-color: #102942;
  height: 300px;
  width:97.5%;
  max-width: 1200px;
  position: absolute;
  top: 130px;
  left: 0px;
}

.sub-box2 {
  background-color: rgba(16,41,66,0.8);
  height: 300px;
  width:98%;
  max-width: 1200px;
  position: absolute;
  top: 100px;
  right: 0;
}
.sub-top-title {
  position: relative;
  height: 300px;
}

.sub-top-title h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 40px;
  color: #fff;
}

/*-----------------------------------------------------
news-item
-----------------------------------------------------*/

.news-item {
  border-bottom: 0.1px solid #102942;
  padding: 0 5px 5px 5px;
  margin-bottom: 40px;
}

.news-item h1 {
  padding-left: 20px;
}

.news-item a {
  display: flex;
}

/*-----------------------------------------------------
profile
-----------------------------------------------------*/

.profile-tablet-contents {
  display: none;
}
.profile-contents {
  display: flex;
  justify-content: space-between;
}

.profile-item p {
  padding: initial;
  color: #102942;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-weight: 900;
}

.profile-item h1 {
  padding: initial;
  color: #333;
  font-weight: 500;
  font-size: 24px;
}

.profile-item {
  padding-bottom: 40px;
}

.profile-bottom {
  padding-top: 100px;
}

.profile-question {
  padding-bottom: 60px;
}

.profile-question h1 {
  font-size: 24px;
  color: #102942;
  border-bottom: 1px solid #102942;
  display: inline-block;
  margin-bottom: 20px;
}

.profile-question p {
  line-height: 2;
}

/*-----------------------------------------------------
company-wrapper
-----------------------------------------------------*/
#company-wrapper {
  background-color: #fff;
}

.kaisha {
width: 100%;
}

.kaisha th,
.kaisha td {
border-bottom: 1px solid #102942;
padding: 20px;
}

.kaisha th {
  color: #102942;
}

/*-----------------------------------------------------
footer
-----------------------------------------------------*/
.footer {
  background-color: #102942;
  color: #fff;
  text-align: center;
}

.footer h1 {
  font-size: 24px;
  padding: 30px 0;
}

.footer p {
  font-size: 14px;
  padding-bottom: 10px;
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 200px;
  margin: 0 auto 40px auto;
  text-align: center;
}
/* ボタン全体の外枠指定 */
.snsbtniti {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  max-width: 350px;/* ボタンを設置する場所の最大横幅 */
  margin: 0 auto;/* ボタンを中央へ */
}

/* ulタグの内側余白なしと箇条書きの黒丸削除 */
ul.snsbtniti {
  padding: 0!important;
  list-style-type: none!important;
}

/* ボタン同士の余白調整 */
.snsbtniti li {
  flex: 0 0 33%;/* ボタンを3つ並びへ */
  text-align: center!important;
}

/* ボタン全体 */
.flowbtn {
  position: relative;
  display: inline-block;
  width: 50px; /* 背景横幅 */
  height: 50px;/* 背景高さ */
  font-size: 28px;/* アイコンサイズ */
  border-radius: 4px;
  color: #fff!important;/* ボタン内カラー */
  transition: .5s;
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid #fff;
  line-height: initial;
}

/* アイコンの位置を少し下げる */
.flowbtn i {
  position: relative;
  top: 5px;
}

/* ボタン内テキスト調整 */
.flowbtn div {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}

/* ボタンマウスホバー時少し浮き上がる */
.flowbtn:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  text-decoration: none;
  cursor: pointer;
}

/* インスタ・Amazonのアイコンを少し大きく */
.fa-instagram {
  font-size: 30px;
}



/*-------------------------------------------------
contact-wrapper
-------------------------------------------------*/

.contact-top h1 {
  font-size: 40px;
  text-align: center;
}

.contact-top p {
 text-align: center;
 padding-top: 30px;
}

.contactform {
  width: 100%;
  margin: 0px auto 0 auto;
}

.contactform p {
  padding: 4px 0;
}

input {
  width: 100%;
  padding: 10px 10px;
  margin-bottom: 15px;
  border: 1px solid #102942;
}

textarea {
  width: 100%;
  margin: 5px 0;
  padding: 10px 10px;
}

.wpcf7-form-control {
  background-color: #fff;
  color: #565656;
}

.hidden-fields-container {
  margin: 0 auto;
  text-align: center;
}
.contactform p .wpcf7-submit {
  background-color: #102942;
  border-radius: 10px;
  color: #fff;
}

.wpcf7-submit:hover {
  cursor: pointer;
  opacity: 0.7;
}


/*-----------------------------------------------------
news-page
-----------------------------------------------------*/

.newspage h1 {
  padding-bottom: 20px;
}