@charset "utf-8";
/*====================
contact
====================*/


/* 基本設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

/* .nav__btn { 
  position: absolute;
  top: 40px;
  right: 20px;
} */


/* コンテナに「max-width　1280px」設定したら
　　　　　　　　　「position: relative;」忘れず！ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* ヘッダー */

.header {
  padding: 24px 6.4% 16px;
}

.header__topic,
.nav__topic {
  color: #4F4E4E;
  font-weight: 700;
  font-size: 2.4rem;
}

.header__topicSp { 
  margin-top: auto;
  width: 150px; 
  height: 64px;
}

.header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.header__logoSp {
  max-width: 200px;
  height: auto;
}

.telephone {
  display: none;
}

@media screen and (max-width:768px) {
  .header__topicPc {
    display: none;
  }
}

/* .nav初期表示 */
.nav {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100vh;
  padding: 24px 6.4%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.nav__list {
  margin-top: 66px;
}

.nav__item {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: #2F2F2F;
  margin-top: 30px;
}

.nav__item img {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 24px;
}

/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}

/* .header pc */
@media screen and (min-width:769px) {
  .header {
      display: block;
      max-width: 1280px;
      margin: 0 auto;
      padding: 30px 60px 30px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-direction: column;
  }

  .header__logo { 
      margin-top: auto;
      width: 340px; 
      height: auto;
  }

  .telephone {
      display: flex;
      justify-content: flex-end;
      font-size: 36px;
      font-weight: bold;
      color: #4F4E4E;
  }

  .header__topicSp {
      display: none;
  }

  .menu_btn img {
      display: none;
  }
  /* .menu_btn { 
      right: 5%;
      top: 60px;
  }  */  
  
  .tel_btn {
      margin: 10px 10px 0;
      position: relative;
      top: auto;
      right: auto;
  }
  
  .tel_set {
      display: flex;
      justify-content: flex-end;
      position: absolute;
      top:60px;
      right: 8%;
  }

  .nav {
      background: transparent;
      width: 100%;
      height: auto;
      padding: 0;
      position: static; 
      transform: translate(0);
  }

  .nav__list {
      margin-top: 0;
      display: flex;
      justify-content: space-between;
     
  }

  .nav__item a {
      display: flex;
      justify-content: space-between;
  }

  .nav__item a :last-of-type {
      margin-top: -2px;
  }

  .nav__item {
      font-weight: 400;
      font-size: 1.6rem;
      color: #0000cd;
      display: block;
      font-size: 20px;
  }

  .nav__header {
      display: none;
  }

  .nav__item img {
      display: block;
      width: 30px;
      height: 30px;
      margin: -8px 10px 0;
  }

  .nav__item:first-of-type {
      display: block;
      
  }

}/* pc 769px */


/* セクション */
.section {
  padding: 10px 20px;
  background-color: #fff;
  width: 99%;
  text-align: center;
}

/* .section_contact { 
  font-size: 2rem;
  font-weight: bold;
  color: #4F4E4E;
  margin: 0 auto;
  margin-bottom: 20px;
} */

.section h1 {
  font-size: 38px;
  font-family: EB Garamond;
  /* margin-bottom: 20px; */
  color: #4F4E4E;
  text-align: center;
  line-height: 45px;
  margin-bottom: 20px;
}

.japanese_title {
  font-size: 15px;
  font-weight: bold;
  color: #109AC4;
  margin-bottom: 20px;
  text-align: center;
}

