@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

*,
::before,
::after {
  box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;

}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  font-size: 2em;
}

:where(ul, ol) {
  list-style-position: inside;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

:where(li) {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

:where(a[href],
  area,
  button,
  input,
  label[for],
  select,
  summary,
  textarea,
  [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }

  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}

:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button,
  button[type],
  input[type=button],
  input[type=submit],
  input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: center;
}

:where(button,
  button[type],
  input[type=button],
  input[type=submit],
  input[type=reset])[disabled] {
  cursor: not-allowed;
}

a {
  text-decoration: none;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #000000;
}

.text-base {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #000000;
}

.text-lg {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000000;
  border-bottom: 3px solid #D73B4A;
  padding-bottom: 3%;
}

.text-lg2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000000;
  border-bottom: 3px solid #F19600;
  padding-bottom: 3%;
}

@media screen and (max-width: 576px) {
  .text-lg {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.text-xl {
  font-size: 1.44rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000000;
}

@media screen and (max-width: 576px) {
  .text-xl {
    font-size: 1.25rem;
  }
}

.text-2xl {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000000;
}

@media screen and (max-width: 576px) {
  .text-2xl {
    font-size: 1.5rem;
  }
}

.text-3xl {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #000000;
}

@media screen and (max-width: 576px) {
  .text-3xl {
    font-size: 1.875rem;
  }
}

.text-4xl {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #333333;
}

@media screen and (max-width: 576px) {
  .text-4xl {
    font-size: 1.5rem;
  }
}

.text-5xl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .text-5xl {
    font-size: 1.5rem;
  }
}

.text-description {
  color: #F19600;
}

.button-primary {
  display: inline-block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  background-color: #d93828;
  border-radius: 36px;
  color: #ffffff;
}

.button-primary:hover {
  background-color: #cc3526;
}

.button-primary:active {
  background-color: #cc3526;
}

.container {
  width: 1000px;
  max-width: calc(100vw - 4rem);
  margin: 0 auto;

}

.container>* {
  grid-column: 1/-1;
}

@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.inner {
  max-width: calc(100vw - 6rem);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: calc(100vw - 2rem);
  }
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Common(PC.SP共通設定)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body {
  /* ゴシック体系のフォント指定 */
  font-family: YakuHanJP, "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
}

body .fadeIn {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}

body .fadeIn-bottom {
  transform: translate(0, 30px);
}

body .scrollIn {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

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

@media only screen and (max-width: 767px) {
  body .sp_none {
    display: none;
  }
}

/*=======================================
#header
----------------------------------------*/
body header .container img {
  padding: 2.25rem 0 2.25rem 1.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body header .container img {
    margin: 0 auto;
    padding: 2rem 0;
  }
}

/*=======================================
#header
----------------------------------------*/
/*=======================================
#hero
----------------------------------------*/

body main #hero {

  background-image: url(../img/img_hero_bg.jpg);
  background-size: cover;

  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}


body main #hero .container {
  display: grid;

  height: 540px;
}

body main #hero .container>* {
  grid-area: fv;
}

body main #hero .container img {
  min-height: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  body main #hero .container {
    justify-items: center;
    height: 400px;

  }
}

/*=======================================
#hero
----------------------------------------*/
/*=======================================
#about
----------------------------------------*/
body main #about {
  padding: 2rem 0 5rem 0;
}

body main #about .container {
  text-align: center;
  background-color: #ffffff;
}

body main #about .container h3 {
  color: #333333;
  margin: 0 0 2.5rem 0;
}

body main #about .container h3 span {
  line-height: 2;
  display: block;
  font-weight: 700;
}

body main #about .container p {
  line-height: 2.2;
}

body main #about .container p:nth-of-type(3),
body main #about .container p:nth-of-type(4) {
  margin: 0 0 1rem 0;
}

@media screen and (max-width: 768px) {
  body main #about .container {
    text-align: left;
  }

  body main #about .container h3 {
    text-align: center;
  }
}

/*=======================================
#about
----------------------------------------*/

/*=======================================
#data
----------------------------------------*/
body main #data {
  background-image: url(../img/img_point_bg.jpg);

  background-position: center;

  padding: 5% 0;
}

body main #data h3 {
  text-align: center;

}

body main #data .container h3 span {
  line-height: 2;
  display: block;
  font-weight: 700;
}

body main #data .container .item-wrap {
  padding: 4.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body main #data .container .item-wrap .item {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 3px solid #B7B8B8;
  border-radius: var(--rounded-l);
}

