@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Lugrasimo&family=Mochiy+Pop+One&family=Zen+Antique+Soft&display=swap");
* {
  box-sizing: border-box; }

html {
  margin: 0; }

body {
  font-family: "Kiwi+Maru"; }

a {
  color: #000;
  text-decoration: none; }

ul {
  list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px; }

.sec-title {
  font-size: 50px;
  position: relative;
  margin-bottom: 70px; }
  .sec-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 300px;
    width: 200px;
    height: 4px;
    background-color: #000; }

.b-title {
  font-size: 100px;
  color: #eee;
  text-align: right; }

.button {
  text-align: center;
  margin-bottom: 80px; }
  .button input {
    width: 200px;
    background-color: #0000DD;
    color: #fff;
    padding: 15px 0;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    box-shadow: 0px 0px 8px 1px;
    cursor: pointer; }

.sp {
  display: none; }

/*--------------------------------
mainvisual
--------------------------------*/
#mainvisual {
  position: relative;
  height: 400px;
  color: #fff;
  /*セクションメイン画像とロゴはクラス分けして大きさを調整*/ }
  #mainvisual .sec-mv {
    width: 100%;
    height: 400px;
    object-fit: cover; }
  #mainvisual a {
    color: #fff; }
  #mainvisual .header {
    /* ヘッダー大枠のデザイン調整 */
    width: 100%;
    height: 120px;
    position: fixed;
    z-index: 999;
    /*下記3コードの記述がないとヘッダーは何故か表示されない*/
    top: 0;
    left: 0;
    right: 0;
    /* ロゴサイズ調整 */
    /* ヘッダー内部のデザイン調整 */ }
    #mainvisual .header .logo {
      width: 150px; }
    #mainvisual .header .header__inner {
      padding: 10px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: inherit;
      /* スマホ表示のナビメニューは背景色を変更して絶対位置で表示 */
      /* スマホ表示のナビメニューのliの位置調整 */
      /* PC表示のナビメニューは横並びに設定 */
      /* PC表示のナビメニューのliのデザイン調整 */
      /* ナビのリンク */
      /* ハンバーガーメニュー */
      /* ハンバーガーメニューの線 */
      /* ハンバーガーメニュークリック後のスタイル */ }
      #mainvisual .header .header__inner h1 {
        font-size: 30px;
        font-family: "Noto serif"; }
      #mainvisual .header .header__inner .header__nav {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(100%);
        background-color: #D9D9DA;
        transition: ease .4s;
        font-weight: bold; }
      #mainvisual .header .header__inner .nav-items {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0; }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .header__nav {
          position: static;
          transform: initial;
          background-color: inherit;
          height: inherit;
          display: flex;
          justify-content: end;
          width: 60%; } }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .nav__items {
          width: 100%;
          display: flex;
          align-items: center;
          height: initial;
          justify-content: space-between; } }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .nav-items {
          position: inherit;
          top: 0;
          left: 0;
          transform: translate(0, 0); } }
      #mainvisual .header .header__inner .nav-items__item a {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 20px;
        margin-bottom: 24px;
        transition: 0.5s; }
        #mainvisual .header .header__inner .nav-items__item a:hover {
          font-size: 28px; }
      #mainvisual .header .header__inner .nav-items__item:last-child a {
        margin-bottom: 0; }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .nav-items__item a {
          margin-bottom: 0; } }
      #mainvisual .header .header__inner .header__hamburger {
        width: 48px;
        height: 100%; }
      #mainvisual .header .header__inner .hamburger {
        background-color: transparent;
        border-color: transparent;
        z-index: 9999; }
      @media screen and (min-width: 960px) {
        #mainvisual .header .header__inner .hamburger {
          display: none; } }
      #mainvisual .header .header__inner .hamburger span {
        width: 100%;
        height: 1px;
        background-color: #fff;
        position: relative;
        transition: ease .4s;
        display: block; }
      #mainvisual .header .header__inner .hamburger span:nth-child(1) {
        top: 0; }
      #mainvisual .header .header__inner .hamburger span:nth-child(2) {
        margin: 8px 0; }
      #mainvisual .header .header__inner .hamburger span:nth-child(3) {
        top: 0; }
      #mainvisual .header .header__inner .header__nav.active {
        transform: translateX(0); }
      #mainvisual .header .header__inner .hamburger.active span:nth-child(1) {
        top: 5px;
        transform: rotate(45deg); }
      #mainvisual .header .header__inner .hamburger.active span:nth-child(2) {
        opacity: 0; }
      #mainvisual .header .header__inner .hamburger.active span:nth-child(3) {
        top: -13px;
        transform: rotate(-45deg); }
  #mainvisual .change-color {
    background-color: #D9D9DA;
    transition: 0.3s; }
  #mainvisual h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 60px; }
  #mainvisual .b-title {
    position: absolute;
    left: 50px;
    bottom: 20px;
    color: rgba(68, 68, 68, 0.5); }