/* セクション部分 pc */
@media screen and (min-width:769px) {
  .section_contact {
    font-size: 48px;
    font-weight: normal;
    color: #4F4E4E;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .section h1 {
    font-size: 64px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .japanese_title {
    font-size: 20px;
    font-weight: bold;
    color: #109AC4;
    margin-bottom: 30px;
    text-align: center;
  }

}

/* フォーム部分 */
.form__parts {
  border-radius: 6px;
  padding: 20px;
  background-color: #67B1C7;
}

.form__category {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4F4E4E;
  margin: 30px 0 5px;
  text-align: left;
}


/* ＊＊＊必須＊＊＊ 
.form__category::after {
  display: inline-block;
  content: '必須';
  height: 18px;
  width: 34px;
  text-align: center;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #FF3366;
  border-radius: 2px;
  margin-left: 5px;
}*/

.form__category span {
  position: relative;
  padding-right: 40px; /*「必須」のサイド */
}

.form__category span::after {
  display: inline-block;
  position: absolute;
  content: '必須';
  text-align: center;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: normal;
  background-color: #FF3366;
  border-radius: 2px;
  padding: 2px;
  right: 0;
  bottom: 0;
  transform: translateY(0%); /*「必須」の上下 */
}

.group1,
.group3 {
  display: flex;
  flex-direction: column;
}

.group1 input::placeholder {
  font-weight: bold;
  opacity: 0.5;
  color: #c0c0c0;
  text-align: left;
}

/* 「お問合せ内容」のみ 「textarea」 */
.group3 textarea::placeholder {  
  font-weight: bold;
  opacity: 0.5;
  color: #c0c0c0;
  text-align: left;
} 

.group1 input {
  padding: 10px;
  font-size: 1.4rem;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background-color: #fff;
  outline: none;
}

.group3 textarea {
  padding: 10px;
  font-size: 1.4rem;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background-color: #fff;
  height: 200px;
  outline: none;
}

.group input:focus {
  border-color: #007bff;
}

.checkbox {
  font-size: 1.3rem;
  color: #4F4E4E;
}

/* プライバシーポリシー */
input[type="checkbox"]:checked {
  position: relative;
}  

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #4F4E4E;
  background: #FFF;
  margin-right: 8px;
}

.form__parts--policy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4F4E4E;
  margin: 0 auto;
}

/*テキストに下線 */
.policy span { 
text-decoration: underline;
}  

.policy input {
  accent-color: #1587AA;
  appearance: auto;
}

/* 送信ボタン */
.form__parts--send {
  background-color: #FFF;
  text-align: center;
}

.btn--form {
  padding: 12px 24px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #1587AA;
  width: 100%;
  height: 41px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn--form:hover {
  background-color: #0056b3;
}

.btn--form:active {
  background-color: #004085;
}


/* フォーム部分 pc */
@media screen and (min-width:769px) {
  .form__category {
    font-size: 20px;
    font-weight: 400;
    color: #4F4E4E;
    margin: 40px 0 8px;
    text-align: left;
  }

  .btn--form {
    border-radius: 80px;
    font-size: 20px;
    width: 350px;
    height: 70px;
    margin: 20px auto;
  }
  
  .group3 textarea {
    margin-bottom: 40px;
  }

  .policy {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 20px;
  }

    /* ＊＊＊必須＊＊＊ 
  .form__category::after {
    height: 25px;
    width: 50px;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-left: 10px;
    margin-top: 20px;
  }*/

  .form__category span {
    padding-right: 60px; /*「必須」のサイド */
  }
  
  .form__category span::after {
    font-size: 1.8rem;
    transform: translateY(-30%); /*「必須」の上下 */
  }

  .group1 input {
      padding: 10px;
      font-size: 2rem;
      border: 1px solid #d9d9d9;
      border-radius: 6px;
      background-color: #fff;
      outline: none;
      width: 500px;
      height: 45px;
      margin-left: 45%;
      margin-top: -50px;
  }

  .form__category {
    font-size: 3.6rem;
    font-weight: 400;
    color: #4F4E4E;
    margin: 30px 0 5px;
    margin-left: 10%;
  }

  .form__category{
  /* .form__category::after { */
    display: flex;
    justify-content: flex-start;
    margin-top: 80px;
  }

  .group3 textarea::placeholder {
    font-size: 2rem;  
    font-weight: bold;
    opacity: 0.5;
    color: #c0c0c0;
    text-align: left;
  } 

  .group3 textarea {
    /* font-size: 2rem; */
    width: 950px;
    height: 400px;
    outline: none;
    margin: 0 auto;
  }

}



/*==========================
footer
==========================*/
.footer {
  padding: 32px 4.2%;
}

.footer__topic {
  max-width: 150px;
}

.mail_btn {
  display: block;
  width: 40px;
  height: 40px;
  
  position: absolute;
  top: 40px;
  right: 6.4%;
}

.mail_btn a {
  display: block;
}

.copy {
  margin-top: 10px;
}

.copy small {
  font-size: 1.2rem;
}

/* footer pc */
@media screen and (min-width: 769px) {
  .footer {
      /* padding: 64px 60px; */
      max-width: 1280px;
      margin: 0 auto;
  }

  .footer__group {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .footer__topic {
      font-size: 2.4rem;
      line-height: 1;
      max-width: 100%;
  }

  .footer__logo {
      margin-top: auto;
      width: 340px;
      height: auto;
  }
  

  .menu__list {
      display: flex;
      margin-top: 0;
  }

  .menu__item {
      margin-top: 0;
      margin-left: 32px;
  }

  .copy {
      /* margin-top: 10px; */
  }
  
}/* pc 769px */