@charset "utf-8";


body {
  margin: 0;
  padding: 0;
  background-color: #fbf7f7;
  color: dimgray;
  font-size: 15px;
  font-family: 'Cormorant+Garamond', serif;
  line-height: 2;
}

p,h1,h2,h3,h4,h5,h6 {
  margin-top: 0;
}

img {
  vertical-align:bottom;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  color: #3583aa;
  text-decoration: none;
}

a:visited {
  color: #788d98;
}

a:hover {
  text-decoration: underline;
}

header {
  width: 100%;
  height: 90px;
  border-bottom: 1px solid black;
}

.logo {
  float: none;
  text-align: center;
}

.logo img {
  width: 100px;
}

.freedial {
  float: none;
  text-align: right;
  margin:-50px 45px 0 0;
}

.sp {
    display: none;
  }
  
/*dropmenu*/
.dropmenu{
  float: left;
  *zoom: 1;
  list-style-type: none;
  width: 100%;
  margin-top: 10px;
  padding: 0;
}

.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 20%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
.dropmenu li a{
  display: block;
  margin: 0;
  padding: 7px 0 11px;
  background: none;
  color: dimgray;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}

.dropmenu li ul li{
  width: 150%;
}
.dropmenu li ul li a{
  padding: 13px 15px;
  border-top: 1px solid #ffffff;
  background: #fbf7f7;
  text-align: left;
}

.dropmenu li:hover > a{
  background: darkred;
}
.dropmenu li a:hover{
  background: white;
  color: darkred;
  border: 1px solid darkred;
}

#menulist li ul{
  opacity: 0;
  top: 50%;
  visibility: hidden;
  transition: .5s;
}
#menulist li:hover ul{
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.album {
	margin: -8px auto 0 auto;
	background-color: black;
	position: relative;
}

.album img {
	width: 100%;
	animation-name: album;
	-webkit-animation-name: album;
	animation-duration: 10s;
	-webkit-animation-duration: 10s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
}

.album .img1 {
	display: block;
    width: 85%;
	margin: 0 auto;
    background-image: url(images/)
    
}

.album .img2 {
  width: 70%;
	animation-delay:5s;
	-webkit-animation-delay:5s;
	position: absolute;
	top: 12.5%;
	left: 15%;
}

.album .img3 {
  display: none;
}

.album .img4 {
  display: none;
}

@keyframes album {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@-webkit-keyframes album {
	0% {
		opacity: 0;
	}
	
	12.5% {
		opacity: 1;
	}

	37.5% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.no {
  width: 1240px;
  margin-left: 10px;
  line-height: 1.2;
}

.no p {
  font-size: 13px;
}


/*ボックス全体*/
.accbox label h2 {
  margin-top: -7px;
  
}

.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 100%;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    color: darkred;
    font-weight: bold;
    background: white;
    cursor :pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
    float: left;
}


/*ラベルホバー時*/
.accbox label:hover {
    background :#ffe9a9;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #fff5eb;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px
}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';
}

/*sampleスクロールバー*/
.sample-demo {
  text-align: center;
}
.sample-demo p {
  padding: 10px;
}
.sample-demo .gnav {
  overflow-x: auto;
}
.sample-demo .gnav ul {
  width: 800px;
  height: 40px;
  margin: 0 auto 2px auto;
  list-style: none;
  display: flex;
}
.sample-demo .gnav ul li {
  text-align: center;
  margin-right: 1px;
}
.sample-demo .gnav ul li:last-child {
  margin-right: 0;
}
.sample-demo .gnav ul li a,
.sample-demo .gnav ul li a:link,
.sample-demo .gnav ul li a:visited {
  display: inline-block;
  width: 96px;
  height: 40px;
  background: #9fb7d4;
  color: #fff;
  text-decoration: none;
}
.sample-demo .gnav ul li a:hover,
.sample-demo .gnav ul li a:active {
  background: #afc6e2;
}
.sample-demo .gnav {
  -webkit-overflow-scrolling: touch;
}

.global-nav {
  background-color: #ffffff;
  float: none;
  text-align: center;
}

.global-nav li {
  display: inline;
  float: none;
  margin: 0 20px;
  color: dimgray;
  font-size: 15px;
  list-style: none;
  }

.global-nav li a {
  color: dimgray;
}

.global-nav li a:hover {
  border-bottom: 2px solid #ffffff;
  padding-bottom: 3px;
  text-decoration: none;
}

#wrap {
  clear: both;
  background-color: #ffffff;
  padding: 10px 0;
}

.content {
  width: 1260px;
  margin: 0 auto;
}

footer {
  width: 100%;
  text-align: center;
  color: #ffffff;
  background-color: darkred;
}

#footer-nav {
  background-color: #ffffff;
  width: 100%;
  height: 30px;
}

#footer-nav .fnlist li{
  float: left;
  margin: 0 20px;
  font-size: 15px;
  list-style: none;
}

#footer-nav .fnlist li a{
  color: dimgray;
}

#footer-nav .fnlist li a:hover {
  border-bottom: 2px solid #ffffff;
  padding-bottom: 3px;
  text-decoration: none;
}