/*--------------------------------
contact-form
--------------------------------*/
.contact {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center; }

/*タイトル*/
.contact-ttl {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 35px; }

.contact-table {
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid #ccc; }

.contact-item,
.contact-body {
  padding: 20px;
  border: 1px solid #ccc; }

.contact-item {
  text-align: left;
  width: 30%;
  background-color: #eee; }

.contact-body {
  width: 70%;
  text-align: left; }

.form-text {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px; }

.contact-sex + .contact-sex {
  margin-left: 10px; }

.contact-sex-txt {
  display: inline-block;
  margin-left: 5px; }

.form-select {
  width: 180px;
  height: 40px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px; }

.contact-skill {
  display: block; }

.contact-skill + .contact-skill {
  margin-top: 10px; }

.contact-skill-txt {
  display: inline-block;
  margin-left: 5px; }

.form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

.contact-submit {
  width: 250px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  padding: 15px;
  border-radius: 100vh;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer; }

/*必須項目装飾*/
.required {
  background-color: #FF6928;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  margin-right: 10px; }

.un-required {
  background-color: #8EB8FF;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  margin-right: 10px; }

/*内容確認部分*/
.conf {
  margin-top: 20px;
  text-align: center; }
  .conf .c-title {
    font-weight: bold;
    margin-bottom: 30px; }
  .conf .button {
    margin-top: 20px;
    margin-bottom: 50px; }

/*送信完了ページの余白設定*/
.back {
  margin-top: 30px;
  margin-bottom: 200px; }

/*--------------------------------
footer
--------------------------------*/
#footer {
  text-align: center;
  height: 80px;
  line-height: 80px;
  background-color: #D9D9DA; }

/*--------------------------------
SP共通
--------------------------------*/
@media screen and (max-width: 1000px) {
  .sp {
    display: block; }

  .pc {
    display: none; }

  .b-title {
    font-size: 40px; } }
/*--------------------------------
mainvisual
--------------------------------*/
@media screen and (max-width: 1000px) {
  #mainvisual h2 {
    font-size: 40px; } }
@media screen and (max-width: 800px) {
  #mainvisual .header {
    height: 80px;
    /* ロゴサイズ調整 */ }
    #mainvisual .header .logo {
      width: 100px; } }
@media screen and (max-width: 600px) {
  #mainvisual h2 {
    font-size: 30px; } }
/*--------------------------------
contact-form
--------------------------------*/
@media screen and (max-width: 1000px) {
  .contact {
    max-width: 960px;
    padding: 60px 10px; }

  /*タイトル*/
  .contact-ttl {
    font-size: 16px;
    line-height: 2S5px; }

  .contact-item,
  .contact-body {
    padding: 10px; }

  .contact-item {
    width: 40%;
    font-size: 13px; }

  .contact-body {
    width: 60%; }

  .form-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 400px; }

  .contact-sex + .contact-sex {
    margin-left: 10px; }

  .contact-sex-txt {
    display: inline-block;
    margin-left: 5px; }

  .form-select {
    width: 180px;
    height: 40px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px; }

  .contact-skill {
    display: block; }

  .contact-skill + .contact-skill {
    margin-top: 10px; }

  .contact-skill-txt {
    display: inline-block;
    margin-left: 5px; }

  .form-textarea {
    width: 100%;
    padding: 10px;
    height: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; }

  .contact-submit {
    width: 250px;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    padding: 15px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer; } }
@media screen and (max-width: 500px) {
  .contact {
    max-width: 960px;
    padding: 60px 3px; }

  .contact-item,
  .contact-body {
    padding: 5px; }

  .contact-item {
    font-size: 10px; }

  .form-text {
    padding: 5px; }

  .form-select {
    width: 180px;
    height: 40px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px; }

  .form-textarea {
    width: 100%;
    padding: 5px;
    height: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; }

  .contact-submit {
    width: 250px;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    padding: 15px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer; } }
