@charset "UTF-8";

body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    Meiryo,
    sans-serif;
  font-size: 16px;
  color: #000000;
  background-color: #F9841A;
}

@media screen and (min-width: 1132px) {
  .for-sp {
    display: none!important;
  }
}

#global-header {
  position: fixed;
  top: 0;
  height: 100px;
  width: 100vw;
  padding: 10px;
  background-color: #D9D9D9;
  z-index: 10000;
}
#global-header.trans {
  opacity: 0.8;
}

#header-wrapper {
  @media screen and (min-width: 1132px) {
    width: 1132px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
  }
}

@media screen and (min-width: 1132px) {
  #header-logo {
    width: 280px;
  }
}

#header-logo img {
  height: 80px;
  margin: 0 auto;
}
@media screen and (min-width: 1132px) {
  #header-logo img {
    margin: 0;
  }
}

#header-nav {
  position: fixed;
  background-color: #D9D9D9;
  /* メニューの位置マイナス指定で画面外に */
  transform : translateX(280px);
  transition: 0.5s;
  width: 280px;
  top: 100px;
  right: 0;
  padding: 15px;
  font-size: 24px;
  text-align: center;
  z-index: 20000;
}

#header-nav li:not(:last-child) {
    margin-bottom: 15px;
}
#header-nav a {
    text-decoration: none;
}

@media screen and (min-width: 1132px) {
  #header-nav {
    position: relative;
    top: 0;
    left: 0;
    transform : translateX(0);
    width: calc(100% - 200px);
    height: 80px;
  }
  #header-nav  ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    top: 50%;
  }
  #header-nav  li:not(:last-child) {
    margin-bottom: 0;
  }
}

#header-nav.open {
  transform: translateX(0);
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
#menu-btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 25px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 58px;
  height: 50px;
  /* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最前面に */
  z-index: 10;
  @media screen and (min-width: 1132px) {
    display: none;
  }
}
/* @media screen and (min-width: 451px) {
  #menu-btn {
    display: none;
  } 
} */
/***** 真ん中のバーガー線 *****/
.btn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #333;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: .2s;
}


.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}


.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}

/***** メニューオープン時 *****/
.btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  transition: .2s;
}

.btn-line.open::before {
  /* 上の線を傾ける */
  transform: rotate(45deg);
}

.btn-line.open::after {
  /* 上の線を傾ける */
  transform: rotate(-45deg);
}

/* ボタンフォーカス時の装飾 */
.btn:focus .btn-line ,
.btn:focus .btn-line::before ,
.btn:focus .btn-line::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .7);
}

.btn:focus .btn-line.open {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
    
.btn:focus .btn-line.open::before ,
.btn:focus .btn-line.open::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .7);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

#hero-image {
  position: fixed;
  top: 100px;
  height: 400px;
  width: 100vw;
  z-index: 0;
}
#hero-image img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 854px) {
  #hero-image {
    height: auto;
    
    /* & img {
      width: 100vw;
      height: 100vh;
      max-height: 100vh;

    } */
    
  }
}



main {
  position: relative;
  top: 500px;
  max-width: 450px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 854px) {
  main {
    top: calc(100px + calc(100vw * 0.47));
  }
}
@media screen and (min-width: 1132px) {
  main {
    max-width: 1132px;
    top: calc(100vh - 200px);
  }
}
@media screen and (max-height: 500px) {
  main {
    top: calc(100vh - 20px);
  }
}

#main-copy {
  position: relative;
  height: 150px;
  margin-bottom: 50px;
  background-color: #D9D9D9;
  font-size: 24px;
}
#main-copy div {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1132px) {
  #main-copy {
    /* height: 80px; */
    width: 450px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}


section {
  position: relative;
  background-color: #ffffff;
  padding-bottom: 40px;
  
  @media screen and (min-width: 1132px) {
    padding-left: 10px;
    padding-right: 10px;
  }
}
section:not(:first-of-type) {
  margin-top: 200px;
}