body main #data .container .item-wrap .item h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}

body main #data .container .item-wrap .item h6 span {}

body main #data .container .item-wrap .item h5 {
  padding: 1rem 0;
  margin: 0 auto;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

body main #data .container .item-wrap .item p {
  font-size: 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-weight: 700;
  text-align: center;
}

body main #data span .text-base .text-description {
  border-bottom: 2px solid #D73B4A;
}


@media screen and (max-width: 768px) {
  body main #data .container .item-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body main #data .container .item-wrap {
    padding: 2.5rem 0;

  }
}

@media screen and (max-width: 576px) {
  body main #data .container .item-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/*=======================================
#data
----------------------------------------*/
/*=======================================
#interview
----------------------------------------*/
#interview {
  width: 1000px;
  max-width: calc(100vw - 4rem);
  margin: 0 auto
}

#interview .interviewwrap {
  margin: 20px 0;
}

#interview .interviewbox {
  display: flex;
  justify-content: space-around;
  margin: 80px 0;
}

#interview .interviewbox2 {
  display: flex;
  justify-content: space-around;
  margin: 80px 0;
}


#interview .interviewboxleft {
  width: 480px;
}

#interview .interviewboxright {
  width: 380px;
  padding: 0 5px;
}

#interview .interviewboxright h4 {
  border-bottom: solid 2px #F19600;
  color: #F19600;
  font-size: 1.25rem;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

#interview .interviewboxright p {
  line-height: 1.5;

}

body main #interview .interviewwrap h3 {
  text-align: center;

}

body main #interview .interviewwrap h3 span {
  line-height: 2;
  display: block;
  font-weight: 700;

}

@media screen and (max-width: 768px) {


  #interview .interviewbox {
    display: block;
    width: 95%;
    margin: 0 auto;
  }

  #interview .interviewboxleft {
    width: 95%;
    margin: 3% 0;
  }

  #interview .interviewboxright {
    width: 95%;
  }

  #interview .interviewbox2 {
    display: flex;
    flex-direction: column-reverse;
    margin: 80px 0;
  }

  body main #interview .interviewwrap h3 {
    padding-bottom: 2.5rem;

  }

}

/*=======================================
#interview
----------------------------------------*/
/*=======================================
#point
----------------------------------------*/
body main #point {
  background-image: url(../img/img_point_bg.jpg);

  background-position: center;

  padding: 5% 0;
}

body main #point h3 {
  text-align: center;

}

body main #point .container h3 span {
  line-height: 2;
  display: block;
  font-weight: 700;
}

body main #point .container .item-wrap {
  padding: 4.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body main #point .container .item-wrap .item {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 3px solid #B7B8B8;
  border-radius: var(--rounded-l);
}

body main #point .container .item-wrap .item h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}

body main #point .container .item-wrap .item h6 span {}

body main #point .container .item-wrap .item h5 {
  padding: 1rem 0;
  margin: 0 auto;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

body main #point .container .item-wrap .item p {
  font-size: 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-weight: 700;
  text-align: center;
}



@media screen and (max-width: 768px) {
  body main #point .container .item-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body main #point .container .item-wrap {
    padding: 2.5rem 0;

  }
}

@media screen and (max-width: 576px) {
  body main #point .container .item-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/*=======================================
#point
----------------------------------------*/
/*=======================================
#button
----------------------------------------*/

body main .button {
  position: relative;
  display: block;
  text-align: center;
  margin: 2.5rem auto;
  width: 500px;
  max-width: 80%;
  padding: 1rem 0;
  background-color: #e83828;
  color: #ffffff;
  border-radius: 36px;
  font-weight: 700;
}

body main .button:hover,
body main .button:active {
  color: #ffffff;
  background-color: #cc3526;
}

body main .button:visited,
body main .button:link {
  color: #ffffff;
}

body main .button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 10px;
  height: 17px;
  background-image: url(../img/img_arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  body main .button {
    margin: 4.5rem auto;
  }
}

@media screen and (max-width: 576px) {
  body main .button {
    margin: 2rem auto;
  }
}

/*=======================================
#button
----------------------------------------*/

/*=======================================
#footer
----------------------------------------*/
body footer {
  text-align: center;
  background-color: #F19600;
  padding: 2rem 0;
}

body footer p {
  color: #ffffff !important;
}

/*=======================================
#footer
----------------------------------------*/

/*=======================================
#フェードイン
----------------------------------------*/
.fadeIn {
  transform: translate3d(-50px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}