@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .p-page_content__inner {
    max-width: 900px!important;
    width: 90%;
    padding: 0!important;
  }

  
.p-page_content__inner a {
  text-decoration: none!important;
}

  html {
      scroll-behavior: smooth;
    }
  
    a {
      transition: all 0.3s ease;
      text-decoration: none; 
    }
  
    .breadcrumb {
      background-color: #ebedeb;
      padding: 5px 0 10px;
    }

/* ここまでLP共通 */


/* ユーティリティ */
.bg-purple {
  background: #F2F3FC;
}

.bg-gray {
  background: #F5F7F9;
}

.paren {
  letter-spacing: -0.2em;
}

a {
  color: #636363;
}

.link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 400px;
  border-radius: 40px;
  font-size: 16px;
  color: #000;
  margin: 100px auto!important;
    background: linear-gradient(to left, #FFA14E 50%, #000 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease;
  cursor: pointer;
  text-decoration: none;
}

.link-btn:hover {
    color: #fff;
  background-position: left bottom;
  opacity: 1;
}

.taidan p {
  margin-bottom: 25px;
}

.sp_only {
  display: none;
}

/* ユーティリティここまで */

/* アニメーション */
body {
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-slide {
  opacity: 0;
  transform: translateY(30px); /* 下にずらす */
  transition: all 0.3s ease-out;
}

.fade-slide.show {
  opacity: 1;
  transform: translateY(0);
}
/* アニメーションここまで */


/* main */

.FOIrepo {
  font-family: "Zen Kaku Gothic New", sans-serif!important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8em;
  color: #636363;
  margin: 0 auto;
}

.FOIrepo__figure {
  text-align: right;
  margin-bottom: 50px;
  width: 600px;
}

.FOIrepo__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.FOIrepo__caption {
  display: block;
  font-size: 12px;
  text-align: right;
}


/* top */
.FOIrepo__top {
  width: 600px;
  margin: 100px auto 150px;
}
.FOIrepo__top h1 {
    font-family: "Zen Kaku Gothic New", sans-serif!important;
  font-size: 20px;
  line-height: 2em;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin-bottom: 50px;
}

.FOIrepo__top h1 strong {
 font-size: 32px;
 color: #5671B1;
}


/* レポ  */
.FOIrepo__reason {
  width: 100%;
  margin: 0 auto;
}

.FOIrepo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  margin: 0 auto;
  padding: 150px 0;
}

.FOIrepo__reason h2 {
  font-size: 28px;
  line-height: 1.4em;
  font-family: "Zen Kaku Gothic New", sans-serif!important;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 90px;
  position: relative;
}

.FOIrepo__reason h2 span {
  font-size: 20px;
  font-weight: 400;
}

.FOIrepo__reason h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/FOI_icon.svg);
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 20px;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}

.FOIrepo__text {
  margin-top: 50px;
}



/* ビューティートーク */
.bt-img {
  width: 100%;
  height: auto;
  margin: 80px auto;
}

.FOIrepo__reason--bt {
  margin-bottom: 150px;
}

.FOIrepo__reason--bt h3 {
font-size: 26px;
line-height: 1.4em;
font-family: "Zen Kaku Gothic New", sans-serif!important;
font-weight: 400;
font-style: normal;
text-align: left;
margin-bottom: 90px;
position: relative;
}

.FOIrepo__reason--bt h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #636363;
  margin: 0 auto 20px;
  bottom: -60px;
  left: 0;
}

.FOIrepo__reason--bt h3 span {
  font-size: 20px;
  font-weight: 400;
}

.FOIrepo__reason--bt img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.FOIrepo__reason--profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px auto 50px;
  padding: 30px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  gap: 30px;
}

.FOIrepo__reason-profile__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fff;
  gap: 30px;
}

.FOIrepo__reason-profile__title {
  font-size: 28px!important;
}

.FOIrepo__reason-profile__inner img {
  width: 50%;
  height: auto;
  margin: 0 auto;
  flex: 1;
}

.FOIrepo__reason-profile__inner p {
  flex: 1;
}

.FOIrepo__reason-profile__name {
  text-align: center;
}

.FOIrepo__reason-profile__name span {
  font-size: 24px;
  line-height: 2em;
}

.FOIrepo__reason--profile a {
  text-decoration: underline!important;
}

.FOIrepo__reason--profile a:hover {
  text-decoration: none;
}

.FOIrepo__reason--bt:last-child {
  margin-bottom: 0;
}

/* 過去記事 */
.FOIrepo__article {
  display: flex;
  flex-direction: row;
  width: 600px;
  gap: 20px;
}

.FOIrepo__article div {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 15px;
  width: 100%;
}

.FOIrepo__article div img {
  width: 100%;
  height: auto;
}

.FOIrepo__article div p {
  font-size: 16px;
  line-height: 1.4em;
  margin-top: 10px;
}

.FOIrepo__article a:hover {
  opacity: 0.5;
}


/* SP版 */
@media screen and (max-width: 768px) {

    .p-page_content__inner {
    width: 100%!important;
  }

.link-btn {
  flex-direction: column;
  width: 90%;
  height: 70px;
  text-align: center;
}

.FOIrepo__top,.FOIrepo__inner {
  width: 90%;
}

.FOIrepo__figure {
  width: 100%;
  height: auto;
}

.FOIrepo__article {
  width: 90%;
  flex-direction: column;
}

.FOIrepo__reason h2 {
  font-size: 24px;
}

.sp_only {
  display: block;
}

.FOIrepo__top h1 {
  font-size: 18px;
}

.FOIrepo__top h1 strong {
  font-size: 25px;
  }

.FOIrepo__inner h2 span {
  font-size: 16px;
}

.FOIrepo__reason--bt h3 span {
  line-height: 0.8em;
  font-size: 16px;
}


.FOIrepo__reason-profile__inner {
flex-direction: column;
}

.FOIrepo__reason-profile__inner img {
width: 100%;
height: auto;
}

}