@charset "UTF-8";
/*-- メディアクエリ --*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .is-sp {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .is-sp {
    display: none;
  }
}

/*------------------------------
global > color
------------------------------*/
:root {
  --c-white: #fff;
  --c-title: #191B1C;
  --c-text: #454C53;
  --c-accent: #62A2AB;
}

/*------------------------------
global > font
------------------------------*/
:root {
  --font-ja: "Zen Kaku Gothic Antique", sans-serif;
  --font-en: "Barlow", sans-serif;
}


/*------------------------------
foundation > base
------------------------------*/
html {
  font-size: 62.5%;
  font-family: var(--font-ja);
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  color: var(--c-text);
  line-height: 1.7;
}

img {
  width: 100%;
  height: auto;
}

body {
  background: url(../../assets/img/bg.jpg) center top / cover no-repeat;

}

@media (min-width: 700px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.u-bold {
  font-weight: bold;
}

/*------------------------------
layout > container
------------------------------*/
.l-container {
  max-width: 104rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-container-s {
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}


/*------------------------------
component > inview
------------------------------*/
/* フェードイン(初期値) */
.js-fadeIn {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
}

/* フェードアップ */
.js-fadeUp {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeUp02 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}


/* フェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
}

/* フェードアップ(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp02.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/*
ヘッダー
---------------------------*/
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  padding-top: 3rem;

}

.header-logo {
  max-width: 14.8rem;
  margin-left: 6rem;
}

@media screen and (max-width: 767px) {
  .header-logo {
    max-width: 10rem;
    margin-left: 2rem;
  }
}

/*------------------------------
メインビジュアル
------------------------------*/
.mv {
  padding: 12.3rem 0 10rem;
  background: url(../../assets/img/mv-bg.png) bottom right / cover no-repeat;
}

@media screen and (max-width: 767px) {
  .mv {
    padding-bottom: 8rem;
  }
}

.mv .l-container {
  margin-top: 5rem;
}

.mv-title {
  max-width: 36.5rem;
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .mv-title {
    max-width: 30.5rem;
  }
}

@media screen and (max-width: 767px) {
  .mv-title {
    max-width: 20.5rem;
  }
}


.mv-text {
  margin-top: 3.2rem;
  font-size: clamp(15px, 1.4vw, 1.8rem);
  line-height: 2.2;
  font-weight: 400;
}

.mv-text span {
  font-weight: bold;
  color: var(--c-accent);
}

/*
スライダー
---------------------------*/
.slider {
  overflow: hidden;
}

.slider img {
  height: auto;
  width: 100%;
  border-radius: 1rem;
}

.slide-item {
  margin-right: 4rem;
}

@media screen and (max-width: 767px) {
  .slide-item {
    margin-right: 3rem;
  }
}

.slide-item:nth-child(odd) {
  margin-top: 4rem;
}

/*
フォトグラファー
---------------------------*/
.photo-graphers__list {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-bottom: .1rem dotted #D4D4D4;
}

@media screen and (min-width: 768px) {
  .photo-grapher {
    display: flex;
    gap: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;
    align-items: center;
  }
}

.photo-grapher img {
  max-width: 19rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .photo-grapher img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .photo-graphers__list-body {
    flex: 1;
  }
}

.photo-graphers__list-body h2 {
  color: var(--c-title);
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .photo-graphers__list-body h2 {
    margin-top: 1.5rem;
    text-align: center;
  }
}

.photo-graphers__list-body h2 span {
  display: block;
  line-height: 1;
  color: var(--c-accent);
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: .1em;
}

.photo-graphers__list-body p {
  margin-top: 2rem;
  line-height: 1.65;
  font-size: clamp(14px, 1.4vw, 1.6rem);
}

.photo-graphers__list:nth-child(odd) .photo-grapher {
  flex-direction: row-reverse;
}

.photo-graphers__list:last-child {
  border-bottom: none;
}

.gallery-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .gallery-lists {
    margin-top: 4rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-list img {
  border-radius: 1rem;
}

/*
アクセス
---------------------------*/
.about {
  background: url(../../assets/img/access-bg.png) top left / cover no-repeat;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .about {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
}

.about-container {
  padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .about-container {
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: space-between;
  }
}

.about-body {
  line-height: 2;
  flex: 1;
}

.about-body p:nth-child(n + 2) {
  margin-top: 2rem;
}

.about-body span {
  font-size: clamp(12px, 2vw, 14px);
}


.about h2 {
  letter-spacing: .01em;
  margin-top: min(5vw, 7.2rem);
  font-weight: bold;
  font-size: clamp(20px, 3vw, 3.5rem);
  line-height: 1.3;
  margin-bottom: 4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about-img {
    margin-top: 3.2rem;
  }
}

.about-tel img {
  max-width: 1.6rem;
}

.about-img {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .about-img {
    width: 24%;
  }
}

.footer {
  padding: 1.6rem 0;
  background: var(--c-text);
  position: absolute;
  width: 100%;
}

.copyright {
  display: block;
  color: var(--c-white);
  font-size: 1rem;
  text-align: center;
  line-height: 2.2;
  letter-spacing: .1em;
}


/*
指名料
---------------------------*/
.memo {
  padding-top: 3rem;
  padding-bottom: 6rem;
  border-top: .1rem dotted #ddd;
}

.memo-text {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 2rem;
}

.memo p span {
  line-height: 1.7;
  display: inline-block;
  font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
  .memo-item {
    display: flex;
    align-items: center;
  }
}

.memo-item img {
  display: block;
  max-width: 3rem;
  margin-right: 1rem;
}

@media screen and (max-width: 767px) {
  .memo-item img {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .memo-item img {
    margin-left: 1.5rem;

  }
}

.memo-item a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: underline;
}


/* 2025-03-18追加 */
.p-photographer-profile-button {
  margin-top: 2.4rem;
}

.p-photographer-profile-button .c-button {
  display: block;
}

.p-photographer-profile-button a {
  font-size: clamp(min(3.2vw, 12px), 1.4vw, 14px);
  padding-inline: 10px;
  padding-block: 2px;
}

@media screen and (min-width: 768px) {
  .p-photographer-profile-button a {
    padding-inline: 16px;
    padding-block: 4px;
  }
}

.p-photographer-profile-button {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-photographer-profile-button {
    justify-content: flex-start;
  }
}

.p-photographer-profile-button .c-button:nth-child(1) a,
.p-photographer-profile-button .c-button:nth-child(2) a {
  display: block;
  background-color: #fff;
  border: solid 1px var(--c-accent);
  color: var(--c-accent);
  transition: .3s;
}

.p-photographer-profile-button .c-button:nth-child(2) a {
  display: block;
  background-color: var(--c-accent);
  color: #fff;
  transition: .3s;
}


.p-photographer-profile-button .c-button:nth-child(2) a:after,
.p-photographer-profile-button .c-button:nth-child(1) a:after,
.p-photographer-profile-button .c-button:nth-child(1) a:before,
.p-photographer-profile-button .c-button:nth-child(2) a:before {
  display: none;
}

.p-photographer-profile-button .c-button:nth-child(1) a:hover,
.p-photographer-profile-button .c-button:nth-child(2) a:hover {
  filter: brightness(.9);
}

/*------------------------------
2024-04-16追加
------------------------------*/

input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* font-familyを継承しないので、継承させる */
  font-family: inherit;
  /* iOSの角丸をリセット */
  border-radius: 0;
  /* box-size */
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px;
  /* 文字色を親から継承 */
  color: inherit;
  box-shadow: none;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

input[type=submit] {
  -webkit-appearance: none;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  /*-webkit-appearance: none;
   margin: 0;*/
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* input */
input {
  /* inputの枠線を消す */
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
  box-shadow: none;
}

select {
  /* 右端の▼を消す */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
  box-shadow: none;
}
.contact-message {
	margin-block: 40px;
	text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 500px) {
  .contact-message{
    font-size: 15px;
  }
}

.l-form {
	padding-block: 8rem;
}

.c-title {
  color: var(--c-accent);

  margin-top: min(5vw, 7.2rem);
  font-size: clamp(12px, 2vw, 1.8rem);
  line-height: 1.3;
  margin-bottom: 4rem;
  text-align: center;
}

.c-title span {
  color: var(--c-accent);
  display: block;
  font-weight: bold;
  font-size: clamp(20px, 3vw, 4rem);
  font-family: var(--font-en);
  letter-spacing: .1em;
}

.form dt{
 display: flex;
 align-items: center;
}
.contact-check-lists {
	display: block;
 margin-top: 20px;
}

.contact-title {
 margin-top: 20px;
}

.form-item-textarea {
  border-radius: 10px;
	display: block;
	width: 100%!important;
	height: 230px!important;
	padding: 7px 20px;
	resize: vertical;
	border: 1px solid #ddd;
	background: #fff;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
 margin-top: 10px;
}


.contact-check-lists label {
 display: block;
 margin: 10px auto;
}

.check-box input[type=checkbox] { 
	display: none;
}

.check-box__text {
 display: inline-block;
 padding: 3px 0 3px 40px;
 cursor: pointer;
 position: relative;
}

.check-box__text::before {
 content: '';
 display: inline-block;
 position: absolute;
 width: 27px;
 height: 27px;
 top: 3px;
 left: 0;
 border: 1px solid #9b9b9b;
 background: #fff;
}

.check-box__text::after {
 content: '';
 display: inline-block;
 position: absolute;
 width: 20px;
 padding-top: 10px;
 top: 9px;
 left: 4px;
 border-left: 2px solid #819D8F;
 border-bottom: 2px solid #819D8F;
 transform: rotate(-45deg);
 opacity: 0;
}

input[type=checkbox]:checked + .check-box__text::after {
 opacity: 1;
}


input::placeholder {
	color: #ddd;
}
/*送信ボタン*/
.submit-container {
	margin-bottom: 29px;
}

.form-message {
	font-size: 12px;
	margin-top: 30px;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 1.4;
}

.required-tab {
 font-size: 10px;
	color: #fff;
	height: 18px;
	font-weight: 500;
	width: 30px;
	margin-right: 6px;
	background: #DB3500;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
}



.privacy-container {
	font-size: 1.3rem;
	height: 30rem;
	overflow-y: scroll;
	padding: 1rem 2rem 3rem;
	border: solid 1px #ddd;
	border-radius: 10px;
	margin-bottom: 4rem;
}
.privacy-container h2{
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	color: #94C0A9;
	margin-top: 20px;
}
.privacy-container h3{
	font-size: 15px;
	font-weight: bold;
	padding-bottom: 2px;
	border-bottom: solid 1px #94C0A9;
	margin-top: 20px;
	margin-bottom: 5px;
}

.privacy-container li {
	padding-left: 15px;
	position: relative;
}
.privacy-container li span {
	position: absolute;
	left: 0;
}

.privacy-container a {
	color:#94C0A9;
	text-decoration: underline;
}
.privacy-container a:hover{
	opacity: .7;
}

.form-item-input{
	width: 100%;
	height: 58px;
 border-radius: 10px;
	padding: 7px 20px;
	border: 1px solid #ddd;
	background: #fff;
	-webkit-appearance: none;
	font-size: 16px;
	font-family: inherit;
	line-height: normal;
  margin-top: 10px;
  box-shadow: none;
}

.form-item-label {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .form-item-label {
    margin-bottom: 1.5rem;
  }
}

.form-item {
  margin-bottom: 2rem;
}


.radio-buttons {
  font-size: 1.6rem;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {

  .radio-buttons label + label {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .radio-buttons label span {
    margin-left: 1rem;
    display: inline-block;
  }
}
.radio-buttons input {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1045px) {
  .radio-buttons div.mfp_err {
    left: 0;
    bottom: -17rem;
  }
}
.radio-buttons label {
  display: none;
  cursor: pointer;
  display: flex;
  position: relative;
  padding-left: 23px;
  padding-right: 10px;
  align-items: flex-start;
}
.radio-buttons label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid;
  border-color: #585753;
  /* 枠の色変更 お好きな色を */
  background-color: #FFF;
  /* 背景の色変更 お好きな色を */
}
.radio-buttons input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -6px;
  top: 50%;
  left: 3px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #94C0A9;
  /* チェックの色変更 お好きな色を */
}

.policy-check {
  margin-right: 0;
  margin-left: auto;
  line-height: 1.77;
  margin-top: 2.4rem;
}
.policy-check label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}
.policy-check label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 10px;
  top: 50%;
  border: 1px solid;
  border-color: #585753;
  /* 枠の色変更 お好きな色を */
  background-color: #FFF;
  /* 背景の色変更 お好きな色を */
}
.policy-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -7px;
  top: 50%;
  left: 12px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #94C0A9;
  /* チェックの色変更 お好きな色を */
}

.contact-button {
  padding: 2rem 0;
}

@media screen and (max-width: 767px) {
  .contact-button {
    padding: 1rem 0;
  }
}

.submit-button {
  margin-top: 3rem;
  width: 260px;
  margin-right: auto;
   margin-left: auto;
   height: 52px;
   display: flex;
   justify-content: center;
   align-items: center;
   border: 1px solid #94C0A9;
   border-radius: 24.5px;
   background: #94C0A9;
   font-size: 16px;
   color: #ffffff;
   font-family: inherit;
   -webkit-appearance: none;
   transition: .3s;
}


.submit-button:hover {
	cursor: pointer;
	background: #fff;
	color:#94C0A9;
}
/* -- div#thanks -------------------------------------------------------------------------------- */
.thanks {
	margin-top: 154px;
	padding: 100px 0 130px;
}
.common-button-border {
	margin-top: 50px;
text-align: center;
width: 260px;
 margin-right: auto;
	margin-left: auto;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #94C0A9;
	border-radius: 24.5px;
	background: #94C0A9;
	font-size: 16px;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	transition: .3s;
}
.common-button-border:hover {
	cursor: pointer;
	background: #fff;
	color:#94C0A9;
}

.thanks-message {
	margin-top: 30px;
}

@media(min-width: 768px) {
	.thanks-message {
		text-align: center;
	}
}

.thanks-footer {
	position: relative;
}