footer small {
  font-size: 12px;
}

#index h1 {
  font-size: 100px;
  line-height: 1;
  color: #ffffff;
  font-family: 'Bitter', serif;
  margin-bottom: 50px;
  border: none;
}

.no1 {
  font-size: 11px;
}

.no2 {
  font-size: 11px;
}

.no3 {
  font-size: 11px;
}


.btn a {
  background-color: #009cd3;
  color: #ffffff;
  font-size: 20px;
  font-family: 'Bitter', serif;
  width: 185px;
  display: block;
  text-align: center;
  line-height: 50px;
  margin-top: 20px;
  border-radius: 5px;
  border: 3px solid #009cd3;
}

.btn a:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #009cd3;
}

/*トップページ内「What's New」ブロック
-----------------------------------------------------------------*/
#portfolio .news {
  width: 100%;
  margin: 0 auto;
  }

#portfolio .news h2 {
  color: dimgray;
  text-align: center;
  font-size: 25px;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid #ccc;
}

#portfolio .news dt .thumbnail{
  float: left;
  margin: 10px 0 0 80px;
  width: 80px;
  }

#portfolio .news dd {
  border-bottom: 1px solid #ccc;
  margin-right: 80px;
  }

#portfolio .news .date{
  color: dimgray;
  text-align: left;
  margin-top: 10px;
  padding-left: 150px;
  font-size: 15px;
}

#portfolio .news .newsbody{
  color: dimgray;
  text-align: left;
  padding-left: 150px;
  font-size: 15px;
}

#company .profile-txt p {
  font-family: 'Cormorant+Garamond', serif;
  font-size: 13px;
  margin-left: 15px;
}

#company .profile-txt {
  width: 350px;
  float: left;
}

#company .profile-txt span {
  font-weight: bold;
}

#company iframe {
  float: right;
  margin-top: 50px;
}

#company .career th {
  width: 240px;
  color: dimgray;
  font-size: 15px;
  background-color: #f0f0f0;
  padding: 12px 0;
  border: 1px solid #cccccc;
}

#company .career td {
  width: 660px;
  padding: 12px 0 12px 40px;
  border: 1px solid #cccccc;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

#about {
  background-image: url(../images/bg-about.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: 100% auto;
}

.main-center {
  width: 800px;
  margin-left: 230px;
}


h1 {
  font-size: 30px;
  border-bottom: 1px solid #cccccc;
}

h2 {
  font-size: 20px;
}

.main-center .question h2 {
  color: darkred;
}
.main-center p{
padding-left:1em;
text-indent:-1em;
}

.icon:before {
  content: "";
  padding-right: 10px;
  border-left: 7px solid #9cb4a4;
}

#about .profile-txt {
  width: 540px;
  float: left;
}

#about .profile-txt span {
  font-weight: bold;
}

#about .profile-image {
  float: right;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.manager {
  text-align: right;
}

section {
  margin-bottom: 35px;
}

#about .career th {
  width: 240px;
  background-color: #f0f0f0;
  padding: 12px 0;
  border: 1px solid #cccccc;
}

#about .career td {
  width: 660px;
  padding: 12px 0 12px 40px;
  border: 1px solid #cccccc;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

#index #wrap {
  background-color: #ffffff;
}

.main {
  width: 800px;
  float: left;
  margin-left: 230px;
}

.main h2 {
  text-align: center;
}

.btn-detail a {
  background-color: darkred;
  color: #ffffff;
  font-size: 20px;
  font-family: 'Cormorant+Garamond', serif;
  width: 200px;
  display: block;
  text-align: center;
  line-height: 50px;
  margin: 1% auto;
  border-radius: 5px;
  border: 3px solid darkred;
}

.btn-detail a:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: darkred;
}

/*トップページ内「What's New」ブロック
-----------------------------------------------------------------*/
#index .news {
  width: 100%;
  margin: 0 auto;
  }

#index .news h2 {
  color: dimgray;
  text-align: center;
  font-size: 25px;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid #ccc;
}

#index .news dt .thumbnail{
  float: left;
  margin: 10px 0 0 80px;
  width: 80px;
  }

#index .news dd {
  border-bottom: 1px solid #ccc;
  margin-right: 80px;
  }

#index .news .date{
  color: dimgray;
  text-align: left;
  margin-top: 10px;
  padding-left: 150px;
  font-size: 15px;
}

#index .news .newsbody{
  color: dimgray;
  text-align: left;
  padding-left: 150px;
  font-size: 15px;
}

.sidebar {
  width: 200px;
  margin: 0 10px 0 30px;
  float: right;
  font-family: 'Bitter', serif;
}

a img:hover {
  opacity: 0.8;
}

.sidebar h2 {
  margin-bottom: 10px;
}

.sidebar ul {
  font-size: 16px;
  margin-left: 20px;
}

.sidebar ul a {
  color: #333333;
}

#photograph {
  background-image: url(../images/bg-photograph.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: 100% auto;
}

#photograph .photograph-list li {
  float: left;
  list-style: none;
  margin: 0 20px 15px 0;
}

#photograph .photograph-list li:nth-child(3n) {
  margin-right: 0;
}

