@charset "utf-8";

* {
  box-sizing: border-box;
}


body {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #333;
}


h1 {
  font-size: 18px;
}

h2,
h3,
h4{
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  color: #f0f8ff;
  font-size: 16px;
  margin-bottom: 20px;
}


p {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-align: justify;
}

a {
  color: #fff;
  text-decoration: none;
  transition: .3s ease;
}

a:hover,
a:focus {
  color: #e6e6fa;
  text-decoration: none;
  opacity: .7;
}

ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

section {
  padding: 80px 10px;
}

.txt-center {
  text-align: center;
}

.txt-lead {
  font-weight: 700;
}

.btn {
  display: block;
  padding: 20px 35px;
  border-radius: 8px;
  margin: 0 auto;
  border: none;
  transition: .4s ease;
}

.btn:hover,
.btn:focus{
  background: #7b68ee;
  cursor: pointer;
}

.btn:visited{
  color: #fff;
  background: #6a5acd;
}

.btn-link{
  color: #fff;
  background: #6a5acd;
}



.inner {
  padding: 0 15px;
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .inner {
    max-width: 1200px;
  }
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}

/*-------------------------------------------
　ヘッダー
-------------------------------------------*/
.header {
  position: fixed;
  top: 0px;
  width: 100%;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: rgba(0, 0, 0, 0.8);
  z-index: 200;
}

.header-logo-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.gnav-toggle {
  position: relative;
  margin-top: 12px;
}

.gnav-hidden {
  display: none;
}

#gnav-open {
  display: inline-block;
  width: 30px;
  height: 20px;
  vertical-align: middle;
}

#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background: #fff;
  display: block;
  cursor: pointer;
}

#gnav-open span::before {
  bottom: -8px;
}

#gnav-open span::after {
  bottom: -16px;
}

#gnav-close {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

#gnav-input:checked ~ #gnav-close {
  display: block;
  opacity: 0.5;
}

#gnav-input:checked ~ #gnav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#gnav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.4s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  text-transform: uppercase;
}


.gnav-item {
  border-bottom: 2px;
  margin: 10px;
  padding-bottom: 20px;
}

.gnav-item a {
  color: #fff;
  font-size: 16px;
  display: block;
  width: 200px;
  text-align: center;
}

.gnav-item a::first-line {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .gnav-menu {
    flex-direction: row;
    padding-top: 15px;
    margin: 0;
  }

  .gnav-item {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
  }

  .gnav-item a {
    color: #fff;
    width: 120px;
    transition: .3s ease;
  }

  .gnav-item a:hover {
    color: #e6e6fa;
    opacity: .7;
  }
}

/*-------------------------------------------
　ヒーロートップ
-------------------------------------------*/

.ht-area {
  width: absolute;
  height: 100vh;
  background-image: url(../img/hero_top_250901.jpg);
  background-size: cover;
  background-position: left center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ht-title {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
  margin-top: 70px;
}

@media screen and (min-width:768px) {
  .ht-area {
    width: 100%;
    height: 600px;
    background-position: center;
  }

  .ht-title {
    margin-top: 90px;
  }
}


/*-------------------------------------------
　トピック
-------------------------------------------*/
.topic-area img {
  margin-top: 30px;    
}

.topic-txt {
  margin-top: 30px;     
}

@media screen and (min-width:768px) {
  .topic-content {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .topic-txt {
    flex: 1;
    margin-left: 80px;    
  }

  .topic-area img {
    flex: 1
  }
  }
    
/*-------------------------------------------
　プロフィール
-------------------------------------------*/
.profile-area{
 background-color: #222;
}


@media screen and (min-width:768px) {
  .profile-content {
    max-width: 640px;
  }
  p {
    font-size: 1.3rem; 
  }
 }


/*-------------------------------------------
　コンタクト
-------------------------------------------*/
form {
  margin: 0px;
  padding: 0px;
}
dl {
  margin: 0;
  font-size: 18px;
}
.formItem { display: block; }
  dt {
    text-align: left;
    margin-bottom: 10px;
}
  dd { margin-left: 0; 
    margin-bottom: 20px;
}

input[type="text"],input[type="email"],textarea {
  border: 1px solid #999;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}
select[name="messageType"]{
  border: 1px solid #999;
  width: 100%;
  padding: 10px;
  border-radius: 5px;    
}

textarea {height: 10em; }

input[type="submit"]{
 width: 100%;
 color: #fff;
 background: #6a5acd;
}


@media screen and (min-width:768px) {
.contact-form {
    max-width: 640px;
  } 
    
.dl{margin: 10 ;
   width: 640px;
}
.dd{margin: 10 ;
   width: 640px;
}

}


/*-------------------------------------------
　フッター
-------------------------------------------*/
footer{
  width: 100%;
  padding: 10px;
  background-color: #333;
}

.copyright{
  line-height: 2.5;
  text-align: center;
}

/*-------------------------------------------
　Thank you
-------------------------------------------*/
.thankyou-area {
  top: 150px;
  width: 100%;
  padding: 10px;
  font-weight: 400;
  font-style: normal;
 }

@media screen and (min-width:768px) {
  .thankyou-content {
    max-width: 640px;
  }
 }