@charset "UTF-8";

/*normalize: http://necolas.github.io/normalize.css/*/

/* Box sizing rules */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
ul,
ol,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol{
  list-style: none;
}

/* Set core root defaults */

/* html:focus-within {
  scroll-behavior: smooth;
} */

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

:root {
  --text-color:#000;

  --wp--preset--color--base:#fff;
}

/* ==========================================================================
  アニメーション
========================================================================== */

@keyframes menuFadeIn {
  0%{
    display: block;
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes menuFadeOut {
  0%{
    opacity: 1;
  }
  99%{
    opacity: 0;
  }
  100%{
    display: none;
    opacity: 0;
  }
}

@font-face {
 font-family: "YuGothic M";
 src: local("Yu Gothic Medium"),
      local("Yu Gothic");
 font-weight: 500;
}

/* ==========================================================================
   英語フォント
========================================================================== */

.enFont{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}

/* ==========================================================================
   フォーム
========================================================================== */

.formWall input[type="text"],
  .formWall input[type="email"]{
    padding: 0 1em;
    height: 45px;
    line-height: 45px;
    width: 100%;
    border:none;
    background: #f0f0f0;
    font-size: 1.6rem;
  }

.formWall textarea{
    width: 100%;
    padding: 1em;
    height: 230px;
    border:none;
    background: #f0f0f0;
    font-size: 1.6rem;
  }

.formWall .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

.formWall .formBox{
    width: 440px;
  }

.formWall .formBox .inputTitle{
      line-height: 1;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: .23em;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

.formWall .formBox .required{
      color: #fff;
      width: 50px;
      height: 18px;
      display: grid;
      place-content: center;
      background: #005798;
      margin-left: 23px;
      font-size: 1.1rem;
      letter-spacing: .2em;
      line-height: 1;
      font-weight: 500;
    }

.formWall .row + .formBox{
    margin-top: 38px;
  }

.formWall .messageBox{
    margin-top: 38px;
    width: 100%;
  }

.formWall .send{
    margin-top: 43px;
  }

.formWall .send input{
      width: 540px;
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #3c3c3c;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: .23em;
      margin: 0 auto;
      border: none;
      cursor: pointer;
    }

.formWall .send input:disabled{
        opacity: .5;
      }

@media (hover:hover){
        .formWall .send input:hover{
          opacity: .8;
        }
        .formWall .send input:disabled{
          opacity: .5;
        }
          .formWall .send input:disabled:hover{
            opacity: .5;
          }
      }

.formWall .send .wpcf7-spinner{
      display: block;
      margin: 15px auto 0;
    }

.formWall .wpcf7-not-valid-tip{
    padding: .3em;
    font-size: 1.4rem;
    font-weight: 500;
  }

.formWall .wpcf7-response-output{
    margin: 10px 0 0  !important;
    font-size: 1.4rem;
    padding: 1em !important;
    text-align: center;
  }

@media only screen and (max-width: 767px) {
    .formWall input[type="text"],
    .formWall input[type="email"]{
      height: 10.66667vw;
      line-height: 10.66667vw;
      font-size: 16px;
    }
    .formWall textarea{
      height: 86.66667vw;
      font-size: 16px;
    }
    .formWall .row{
      grid-template-columns: 100%;
      gap: 8.13333vw 0;
    }
    .formWall .formBox{
      width: 100%;
    }
      .formWall .formBox .inputTitle{
        font-size: 2.6rem;
        margin-bottom: 2.26667vw;
      }
      .formWall .formBox .required{
        width: 11.6vw;
        height: 4vw;
        margin-left: 4vw;
        font-size: 1.9rem;
      }
    .formWall .row + .formBox{
      margin-top: 8vw;
    }
    .formWall .messageBox{
      margin-top: 8vw;
    }
    .formWall .send{
      margin-top: 5.33333vw;
    }
      .formWall .send input{
        width: 100%;
        height: 16vw;
        font-size: 2.6rem;
      }
      .formWall .send .wpcf7-spinner{
        display: block;
        margin: 2.93333vw auto 0;
      }
    .formWall .wpcf7-not-valid-tip{
      font-size: 2.6rem;
    }
    .formWall .wpcf7-response-output{
      margin: 1.33333vw 0 0  !important;
      font-size: 2.6rem;
    }

}

/* ==========================================================================
   共通設定
========================================================================== */

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
	overflow-y:scroll;
  scroll-padding-top: 80px;
}

body {
  font-family: '游ゴシック','游ゴシック体', 'YuGothic M', YuGothic,'Noto Sans','Noto Sans JP','Noto Sans CJK JP','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
  font-weight: 500;
	font-feature-settings : 'pkna';
  color: #000;
  color: var(--text-color);
	text-align: justify;
	hanging-punctuation: allow-end;
	width:100%;
  min-width: 940px;
	font-size: 1.4rem;
	line-height: 1.5;
	overflow: hidden;
}

img{
	vertical-align:bottom;
	max-width: 100%;
	height: auto;
  backface-visibility: hidden;
}

a{
	color: #000;
	color: var(--text-color);
	text-decoration: none;
  display: inline-block;
}

a:hover{
  opacity: .8;
}

.spShow{
	display: none;
}

.pcShow{
	display: inline-block;
}

/* ==========================================================================
   header
========================================================================== */

.header{
  width: 100px;
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 10;
}

/* ==========================================================================
   footer
========================================================================== */

.footer{
  margin-top: 90px;
  background: #323232;
  padding: 43px 0;
}

.footer .logo{
    width: 100px;
    margin-inline: auto;
  }

.footer .copyright{
    margin-top: 28px;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    color: #fff;
    font-weight: 700;
  }

/* ==========================================================================
   homePage
========================================================================== */

.homePage .fv{
    width: 100%;
    height: 100svh;
    min-height: 500px;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
  }

.homePage .fv .bk{
      grid-column: 1;
      grid-row: 1;
      z-index: 1;
      display: inline;
    }

.homePage .fv .bk img{
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
      }

.homePage .fv h2{
      grid-column: 1;
      grid-row: 1;
      z-index: 2;
      justify-self: center;
      align-self: center;
    }

.homePage .main{
    max-width: 900px;
    margin-inline: auto;
  }

.homePage .secTitle{
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #323232;
  }

.homePage .secTitle::before{
      content: attr(data-en);
      font-size: 5rem;
      letter-spacing: .06em;
      font-weight: 500;
      font-family: "Oswald", sans-serif;
      font-optical-sizing: auto;
      display: block;
      margin-bottom: 17px;
    }

.homePage .about{
    margin-top: 83px;
  }

.homePage .about .secTitle{
      margin-bottom: 43px;
    }

.homePage .about p{
      font-size: 1.5rem;
      line-height: 2;
      letter-spacing: .1em;
      text-box-trim: trim-both;
      font-weight: 500;
    }

.homePage .homeSec + .homeSec{
    padding-top: 60px;
    border-top: 1px solid #000000;
  }

.homePage .companyProfile{
    margin-top: 73px;
  }

.homePage .companyProfile .secTitle{
      margin-bottom: 52px;
    }

.homePage .companyProfile dl{
      display: grid;
      grid-template-columns: 80px 1fr 138px 1fr;
      font-size: 1.4rem;
      letter-spacing: .1em;
    }

.homePage .companyProfile dt:nth-of-type(even){
      margin-left: 50px;
    }

.homePage .companyProfile dt,.homePage .companyProfile dd{
      border-top: 1px solid #c7c7c7;
      border-bottom: 1px solid #c7c7c7;
      padding: 30px 0;
      margin-top: -1px;
    }

.homePage .companyProfile dt{
      padding-inline:10px;
      font-weight: 700;
    }

.homePage .companyProfile dd{
      font-weight: 500;
    }

.homePage .access{
    margin-top: 83px;
  }

.homePage .access .secTitle{
      margin-bottom: 43px;
    }

.homePage .access iframe{
      width: 100%;
      height: 431px;
    }

.homePage .contact{
    margin-top: 85px;
  }

.homePage .contact .secTitle{
      margin-bottom: 50px;
    }

.homePage .contact .toptext{
      font-size: 1.5rem;
      line-height: 1.86;
      font-weight: 500;
      letter-spacing: .1em;
      padding-bottom: 41px;
      margin-bottom: 38px;
      border-bottom: 1px solid #e6e6e6;
    }

/* ==========================================================================
   end
========================================================================== */

@media only screen and (max-width: 767px) {
  html{
    font-size: 1.33333vw;
  }
body {
  min-width: 0;
	width:100%;
}
img{
	width: 100%;
}
.spShow{
	display: inline-block;
}
.pcShow{
	display: none;
}
/* ==========================================================================
   header
========================================================================== */
.header{
  width: 16vw;
  top: 4vw;
  left: 4vw;
}
/* ==========================================================================
   footer
========================================================================== */
.footer{
  margin-top: 20vw;
  background: #323232;
  padding: 10.66667vw 0 4.66667vw;
}
  .footer .logo{
    width: 20vw;
  }
  .footer .copyright{
    margin-top: 8.66667vw;
    font-size: 2rem;
  }
/* ==========================================================================
   homePage
========================================================================== */
  .homePage .fv{
    min-height: 400px;
  }
    .homePage .fv h2{
      width: 77.73333vw;
    }
  .homePage .main{
    max-width: 86.66667vw;
  }
  .homePage .secTitle{
    font-size: 2.6rem;
  }
    .homePage .secTitle::before{
      font-size: 6rem;
      margin-bottom: 3.33333vw;
    }
  .homePage .about{
    margin-top: 14.66667vw;
  }
    .homePage .about .secTitle{
      margin-bottom: 8vw;
    }
    .homePage .about p{
      font-size: 2.6rem;
      line-height: 1.76;
    }
  .homePage .homeSec + .homeSec{
    padding-top: 11.73333vw;
    border-top: 0.13333vw solid #000000;
  }
  .homePage .companyProfile{
    margin-top: 13.33333vw;
  }
    .homePage .companyProfile .secTitle{
      margin-bottom: 8.26667vw;
    }
    .homePage .companyProfile dl{
      grid-template-columns: auto 1fr;
      font-size: 2.6rem;
      line-height: 1.46;
    }
    .homePage .companyProfile dt:nth-of-type(even){
      margin-left: 0;
    }
    .homePage .companyProfile dt,.homePage .companyProfile dd{
      border-top: 0.13333vw solid #c7c7c7;
      border-bottom: none;
      padding: 4.66667vw 0;
      margin-top: 0;
    }
    .homePage .companyProfile dt{
      padding-inline:2.93333vw;
    }
    .homePage .companyProfile dt:nth-last-of-type(1),
    .homePage .companyProfile dd:nth-last-of-type(1){
      border-bottom: 0.13333vw solid #c7c7c7;
    }
  .homePage .access{
    margin-top: 15.86667vw;
  }
    .homePage .access .secTitle{
      margin-bottom: 6.4vw;
    }
    .homePage .access iframe{
      height: 93.33333vw;
    }
  .homePage .contact{
    margin-top: 14.66667vw;
  }
    .homePage .contact .secTitle{
      margin-bottom: 7.33333vw;
    }
    .homePage .contact .toptext{
      font-size: 2.6rem;
      line-height: 1.76;
      padding-bottom: 6.26667vw;
      margin-bottom: 7.33333vw;
      border-bottom: 0.13333vw solid #e6e6e6;
    }
/*end*/
}