@charset "UTF-8";
/* Scss Document */
/*英字*/
/* Scss Document */
/*naga add*/
/* 下からフェードイン(初期値) */
.js-fadeUp, .js-fadeUpSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 下からフェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0s;
  /*開始を遅らせる */
}

.js-fadeUpSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 左からフェードイン(初期値) */
.js-fadeIn, .js-fadeInSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-100px);
  /* 左に100pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 左からフェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: 0s;
  /* 開始を遅らせる */
}

.js-fadeInSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 用紙サイズの指定（A4） */
@page {
  margin: 8mm;
  size: 210mm 297mm;
  /* A4縦 */
}
@media print {
  /* 全体設定 */
  body {
    -webkit-print-color-adjust: exact;
    /* 印刷時でも背景色や背景画像を表示 */
    width: 1400px;
    /* 印刷時の全ページ幅を統一 */
    zoom: 0.8;
    /* なるべく多くのブラウザで切れないようにするため */
    /*no animation*/
  }
  body header {
    position: absolute !important;
    max-width: 1400px;
    width: 1400px !important;
  }
  body .header--flex {
    width: 1400px !important;
  }
  body .btnBox {
    display: none;
  }
  body #btn_pagetop {
    display: none;
  }
  body .js-fadeUp,
  body .js-fadeIn,
  body .js-fadeUpSlow,
  body .js-fadeInSlow {
    opacity: 1;
  }
  body .js-fadeIn,
  body .js-fadeInSlow {
    transform: translateX(0);
  }
  body .js-fadeUp,
  body .js-fadeUpSlow {
    transform: translateY(0);
  }
  body .js-fadeUp.is-view,
  body .js-fadeIn.is-view,
  body .js-fadeUpSlow.is-view,
  body .js-fadeInSlow.is-view {
    animation-name: none;
  }
}
.header {
  background-color: #ffefe7 !important;
  box-shadow: 0px 3px 3.7px 0.3px rgba(90, 90, 90, 0.1);
}