#video {
  background-image: url(../images/bg-video.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: 100% auto;
}

#contact {
  background-image: url(../images/bg-contact.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: 100% auto;
}

#contact .access table {
  float: left;
}

#contact .access th,
#contact .access td {
  text-align: left;
  vertical-align: top;
  line-height: 2.5;
}

#contact .access td {
  padding-left: 30px;
}

#contact .access iframe {
  width: 460px;
  float: right;
}

#contact .form {
  background-color: #eaeaea;
  padding: 30px 50px;
}

#contact .form dl dt {
  width: 165px;
  padding: 10px 0;
  float: left;
  clear: both;
}

#contact .form dl dd {
  padding: 10px 0;
}

#contact .form .name {
  width: 240px;
  height: 30px;
}

#contact .form .email {
  width: 300px;
  height: 30px;
}

#contact .form .tel {
  width: 240px;
  height: 30px;
}

#contact .form .type {
  width: 180px;
  height: 30px;
}

#contact .form .message {
  width: 660px;
  height: 150px;
}

#contact .form button {
  background-color: #009cd3;
  color: #ffffff;
  font-size: 20px;
  width: 120px;
  display: block;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  border: 3px solid #009cd3;
  margin-left: 165px;
}

#contact .form button:hover {
  background-color: #ffffff;
  color: #009cd3;
  cursor: pointer;
}

#contact .form .required:after {
  content: "*";
  color: #ff0000;
}

#contact .form .attention {
  margin: 20px 0 0 165px;
}

.title{
	pointer-events: none;
}




@media screen and (max-width:768px) {
  /* 画面サイズが750px以下の場合に適用 */
  
  body {
   font-size: 3.5vw;
  }
  
  h1 {
    max-width: 90%;
    font-size: 6vw;
  }

  h2 {
    font-size: 4vw;
  }
  
 header {
    width: auto;
    margin: 0 2%;
  }

  .logo {
    float: none;
    text-align: center;
  }
  
  .freedial img {
    width: 120px;
  }
  
  .freedial {
    float: none;
    text-align: right;
    margin-left: 65%;
  }
  
   .dropmenu {
    width: 100%;
     margin-top: 5%;
  }
  
  .accbox label h2 {
  margin-top: -1%;
}

  .global-nav {
    float: none;
    margin-top: 0;
    text-align: center;
  }
  
  .global-nav li {
    display: inline;
    float: none;
    margin: 0 8px;
    font-size: 2vw;
  }
  
  footer {
    width: 100%;
  }
  
  #wrap {
    width: 100%;
    
  }
  
  .content {
    width: 100%;
  }
  
  .main {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
  
  h2 img {
    max-width: 100%;
  }
  
  .album {
    width: 100%;
}

.album img {
	width: 100%;
  }

.album .img1 {
    display: none;
  }
  
  .album .img2 {
    display: none;
  }
  
  .album .img3 {
    display: block;
    width: 100%;
    margin: 0 auto;
}

  .album .img4 {
    display: block;
    width: 100%;
    animation-delay:5s;
    -webkit-animation-delay:5s;
    position: absolute;
    top:0;
}
  
    
 /*トップページ内「What's New」ブロック
-----------------------------------------------------------------*/
#portfolio .news {
    width: 100%;
  }

#portfolio .news dt .thumbnail{
  margin: 1% 0 0 1%;
  width: 15%;
  }

#portfolio .news dd {
  border-bottom: 1px solid #ccc;
  margin: 0;
  width: 100%;
  }

#portfolio .news .date{
  color: dimgray;
  text-align: left;
  margin-top: 2%;
  padding-left: 20%;
  font-size: 3vw;
}

#portfolio .news .newsbody{
  color: dimgray;
  text-align: left;
  padding-left: 20%;
  font-size: 3vw;
}

  .sidebar {
    width: auto;
    float: none;
    margin: 0;
    padding: 30px 10% 10px;
    background-color: #f7f6f4;
  }
  
#company .profile-txt p {
  font-family: 'Cormorant+Garamond', serif;
  font-size: 3vw;
  margin-left: 2%;
}

#company .profile-txt {
  width: 100%;
  float: left;
}

#company .profile-txt span {
  font-weight: bold;
}

#company .profile-image {
  width: 100%;
}

#company .career th {
  width: 30%;
  font-size: 3vw;
  background-color: #f0f0f0;
  padding: 2% 0;
  border: 1px solid #cccccc;
}

#company .career td {
  width: 69%;
  padding: 5% 0 5% 5%;
  border: 1px solid #cccccc;
  margin-right: 2%;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
  #company iframe {
    float: left;
    width: 100%;
    margin: 0 auto;
  }
  
  .main-center {
    float: none;
    width: auto;
    margin: 0 2%;
  }
  
  .no {
    width: 90%;
    margin: 0 auto;
  }
  
  .no p{
    margin-top:2%;
    font-size: 3vw;
    color: dimgray;
  }
  
  .title{
		pointer-events: all;
	}
	
	.toggle{
		display: none;
	}
  
  .manager {
  padding-right: 2%;
}
}