@charset "UTF-8";
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/* @include mq("sp") */
/* 750px以下に適用（スマホ用） */
/* 1050px以下に適用（スマホ用） */
/* 1400px以下に適用（本サイト用） */
/* 「@include pop;」等で引き出し。*/
/* ルートの文字サイズを10pxに設定 */
html {
  font-size: 62.5%;
  background: #f8f8f8;
}

/* bodyのフォントサイズを1.6em（16px）に設定 */
body {
  font-size: 1.6em;
  margin: 0%;
  font-family: "Noto sans gothic";
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 1580px;
  margin: 0 auto;
}

a:focus-visible {
  outline: none;
}

/****************************
↑の設定を行うことでremの判断を容易に視認。
例:
h1
font-size: 5rem; (50px)
p
font-size: 1.5rem;  (15px)

以上。
*******************************/
.inner {
  margin: 0 auto;
  width: 70%;
}
@media screen and (max-width: 750px) {
  .inner {
    padding-right: 0%;
    padding-left: 0%;
  }
}

.center {
  text-align: center;
}

.fs16 {
  font-size: 1.6rem;
}

.fs24 {
  font-size: 2.4rem;
}

.bold {
  font-weight: bold;
}

.color1 {
  color: #6d572f;
}

a {
  text-decoration: none;
  color: black;
}
a :hover {
  opacity: 0.6;
  transition: 0.4s;
}

li {
  list-style: none;
}

/****************************************/
/*Header*/
/****************************************/
/* スムーズスクロールとヘッダーのスタイル */
html {
  scroll-behavior: smooth; /* スムーズスクロールを有効化 */
}

.header {
  background: white;
  position: fixed;
  width: 100%;
  right: 0;
  left: 0;
}
.header .header__wrap {
  display: flex;
  justify-content: right;
  padding: 1.5% 0;
  padding-right: 10%;
}
.header .header__wrap a.header__link {
  width: 22%;
}
.header .header__wrap a.header__link img.header__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 10vh;
}

/****************************************/
/* FV */
/****************************************/
.FV {
  padding-top: 10vh;
}
.FV img.FV__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 90vh;
}

/****************************************/
/* 1st */
/****************************************/
.contents__1st__text__wrap {
  display: flex;
  justify-content: space-around;
}
.contents__1st__text__wrap p.text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(16px, 1.8vw, 30px);
  font-weight: bold;
}
.contents__1st__text__wrap p.text img.check__img {
  width: 1.8vw;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents__1st__text__wrap .link__btn__wrap {
  display: flex;
  justify-content: space-between;
}
.contents__1st__text__wrap .link__btn__wrap img.link__btn {
  width: 30%;
}
.contents__1st__text__wrap .link__btn__wrap img.link__btn img.link__btn__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* base__img */
img.base__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* link__btn */
.link__btn__wrap {
  display: flex;
  justify-content: space-between;
}
.link__btn__wrap a {
  width: 31%;
}
.link__btn__wrap a img.link__btn {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 1st__under */
.contents__1st__under {
  display: flex;
  justify-content: center;
  gap: 5%;
}
.contents__1st__under img.icon {
  width: 18%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contents__1st__last__text {
  display: flex;
  justify-content: center;
}
.contents__1st__last__text img.last__text {
  width: 68%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
@media screen and (max-width: 1200px) {
  /*画面幅が1200px以下の時*/
  /* ルートの文字サイズを10pxに設定 */
  html {
    font-size: 50%;
  }
  /* bodyのフォントサイズを1.6em（16px）に設定 */
  body {
    font-size: 1.6em;
  }
}
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
@media screen and (max-width: 950px) {
  /*画面幅が950px以下の時*/
  /* ルートの文字サイズを10pxに設定 */
  html {
    font-size: 44%;
  }
}
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
/*---------レスポンシブ-----------------------------------------*/
@media screen and (max-width: 750px) {
  /*画面幅が750px以下の時*/
  /* ルートの文字サイズを10pxに設定 */
  html {
    font-size: 62.5%;
  }
}/*# sourceMappingURL=style.css.map */