.mv {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 100px auto 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 80px;
  }
}
.mv__bg {
  width: 100%;
  height: 220px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
  background-image: url("../img/philosophy/bg_tmv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media screen and (max-width: 479px) {
  .mv__bg {
    height: 160px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mv__flex {
  width: 100%;
  height: 220px;
  margin: 0 auto;
  max-width: 1720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .mv__flex {
    height: 160px;
  }
}
.mv__cc {
  font: 400 60px/1.5 "Poiret One", sans-serif;
  color: #ff9a24;
  padding-left: 80px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 1279px) {
  .mv__cc {
    font-size: 48px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__cc {
    font-size: 36px;
  }
}
@media screen and (max-width: 479px) {
  .mv__cc {
    padding-bottom: 60px;
  }
}
.mv__cc br {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv__cc br {
    display: block;
  }
}
.mv__image {
  display: block;
  height: auto;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 1279px) {
  .mv__image {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__image {
    width: 200px;
  }
}
@media screen and (max-width: 479px) {
  .mv__image {
    width: 180px;
  }
}
@media screen and (max-width: 329px) {
  .mv__image {
    width: 48%;
  }
}

/*背景がある場合は、背景を指定するdivでsectionを囲む*/
section:not(section section) {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 120px;
}
@media screen and (min-width: 1441px) {
  section:not(section section) {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1279px) {
  section:not(section section) {
    padding: 0 40px;
  }
}
@media screen and (max-width: 479px) {
  section:not(section section) {
    padding: 0 15px;
  }
}

/*only here*/
body section:first-of-type {
  margin-top: 50px;
}

body section:last-of-type {
  margin-bottom: 200px;
}

.hl__title1 {
  font: 500 32px/1.5 "M PLUS 1", sans-serif;
  color: #1d1d1d;
  display: block;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .hl__title1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 479px) {
  .hl__title1 {
    font-size: 24px;
  }
}

.bg-clr {
  background-image: linear-gradient(to top, #FEF7E5, #FFFAE7, #FEF7E5);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 50px auto 0;
  padding: 0 40px;
}
@media screen and (min-width: 1441px) {
  .bg-clr {
    padding: 0 120px;
  }
}
@media screen and (max-width: 1279px) {
  .bg-clr {
    padding: 0 40px;
  }
}
@media screen and (max-width: 479px) {
  .bg-clr {
    padding: 0 15px;
  }
}
.bg-clr .bg-img {
  padding-top: 60px;
  padding-bottom: 120px;
  text-align: center;
  position: relative;
  background-image: url("../img/philosophy/image01.png"), url("../img/philosophy/image02.png"), url("../img/philosophy/image03.png"), url("../img/philosophy/image04.png"), url("../img/philosophy/image05.png");
  background-size: 225px, 151px, 208px, 364px, 204px;
  background-repeat: no-repeat;
  background-position: top 90px left, top 250px left 150px, top 128px right 28px, top 314px right, bottom left 30px;
  /*@include sp {
    padding-top: 80px;
  };*/
}
@media screen and (min-width: 1441px) {
  .bg-clr .bg-img {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1279px) {
  .bg-clr .bg-img {
    background-size: calc(225px*0.9), calc(151px*0.9), calc(208px*0.9), calc(364px*0.9), calc(204px*0.6);
    background-position: top 95px left, top 300px left, top 60px right, top 280px right, bottom left;
  }
}
@media screen and (max-width: 767px) {
  .bg-clr .bg-img {
    padding-top: 80px;
    padding-bottom: 150px;
    text-align: left;
    background-image: url("../img/philosophy/image04.png"), url("../img/philosophy/image05.png");
    background-size: calc(364px*0.6), calc(204px*0.6);
    background-position: top right, bottom right;
  }
}
.bg-clr .bg-img .intro__paragraph {
  font: 500 18px/3 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
}
@media screen and (max-width: 479px) {
  .bg-clr .bg-img .intro__paragraph {
    font-size: 16px;
    line-height: 2.2em;
  }
}
.bg-clr .bg-img .intro__paragraph > span {
  font: 500 24px/1.5 "M PLUS 1", sans-serif;
  color: #ff9a24;
  position: relative;
}
@media screen and (max-width: 479px) {
  .bg-clr .bg-img .intro__paragraph > span {
    font-size: 20px;
  }
}
.bg-clr .bg-img .intro__paragraph > span:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 4px;
  height: 4px;
  display: inline-block;
  background-color: #ff9a24;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .bg-clr .bg-img .intro__paragraph br:not(.except) {
    display: none;
  }
}
.bg-clr .bg-img .intro__image source, .bg-clr .bg-img .intro__image img {
  max-width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .bg-clr .bg-img .intro__image source, .bg-clr .bg-img .intro__image img {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.secPhilo .step__cc {
  margin: 100px auto 0;
  text-align: center;
  font: 500 24px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #ff9a24;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 479px) {
  .secPhilo .step__cc {
    margin-top: 40px;
  }
}
.secPhilo .step__cc span {
  display: inline-block;
  border-bottom: 4px dotted #ff9a24;
}
@media screen and (max-width: 1279px) {
  .secPhilo .step__cc span {
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 479px) {
  .secPhilo .step__cc {
    font-size: 18px;
  }
}
.secPhilo .step__paragraph {
  margin-top: 50px;
  margin-bottom: 70px;
  font: 500 18px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .secPhilo .step__paragraph {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 479px) {
  .secPhilo .step__paragraph {
    font-size: 16px;
  }
}
.secPhilo .step__flex {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 25px 50px;
}
@media screen and (max-width: 767px) {
  .secPhilo .step__flex {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 479px) {
  .secPhilo .step__flex {
    row-gap: 15px;
  }
}
.secPhilo .step__flex dl {
  margin: 0;
  position: relative;
}
.secPhilo .step__flex dt {
  position: absolute;
  top: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 15px;
  border-radius: 5px;
  font: 500 18px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #fff;
  background-color: #ff9a24;
}
@media screen and (max-width: 479px) {
  .secPhilo .step__flex dt {
    font-size: 16px;
  }
}
.secPhilo .step__flex dd {
  margin-top: 15px;
  margin-left: 10px;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 45px 20px 40px 15px;
  background-color: #fffaec;
}
@media screen and (max-width: 767px) {
  .secPhilo .step__flex dd {
    padding: 40px 20px 40px 20px;
  }
}
@media screen and (max-width: 479px) {
  .secPhilo .step__flex dd {
    padding: 30px 15px 30px 15px;
    font-size: 14px;
  }
}
.secPhilo .photoList {
  margin-top: 130px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
}
@media screen and (max-width: 1279px) {
  .secPhilo .photoList {
    column-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .secPhilo .photoList {
    justify-content: center;
  }
}
.secPhilo .photoList img {
  width: calc(33.333% - 33.333px);
  height: auto;
  object-fit: cover;
  max-width: 100%;
}
@media screen and (max-width: 1279px) {
  .secPhilo .photoList img {
    width: calc(33.333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .secPhilo .photoList img {
    width: auto;
  }
}
.secPhilo .photoList img:nth-of-type(1) {
  position: relative;
  top: -30px;
}
.secPhilo .photoList img:nth-of-type(3) {
  position: relative;
  top: 30px;
}
