@charset "utf-8";

body {
  font-family:'Noto Serif JP', sans-serif, "A-OTF Ryumin Pr6N KL", "A-OTF Ryumin Pr6N" ;
  color: #4d3e3e;
  letter-spacing: 0.2rem;
	line-height: 2;
}
html {
	scroll-behavior: smooth;
}
a {
  text-decoration: none; /* 下線を消す */
  color: inherit;
}
.sp {
  display: none;
}
.tablet {
  display: none;
}
.pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .sp {
    display: block;
  }
  .tablet {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
  .tablet {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*-- 文字関連 --*/
.f-blue {
  color: #58ccc2;
}
.f-green {
  color: #5c98be;
}
.f_red {
  color: #e00c0c;
}
.f-yellow {
  color: #fcff00;
}
.f-110 {
	font-size: 110%;
}
/*-- マージン関連 --*/

.mt1em {
  margin-top: 1em;
}
.mt2em {
  margin-top: 2em;
}
.mt3em {
  margin-top: 3em;
}
.mt4em {
  margin-top: 4em;
}
.mt5em {
  margin-top: 5em;
}
.mt5em {
  margin-top: 6em;
}



/*-- リンク関連 --*/
a {
  transition: opacity .5s; /* アニメーション速度 */
}
/* hover後のスタイル */
a:hover {
  opacity: .5; /* 透過 */
}
/*--------右下に黄色い三角ボタンセット(背景灰色)--------*/
.btn {
  background-color: #f3f2f0;
  display: block;
  height: 58px;
  line-height: 58px;
  position: relative;
  text-align: center;
  width: 220px;
  transition: .3s;
}
@media screen and (max-width: 640px) {
  .btn {
    margin: 60px auto 0;
  }
}
.btn .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffc000;
}
a.btn:hover {
  background-color: #f9f9f9;
}
a.btn:hover .triangle {
  border-bottom: 10px solid #f3f2f0;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 54px; /* hoverしていない時の横幅は0に指定 */
  height: 1px; /* 線の太さ */
  background-color: #848182; /* 線色 */
  transition: 1s; /* アニメーション時間 */
  transform: translateY(-50%) translateX(-50%);
}
.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
/*--------右下に黄色い三角ボタンセット(背景白色)--------*/
.btn2 {
  background-color: #fff;
  display: block;
  height: 58px;
  line-height: 58px;
  position: relative;
  text-align: center;
  width: 220px;
  transition: .3s;
}
@media screen and (max-width: 640px) {
  .btn2 {
    margin: 60px auto 0;
  }
}
.btn2 .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffc000;
}
a.btn2:hover {
  background-color: #f9f9f9;
}
a.btn2:hover .triangle {
  border-bottom: 10px solid #f3f2f0;
}
.btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 54px; /* hoverしていない時の横幅は0に指定 */
  height: 1px; /* 線の太さ */
  background-color: #848182; /* 線色 */
  transition: 1s; /* アニメーション時間 */
  transform: translateY(-50%) translateX(-50%);
}
.btn2:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.wid640 {
  display: flex;
  width: min(90%, 640px);
  margin: 0 auto;
}
.right_alignment {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 640px) {
  .right_alignment {
    display: flex;
    justify-content: center;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ヘッダー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
header {
  width: 100%;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: transparent;
  transition: background-color 0.3s ease;
  /*--- ガラス風にする場合 ---*/
  /*	  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);*/
}
.header.scrolled {
  background-color: #fff;
}
.head_box {
  width: min(90%, 1000px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
h1 {
  z-index: 9999;
}
@media screen and (max-width: 640px) {
  h1 {
    width: 50%;
  }
  h1 img {
    width: 100%;
  }
}
/*グローバルナビ*/
@media screen and (max-width: 959px) {
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
nav ul {
  display: flex;
  justify-content: flex-end;
}
nav li {
  letter-spacing: 0.2rem;
  font-size: 15px;
  transform: translateY(2em);
  animation: textanimation 1s forwards;
  line-height: 2.5em;
}
nav li a {
  text-align: center;
  display: block;
  color: #000;
  padding: 0 15px;
  transition: background-color 0.3s ease, color 0.5s ease-in; /* 複数の指定 */
}
nav li a span {
  display: block;
}
nav li a:hover {
  color: #f3f2f0;
}
/*グローバルナビのアニメーション表示*/
nav li:nth-child(1) {
  animation-delay: 0.2s
}
/* メニュー2 */
nav li:nth-child(2) {
  animation-delay: 0.4s
}
/* メニュー3 */
nav li:nth-child(3) {
  animation-delay: 0.6s
}
/* メニュー4 */
nav li:nth-child(4) {
  animation-delay: 0.8s
}
/* メニュー5 */
nav li:nth-child(5) {
  animation-delay: 1s
}
@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
.hamburger-menu {
  display: none;
}
@media screen and (max-width: 959px) {
  .g-navi {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝スマホ用メニュー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* ハンバーガーアイコン */
.hamburger-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5000;
}
/* ハンバーガーの線 */
.hamburger-icon span {
  width: 30px;
  height: 3px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
  position: absolute;
}
/* 1本目（上の線） */
.hamburger-icon span:nth-child(1) {
  top: 0;
}
/* 2本目（中央の線） */
.hamburger-icon span:nth-child(2) {
  /*  top: 50%;
  transform: translateY(-50%);*/
}
/* 3本目（下の線） */
.hamburger-icon span:nth-child(3) {
  /*  bottom: 0;*/
}
/* フルスクリーンメニュー */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 4000;
}
/* メニューが開いたとき */
.menu.active {
  opacity: 1;
  visibility: visible;
}
/* メニューのリンク */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
}
.menu li {
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .menu li {
    margin: 30px 0 0 0;
  }
}
.menu li span {
  font-size: 16px;
}
.menu a {
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  transition: color 0.3s;
}
.menu a:hover {
  color: #ddd;
}
.hamburger-menu.active .hamburger-icon span {
  background: #fff;
}
/* ハンバーガーアイコンが「×」に変形 */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.hamburger-menu.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝MV＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.mv {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.mv img {
  /*max-width: 1497px;*/
  width: 100%;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 640px) {
  .mv {
    margin: -120px auto 0;
    width: 100%;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝main-index＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
main {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  main {
    margin-top: 70px;
  }
}
.top_box1 h3 {
  margin: 0 auto;
  text-align: center;
  width: min(90%, 652px);
}
@media screen and (max-width: 640px) {
  .top_box1 h3 {
    width: 70%;
  }
}
.top_box1 h3 img {
  width: 100%;
}
.top_box1 .photo-name {
  font-size: 1.1em;
  margin-top: 120px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .top_box1 .photo-name {
    font-size: 1.4vw;
    margin-top: 70px;
  }
}
.top_box1 .concept_box {
  width: min(90%, 800px);
  font-size: 30px;
  margin: 90px auto 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  .top_box1 .concept_box {
    font-size: 3vw;
  }
}
.top_box1 .concept_box::after {
  position: absolute;
  content: "』";
  bottom: 0;
  right: 0;
}
.top_box1 .concept_box::before {
  position: absolute;
  content: "『";
  top: 0;
  left: 0;
}
.top_box1 .concept {
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1.8em;
}
.top_box1 .youtube--01 {
  margin: 70px auto 0;
  width: min(80%, 920px);
  aspect-ratio: 16/9;
}
.top_box1 .youtube--01 iframe {
  box-shadow: 40px 40px #f3f2f0;
}
@media screen and (max-width: 640px) {
  .top_box1 .youtube--01 iframe {
    box-shadow: 25px 25px #f3f2f0;
  }
}
.top_box1 .cinema {
  width: min(65%, 640px);
  margin: 135px auto 0;
}
@media screen and (max-width: 640px) {
  .top_box1 .cinema {
    margin: 70px auto 0;
  }
}
.top_box1 .cinema img {
  width: 100%;
}
.top_box1 .about {
  display: flex;
  width: min(90%, 900px);
  margin: 190px auto 0;
  gap: 100px;
}
@media screen and (max-width: 959px) {
  .top_box1 .about {
    margin: 85px auto 0;
    display: block;
  }
}
.top_box1 .about .thoughts {
  writing-mode: vertical-rl;
  height: 410px;
}
@media screen and (max-width: 959px) {
  .top_box1 .about .thoughts {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
}
@media screen and (max-width: 640px) {
  .top_box1 .about .thoughts {
    height: 70vw;
  }
}
.top_box1 .about .thoughts h4 {
  font-size: 24px;
}
@media screen and (max-width: 640px) {
  .top_box1 .about .thoughts h4 {
    font-size: 3.5vw;
  }
}
.top_box1 .about .thoughts p {
  margin-right: 65px;
  line-height: 175%;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 640px) {
  .top_box1 .about .thoughts p {
    margin-right: 50px;
    font-size: 3vw;
  }
}
.top_box1 .about .thoughts_photo {
  margin: 0 auto;
  width: 80%;
}
.top_box1 .about .thoughts_photo p {
  margin-top: 65px;
}
.top_box1 .about .thoughts_photo img {
  width: 100%;
}
.top_box1 .thoughts_photo .btn {
  display: block;
  margin: 0 auto;
  width: 200px;
}
@media screen and (max-width: 959px) {
  .top_box1 .about .thoughts_photo img {
    margin: 80px auto 0;
    width: 100%;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝topics & info＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.topics {
  margin: 90px auto 0;
  width: min(90%, 1000px);
  background-color: #f3f2f0;
  padding: 50px 50px 50px 100px;
}
@media screen and (max-width: 959px) {
  .topics {
    margin: 140px auto 0;
    padding: 70px 50px;
    width: 100%;
  }
}
.topics_box {
  display: flex;
  gap: 85px;
}
.topics_flex_column {
  display: flex;
  flex-direction: column;
}
.topics_end {
  align-items: flex-end;
  margin-top: auto;
}
@media screen and (max-width: 959px) {
  .topics_end {
    display: none;
  }
}
.topics_box ul {
  letter-spacing: 0.3em;
  line-height: 1.8em;
}
.topics_box ul li {
  line-height: 2.1em;
}
.topics_box ul span {
  margin-left: 7rem;
  text-indent: -7rem;
  display: inline-block;
}
.topics_box li a {
  display: block;
}
.topics_box li a:hover {
  color: #666;
}
@media screen and (max-width: 959px) {
  .topics_box {
    display: block;
  }
  .topics_box ul li {
    /*    margin-left: 6rem;
    text-indent: -6rem;*/
    margin-bottom: 30px;
  }
  .topics_box ul span {
    /*    margin-left: 6rem;
    text-indent: -6rem;*/
    display: block;
  }
  .topics_box ul {
    margin-top: 60px;
  }
  .topics_box .tablet_more_btn a {
    margin: 50px auto;
    display: block;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝BANNER＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.banner {
  margin: 30px auto 0;
  width: min(90%, 1000px);
}
@media screen and (max-width: 959px) {
  .banner {
    width: 98%;
  }
}
.banner img {
  width: 100%;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝features 私たちの特徴について＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.features {}
.features_cont {
  margin-top: 170px;
  width: 100%;
}
.features h2 {
  font-size: 41px;
  text-align: center;
}
.features .scroll-border {
  position: relative;
  top: 10px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.features .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #cac8c8;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
.features .features_box {
  display: flex;
  width: min(90%, 900px);
  margin: -358px auto 0;
}
@media screen and (max-width: 640px) {
  .features .features_box {
    margin: -294px auto 0;
  }
}
.features_box .features_txt h3 {
  font-size: 35px;
  color: #4d3e3e;
}
@media screen and (max-width: 640px) {
  .features_box .features_txt h3 {
    font-size: 1.2rem;
  }
}
.features_box .features_btn {
  margin: 70px 0 0 0;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 640px) {
  .features_box .features_btn {
    width: 80%;
    font-size: 2vw;
    display: block flow;
  }
  .features_box .features_btn .btn {
    width: 100%;
  }
}
.features_txt {
  width: 50%;
}
.features_exp {
  width: 50%;
  font-size: 14px;
  color: #858282;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .features_exp {
    font-size: 1.5vw;
  }
}
.features_exp p {
  align-items: flex-end;
  margin: auto 0 0 auto;
  text-align: left;
}
.features .wrap {
  overflow: hidden;
  background: #f3f2f0;
}
.features .features_box_bg {
  width: 100%;
  background: #fff;
  border-bottom-left-radius: 1000px 100px;
  border-bottom-right-radius: 1000px 100px;
  height: 100px;
}
.features .features6box {
  background: #f3f2f0;
  padding: 100px 0 150px 0;
  position: sticky;
  z-index: 100;
}
@media screen and (max-width: 640px) {
  .features .features6box {
    padding: 0 0 115px 0;
  }
}
.features .point_box {
  background: #f3f2f0;
  padding-top: 0;
  width: min(90%, 1000px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .features .point_box {
    display: block;
  }
}
.features .point_box .point {
  width: calc((100% - 70px) / 3);
  margin-bottom: 60px;
}
@media screen and (max-width: 959px) {
  .features .point_box .point {
    width: calc((100% - 70px) / 2);
    margin-bottom: 70px
  }
}
@media screen and (max-width: 640px) {
  .features .point_box .point {
    width: 100%;
  }
}
.features .point_tit h4 {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .features .point_tit h4 {
    width: 25%;
    margin-right: 30px;
  }
  .features .point_tit h4 img {
    width: 100%;
  }
}
.features .point_tit .point_img {
  margin-top: 45px;
}
@media screen and (max-width: 640px) {
  .features .point_tit .point_img {
    width: 75%;
  }
}
.features .point_tit .point_img img {
  width: 100%;
  text-align: center;
}
.features .point_box h5 {
  text-align: center;
  margin-top: 45px;
  font-size: 25px;
  color: #4d3e3e;
}
.features .point_box .point_txt {
  color: #4d3e3e;
  margin-top: 45px;
}
.features .point_box .features6box_exp a, .features .point_box .features6box_exp a:visited {
  color: #0982a5;
  margin-top: 1em;
}
.features .point_box .features6box_exp a:hover {}
@media screen and (max-width: 640px) {
  .features .point .point_tit {
    display: flex; /* Flexboxを有効にする */
    align-items: center;
    justify-content: space-between;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝introduction 撮影プランのご紹介＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.introduction {}
.introduction .wrap {
  overflow: hidden;
  background: #f3f2f0;
}
.introduction .introduction_box_bg {
  width: 100%;
  background: #fff;
  border-top-left-radius: 1000px 100px;
  border-top-right-radius: 1000px 100px;
  height: 100px;
}
.introduction_cont {
  margin-top: 170px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .introduction_cont {
    margin-top: 100px;
  }
}
.introduction h2 {
  font-size: 41px;
  text-align: center;
}
.introduction .scroll-border {
  position: relative;
  top: 10px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.introduction .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #cac8c8;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
.introduction .introduction_box {
  display: flex;
  width: min(90%, 900px);
  margin: -360px auto 0;
}
@media screen and (max-width: 640px) {
  .introduction .introduction_box {
    margin: -294px auto 0;
  }
}
.introduction_box .introduction_txt h3 {
  font-size: 35px;
  color: #4d3e3e;
}
@media screen and (max-width: 640px) {
  .introduction_box .introduction_txt h3 {
    font-size: 1.2rem;
  }
}
.introduction_box .introduction_btn {
  margin: 70px 0 0 0;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 640px) {
  .introduction_box .introduction_btn {
    width: 80%;
    display: inline grid;
    font-size: 2vw;
  }
  .introduction_box .introduction_btn .btn {
    width: 100%;
  }
}
.introduction_txt {
  width: 50%;
}
.introduction_exp {
  width: 50%;
  font-size: 14px;
  color: #858282;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .introduction_exp {
    font-size: 1.5vw;
  }
}
.introduction_exp p {
  align-items: flex-end;
  margin: auto 0 0 auto;
  text-align: left;
}
/*各カエゴリー*/
.introduction .paln_photo {
  width: min(90%, 826px);
  margin: 100px auto 0;
}
.introduction .paln_photo img {
  width: 100%;
}
.introduction .paln_tit {
  width: min(90%, 915px);
  margin: 70px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: self-end;
}
@media screen and (max-width: 640px) {
  .introduction .paln_tit {
    margin: 35px auto 0;
  }
}
.introduction .paln_tit h4 {
  font-size: 33px;
}
@media screen and (max-width: 959px) {
  .introduction .paln_tit h4 {
    font-size: 29px;
  }
}
@media screen and (max-width: 640px) {
  .introduction .paln_tit h4 {
    font-size: 26px;
    padding-left: 2.3em;
    text-indent: -1.3em;
  }
}
@media screen and (max-width: 420px) {
  .introduction .paln_tit h4 {
    font-size: 22px;
  }
}
.introduction .paln_tit h4::before {
  margin-top: 10px;
  display: inline-block;
  background-position: center;
  margin-right: 20px;
  vertical-align: sub;
}
@media screen and (max-width: 420px) {
  .introduction .paln_tit h4::before {
    margin-top: 0;
  }
}
.introduction .paln_tit h4.paln_01::before {
  content: url("../img/top/palan_ico_01.png");
}
.introduction .paln_tit h4.paln_02::before {
  content: url("../img/top/palan_ico_02.png");
}
.introduction .paln_tit h4.paln_03::before {
  content: url("../img/top/palan_ico_03.png");
}
.introduction .paln_tit h4.paln_04::before {
  content: url("../img/top/palan_ico_03.png");
}
.introduction .paln_tit h4.paln_05::before {
  content: url("../img/top/palan_ico_03.png");
}
@media screen and (max-width: 959px) {
  .introduction .paln_tit p {
    width: 30%;
  }
  .introduction .paln_tit img {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .introduction .paln_tit p {
    width: 20%;
  }
}
.introduction .paln_cont {
  width: min(75%, 800px);
  margin: 50px auto 0; /*撮影プランのマージン部分*/
}
.introduction p.m-and-p {
  font-family: 'Candara', Arial, Helvetica, 'sans-serif';
  border: solid 1px #bebcbd;
  color: #4d3e3e;
  font-size: 16px;
  padding: 9px 11px;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .introduction p.m-and-p {
    font-size: 10px;
  }
}
.introduction .paln_txt {
  margin-top: 40px;
}
.introduction .paln_cont_btn {
  margin-top: 70px;
}
@media screen and (max-width: 640px) {
  .introduction .paln_cont_btn {
    margin-top: 40px;
  }
}
.introduction .paln_cont_btn .btn_rectangle {
  background-color: #fff;
  display: block;
  height: 58px;
  line-height: 58px;
  position: relative;
  text-align: center;
  width: 100%;
  transition: .3s;
  border: solid 1px #999;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .introduction .paln_cont_btn .btn_rectangle {
    font-size: 17px;
    height: auto;
    line-height: normal;
    padding: 10px 20px;
  }
}
.introduction .paln_cont_btn .btn_rectangle:hover {
  background-color: #f3f2f0;
}
.introduction .paln_cont_btn .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffc000;
}
a.btn_rectangle:hover .triangle {
  border-bottom: 10px solid #f3f2f0;
}
.introduction .b_btn_box {
  margin-top: 90px;
}
@media screen and (max-width: 640px) {
  .introduction .b_btn_box {
    margin-top: 70px;
  }
}
.introduction .b_btn {
  margin: 70px auto 0;
  width: min(98%, 916px);
  border: solid 1px #dedcdc;
  padding: 25px 20px;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 167px auto auto;
}
@media screen and (max-width: 640px) {
  .introduction .b_btn {
    padding: 20px 0 15px 15px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0px;
    grid-template-columns: 30% 70%;
  }
}
.introduction .b_btn .b_btn_img {
  position: relative;
  width: 100%;
  bottom: -24px;
}
@media screen and (max-width: 640px) {
  .introduction .b_btn .b_btn_img {
    width: 100%;
    grid-row: span 2 / span 2;
    bottom: 0;
    position: relative;
  }
}
.introduction .b_btn .b_btn_img img {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .introduction .b_btn .b_btn_img img {
    top: 50%;
    transform: translate(0, -50%);
  }
}
.introduction .b_btn .b_btn_txt {
  margin-left: 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 1.5vw;
}
@media screen and (max-width: 640px) {
  .introduction .b_btn .b_btn_txt {
    margin-left: 0;
    /* width: 100%; */
    height: auto;
    line-height: normal;
    font-size: 3vw;
    text-align: center;
  }
}
.introduction .b_btn p:nth-child(3) {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 640px) {
  .introduction .b_btn p:nth-child(3) {
    margin: 0 auto;
  }
}
.introduction .btn {
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .introduction .btn {
    width: 150px;
    margin: 0;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝opus 今までに作品について＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.opus {}
.opus_cont {
  margin-top: 170px;
  width: 100%;
}
.opus h2 {
  font-size: 41px;
  text-align: center;
}
.opus .scroll-border {
  position: relative;
  top: 10px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.opus .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #cac8c8;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
.opus .opus_box {
  display: flex;
  width: min(90%, 900px);
  margin: -329px auto 0;
}
/*@media screen and (max-width: 640px) {
  .opus .opus_box {
    margin: -265px auto 0;
  }
}*/
.opus_box .opus_txt h3 {
  font-size: 35px;
  color: #4d3e3e;
}
@media screen and (max-width: 640px) {
  .opus_box .opus_txt h3 {
    font-size: 1.2rem;
  }
}
.opus_box .opus_btn {
  margin-top: 70px;
}
@media screen and (max-width: 640px) {
  .opus_box .opus_btn {
    width: 80%;
  }
  .opus_box .opus_btn .btn {
    width: 100%;
    font-size: 2vw;
  }
}
.opus_txt {
  width: 50%;
}
.opus_exp {
  width: 50%;
  font-size: 14px;
  color: #858282;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .opus_exp {
    font-size: 1.5vw;
  }
}
.opus_exp p {
  align-items: flex-end;
  margin: auto 0 0 auto;
  text-align: left;
}
.opus .opus_wrap {
  padding: 70px 0 30px;
  margin: 70px auto 0;
  width: min(100%, 923px);
  background-color: #f3f2f0;
  position: sticky;
  z-index: 100;
}
/*@media screen and (max-width: 640px) {
  .opus .opus_wrap {
    width: 100%;
  }
}*/
.opus .opus_wrap_cont {
  margin: 65px auto 70px;
  width: 100%;
  width: min(90%, 820px);
}
.opus .opus_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .opus .opus_tit {
    justify-content: flex-start;
  }
}
.opus .opus_ico {
  margin-right: 40px;
}
@media screen and (max-width: 640px) {
  .opus .opus_ico {
    margin-right: 10px;
  }
}
.opus .opus_tit h4 {
  color: #4d3e3e;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 959px) {
  .opus .opus_tit h4 {
    font-size: 20px;
  }
}
.opus .opus_tit h4::before {
  content: url("../img/top/opus_ico03.png");
  margin-top: 10px;
  display: inline-block;
  background-position: center;
  margin-right: 20px;
}
.opus .opus_tit h4::after {
  content: url("../img/top/opus_ico02.png");
  margin-top: 10px;
  display: inline-block;
  background-position: center;
  margin-left: 20px;
}
.opus p.m-and-p_pc {
  font-family: 'Candara', Arial, Helvetica, 'sans-serif';
  border: solid 1px #bebcbd;
  color: #4d3e3e;
  font-size: 16px;
  padding: 9px 11px;
  display: inline-block;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .opus p.m-and-p_pc {
    display: none;
  }
}
.opus p.m-and-p_sp {
  display: none;
}
@media screen and (max-width: 959px) {
  .opus p.m-and-p_sp {
    font-family: 'Candara', Arial, Helvetica, 'sans-serif';
    border: solid 1px #bebcbd;
    color: #4d3e3e;
    font-size: 13px;
    padding: 7px 8px;
    white-space: nowrap;
    display: inline-block;
	margin-top: 20px;
  }
}
/*@media screen and (max-width: 640px) {
  .opus p.m-and-p {
    font-size: 11px;
    padding: 6px 8px;
  }
}*/
.opus .youtube--02 {
  margin: 35px auto 0;
  width: 100%;
  aspect-ratio: 16/9;
}
.opus .opus_over {
  margin-top: 35px;
  line-height: 2;
}
.opus .opus_separator img {
  width: 100%;
}
.opus ul.opus_photo {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.opus ul.opus_photo li {
  width: 32%;
}
.opus ul.opus_photo li img {
  width: 100%;
}
.opus .opus_btn {
  margin: 70px 0 0 0;
  display: inline grid;
  align-items: stretch;
}
.opus .opus_btn2 {
  margin: 70px 0 0 0;
}
.opus .btn_rectangle {
  background-color: #fff;
  display: block;
  height: 58px;
  line-height: 58px;
  position: relative;
  text-align: center;
  width: 100%;
  transition: .3s;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .opus .btn_rectangle {
    font-size: 17px;
    height: auto;
    line-height: normal;
    padding: 10px 20px;
  }
}
.opus .btn_rectangle:hover {
  background-color: #ccc;
}
.opus .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffc000;
}
a.btn_rectangle:hover .triangle {
  border-bottom: 10px solid #f3f2f0;
}
@media screen and (max-width: 600px) {
  .opus .opus_tit {
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
  }
  .opus .opus_ico {
    margin-right: 10px;
    width: 6%;
  }
  .opus .opus_ico img {
    width: 100%;
  }
  .opus .opus_tit h4 {
    justify-content: flex-start;
    width: 80%;
  }
  .opus p.m-and-p {
    margin-top: 20px;
    margin-left: inherit;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝lesson 撮影・デザイン レッスン＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.lesson {}
.lesson_cont {
  margin-top: 170px;
  width: 100%;
}
.lesson h2 {
  font-size: 41px;
  text-align: center;
}
.lesson .scroll-border {
  position: relative;
  top: 10px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.lesson .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #cac8c8;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
.lesson .lesson_box {
  display: flex;
  width: min(90%, 900px);
  margin: -329px auto 0;
}
@media screen and (max-width: 640px) {
  .lesson .lesson_box {
    margin: -265px auto 0;
  }
}
.lesson_box .lesson_txt h3 {
  font-size: 35px;
  color: #4d3e3e;
}
@media screen and (max-width: 640px) {
  .lesson_box .lesson_txt h3 {
    font-size: 1.2rem;
  }
}
.lesson_box .lesson_btn {
  margin: 70px 0 0 0;
  /*display: flex;*/
  align-items: stretch;
}
@media screen and (max-width: 640px) {
  .lesson_box .lesson_btn {
    width: 80%;
    font-size: 2vw;
  }
  .lesson_box .lesson_btn .btn {
    width: 100%;
  }
}
.lesson_txt {
  width: 50%;
}
.lesson_exp {
  width: 50%;
  font-size: 14px;
  color: #858282;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .lesson_exp {
    font-size: 1.5vw;
  }
}
.lesson_exp p {
  align-items: flex-end;
  margin-top: auto;
  text-align: right;
}
.lesson .lesson_wrap {
  padding: 70px 0;
  margin: 70px auto 0;
  width: min(100%, 923px);
  background-color: #f3f2f0;
  position: sticky;
  z-index: 100;
}
.lesson .lesson_wrap .lesson_wrap2 {
  margin: 0 auto;
  width: min(90%, 788px);
}
.lesson .lesson_wrap .lesson_img img {
  width: 100%;
}
.lesson .lesson_wrap h3 {
  margin-top: 100px;
  font-size: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lesson .lesson_wrap h3::before {
  content: url("../img/top/lesson_ico_h3.png");
  margin: 10px 20px 0 0;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .lesson .lesson_wrap h3 {
    margin-top: 80px;
    font-size: 20px;
  }
  .lesson .lesson_wrap h3::before {
    transform: scale(0.6);
  }
}
.lesson ul.lesson_check {
  margin: 80px auto 0;
  width: min(90%, 500px);
}
.lesson ul.lesson_check li {
  font-size: 23px;
  line-height: 2.5em;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 640px) {
  .lesson ul.lesson_check li {
    font-size: 3vw;
    padding-left: 1em;
    display: flex;
    align-items: center;
  }
}
.lesson ul.lesson_check li::before {
  content: url("../img/top/lesson_ico_li.png");
  margin: 10px 10px 0 0;
}
.lesson ul.lesson_tag {
  display: flex;
  margin: 65px auto 0;
  width: min(90%, 500px);
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .lesson ul.lesson_tag {
    justify-content: space-between;
  }
}
.lesson ul.lesson_tag li {
  font-family: 'Candara', Arial, Helvetica, 'sans-serif';
  border: solid 1px #bebcbd;
  color: #4d3e3e;
  font-size: 16px;
  padding: 9px 11px;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .lesson ul.lesson_tag li {
    font-size: 2vw;
    padding: 1.2vw 1.5vw;
  }
}
.lesson p {
  color: #4d3e3e;
  font-size: 14px;
  margin: auto 0 0 auto;
  text-align: left;
}
.lesson p.learn {
  font-size: 14px;
  margin: 60px auto 0;
  width: 87%;
}
@media screen and (max-width: 640px) {
  .lesson p {
    font-size: 1.5vw;
  }
}
.lesson .lesson_btn2 {
  margin: 70px 0 0 0;
}
.lesson .btn_rectangle {
  background-color: #fff;
  display: block;
  height: 58px;
  line-height: 58px;
  position: relative;
  text-align: center;
  width: 100%;
  transition: .3s;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .lesson .btn_rectangle {
    font-size: 17px;
    height: auto;
    line-height: normal;
    padding: 10px 20px;
  }
}
.lesson .btn_rectangle:hover {
  background-color: #ccc;
}
.lesson .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffc000;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝review お客様のレビュー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.review {}
.review_cont {
  margin-top: 170px;
  width: 100%;
}
.review h2 {
  font-size: 41px;
  text-align: center;
}
.review .scroll-border {
  position: relative;
  top: 10px;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.review .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #cac8c8;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
.review .review_box {
  display: flex;
  width: min(90%, 900px);
  margin: -329px auto 0;
}
/*@media screen and (max-width: 640px) {
  .review .review_box {
    margin: -265px auto 0;
  }
}*/
.review_box .review_txt h3 {
  font-size: 35px;
  color: #4d3e3e;
}
@media screen and (max-width: 640px) {
  .review_box .review_txt h3 {
    font-size: 1.2rem;
  }
}
.review_box .review_btn {
  margin: 70px 0 0 0;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 640px) {
  .review_box .review_btn {
    width: 80%;
    display: inline grid;
    font-size: 2vw;
  }
  .review_box .review_btn .btn {
    width: 100%;
  }
}
.review_txt {
  width: 50%;
}
.review_exp {
  width: 50%;
  font-size: 14px;
  color: #858282;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .review_exp {
    font-size: 1.5vw;
  }
}
.review_exp p {
  align-items: flex-end;
  margin: auto 0 0 auto;
  text-align: left;
}
.review .review_wrap {
  padding: 10px 0 30px;
  margin: 70px auto 0;
  width: min(100%, 923px);
  background-color: #f3f2f0;
  position: sticky;
  z-index: 100;
}
.review .review_wrap2 {
  width: min(90%, 820px);
  margin: 105px auto 0;
}
.review .review_wrap .m-and-p {
  font-family: 'Candara', Arial, Helvetica, 'sans-serif';
  border: solid 1px #bebcbd;
  color: #4d3e3e;
  font-size: 16px;
  padding: 9px 11px;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .review .review_wrap .m-and-p {
    font-family: 'Candara', Arial, Helvetica, 'sans-serif';
    border: solid 1px #bebcbd;
    color: #4d3e3e;
    font-size: 13px;
    padding: 5px 4px;
    display: inline-block;
  }
}
.review .review_wrap h3 {
  color: #966524;
  font-size: 29px;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 640px) {
  .review .review_wrap h3 {
    color: #966524;
    font-size: 20px;
    margin: 20px 0 0 0;
  }
}
.review .review_tit {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.review .review_photo {
  margin-right: 64px;
}
@media screen and (max-width: 640px) {
  .review .review_photo {
    margin-right: 20px;
  }
}
.review .review_voice {
  margin: 50px 0 0;
  letter-spacing: 0.5rem;
  font-family: "Zen Kurenaido", "Yomogi", "A-OTF Ryumin Pr6N KL", "A-OTF Ryumin Pr6N", 'Noto Serif JP', 'sans-serif';
}
/*.review .review_btn {
  margin-top: 70px;
}*/
.review .btn_rectangle {
  margin: 70px auto 0;
  background-color: #fff;
  display: block;
  height: 58px;
  line-height: 58px;
  position: relative;
  text-align: center;
  width: 90%;
  transition: .3s;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .review .btn_rectangle {
    font-size: 17px;
    height: auto;
    line-height: normal;
    padding: 10px 20px;
  }
}
.review .btn_rectangle:hover {
  background-color: #ccc;
}
.review .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffc000;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝top_box2 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
footer h3 {
  margin: 150px auto 0;
  width: min(90%, 650px);
}
@media screen and (max-width: 640px) {
  footer h3 {
    width: 60%;
  }
}
footer p.foot_logo {
  margin: 90px auto 0;
  width: min(90%, 450px);
}
@media screen and (max-width: 640px) {
  footer p.foot_logo {
    width: 52%;
  }
}
footer h3 img, footer p.foot_logo img {
  width: 100%;
}
footer .g_map {
  margin: 100px auto 0;
  position: relative;
  width: min(90%, 890px);
  padding-top: 40%;
  height: 0;
}
footer .g_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  footer .g_map iframe {
    height: 80vw;
  }
}
footer .address {
  margin: 75px auto 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: min(90%, 890px);
}
@media screen and (max-width: 640px) {
  footer .address {
    margin: 50vw auto 0;
    display: block;
    width: 97%;
  }
}
footer .address dl {
  border-left: solid 1px #cac8c8;
  padding: 10px 10px 10px 25px;
}
@media screen and (max-width: 640px) {
  footer .address dl {
    padding: 0 0 0 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
  }
}
footer .address dl dt {
  color: #4d3e3e;
  font-size: 25px;
}
@media screen and (max-width: 640px) {
  footer .address dl dt {
    width: 85px;
    font-size: 18px;
    margin-right: 10px;
  }
}
footer .address dd {
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  footer .address dd {
    font-size: 13px;
  }
}
footer .catchphrase {
  margin: 100px auto 0;
  width: min(90%, 890px);
}
footer .catchphrase p {
  text-align: center;
  font-size: 25px;
}
@media screen and (max-width: 640px) {
  footer .catchphrase p {
    font-size: 13px;
  }
}
.reservation_btn .btn_rectangle {
  margin: 70px auto 0;
  background-color: #e9e105;
  display: block;
  height: 58px;
  line-height: 58px;
  position: relative;
  text-align: center;
  width: min(90%, 890px);
  transition: .3s;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .reservation_btn .btn_rectangle {
    font-size: 17px;
    height: auto;
    line-height: normal;
    padding: 10px 20px;
  }
}
.reservation_btn .btn_rectangle:hover {
  background-color: #d9d560;
}
.reservation_btn .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 15px solid transparent;
  border-bottom: 15px solid #fff;
}
footer ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(70%, 450px);
  margin: 107px auto 0;
}
@media screen and (max-width: 640px) {
  footer ul li {
    width: 40%;
  }
}
footer ul img {
  width: 100%;
}
footer .copyright {
  border-top: solid 1px #cac8c8;
  margin: 100px auto 0;
  padding: 80px 0;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  footer .copyright {
    font-size: 9px;
  }
}