.section-title {
  display: inline-block;
  height: 40px;
  margin-top: 70px;
  margin-bottom: 40px;
  font-weight: 400;
  padding-left: 90px;
}
.section-title::before {
  display: inline-block;
  position: absolute;
  content: "";
  background-color: #F9841A;
  width: 75px;
  height: 10px;
  top: 100px;
  left: 10px;
}
.section-title::after {
  display: inline-block;
  position: absolute;
  content: "";
  background-color: #D9D9D9;
  width: calc(100% - 95px);
  height: 10px;
  top: 100px;
  left: 85px;
}

@media screen and (min-width: 1132px) {
  .service-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.service-block {
  background-color: #F5F5F5;
  padding: 20px;
  margin-bottom: 40px;

  @media screen and (min-width: 1132px) {
    width: 364px;
  }
}

.service-block-image {
  height: 250px;
  img {    
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
}
.service-block-title {
  font-weight: 400;
  text-align: center;
  margin: 30px;
}
.service-block-title::after {
  display: inline-block;
  position: absolute;
  content: "";
  background-color: #D9D9D9;
  width: 80px;
  height: 5px;
  left: 0;
  right: 0;
  margin: 30px auto;
}

.profile-my {
  position: relative;
  height: 220px;
  padding: 10px;
  max-width: 650px;
  margin: auto;
}
.profile-my  .photo {
  width: 150px;
  height: 200px;
  border-radius: 10px;
  float: right;
}
.profile-my img {
  height: 100%;
  object-fit: cover;
}
.profile-my .post {
  margin-bottom: 20px;
}
.profile-my .name {
  font-size: 24px;
  margin-bottom: 20px;
}
.profile-my .monolog {
    /* position: absolute;
    width: calc(calc(100vw - 20px) - 150px);
    bottom: 0; */
}

.profile-block::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #D9D9D9;
  height: 100%;
  width: 3px;
  top: 0;
  left: 54px;
}
.profile-block {
  position: relative;
  padding: 10px;
  min-height: 175px;
  padding-bottom: 40px;
  max-width: 500px;
  margin: auto;
}
.profile-block-title {
  position: relative;
  font-size: 20px;
  left: 89px;
  width: calc(100% - 85px);
}
.profile-block-image {
  position: absolute;
  width: 90px;
  height: 90px;
  
  z-index: 1000;
}
.profile-block-image img {
  height: 100%;
  border-radius: 45px;
}
.profile-block-discription {
  position: relative;
  display: inline-block;
  width: calc(100% - 110px);
  left: 110px;
}

.profile-now-image img{
  margin: auto;
}
.profile-now-discription {
  position: relative;
  width: 300px;
  left: 0;
  right: 0;
  margin: 20px auto;
  @media screen and (min-width: 1132px) {
    width: 370px;
  }
}

.profile-copy {
  font-size: 20px;
  text-align: center;
}





.contact-discription {
  padding: 10px;
  max-width: 600px;
  margin: auto;
}
.contact-form {
  padding: 10px;
  width: 300px;
  margin: auto;
}
.contact-form .email {
  font-size: 20px;
}
.contact-form .phone {
  font-size: 20px;
}
.contact-form .post {
  margin-top: 10px;
}
.contact-form .name {
  font-size: 20px;
}

footer {
  position: relative;
  top: 500px;
  background-color: #D9D9D9;
  z-index: 3000;
}
footer nav {
    display: none;
}
footer .copyright {
    text-align: center;
}
@media screen and (min-width: 854px) {
  footer {
    top: calc(100px + calc(100vw * 0.47));
  }
}
@media screen and (min-width: 1132px) {
  footer {
    top: calc(100vh - 200px);
  }
}
@media screen and (max-height: 500px) {
  footer {
    top: calc(100vh - 20px);
  }
}
