@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 {
  --color-white: #fff;
  --color-black-title: #212121;
  --color-black-text: #454C53;
  --color-accent: #72AED1;
  --color-gray-light: #b4b4b4;
}

/*------------------------------
global > font
------------------------------*/
:root {
  --font-family-ja: "Zen Kaku Gothic New", sans-serif;
}

/*------------------------------
component > title
------------------------------*/
.c-title-ja {
  text-align: center;
  font-size: clamp(22px, 2.22vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.c-title-en {
  text-align: center;
}
.c-title-en img {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  height: 8rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .c-title-en img {
    height: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title-en img {
    height: 4.6rem;
  }
}

/*------------------------------
component > 背景 花
------------------------------*/
.bg-flower {
  position: relative;
}
.bg-flower::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(24vw, 34.6rem);
  height: min(22vw, 33.1rem);
  background: url(../../assets/img/flower-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .bg-flower::before {
    width: 14rem;
    height: 14rem;
  }
}
.bg-flower::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(24vw, 34.6rem);
  height: min(22vw, 33.1rem);
  background: url(../../assets/img/flower-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .bg-flower::after {
    width: 14rem;
    height: 14rem;
  }
}

/*------------------------------
component > button
------------------------------*/
.cta-button a {
  display: block;
  margin-top: 3.2rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: 28rem;
  height: 5.8rem;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--color-white);
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .cta-button a {
    max-width: 20rem;
    width: 100%;
    height: 4.8rem;
  }
}
.cta-button a::after {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 1.2rem;
  background: url(../../assets/img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .cta-button a::after {
    width: 0.6rem;
    height: 1rem;
    right: 0.8rem;
  }
}
.cta-button a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.common-button a {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  margin-top: 6rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: 100%;
  max-width: 28rem;
  height: 5.8rem;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-accent);
  border: solid 1px var(--color-accent);
  position: relative;
  transition: 0.3s;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common-button a {
    height: 4.8rem;
  }
}
.common-button a:active {
  transform: scale(0.95);
}

.common-button img {
  max-width: 3.4rem;
  margin-right: 1rem;
  vertical-align: middle;
}

.button-shine a {
  position: relative;
  /*疑似要素の起点*/
  overflow: hidden;
  width: 28rem;
  height: 5.8rem;
  /*範囲外の光を隠す*/
}
.button-shine a:hover:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 10%;
  height: 150%;
  background: #fff;
  /*光の色*/
  transform: rotate(45deg);
  /*45度傾ける*/
  -webkit-animation: reflect 1s ease-in-out;
          animation: reflect 1s ease-in-out;
  /*animation: アニメ名｜光る周期｜動き方｜ループ*/
}

@-webkit-keyframes reflect {
  0% {
    transform: rotate(45deg) scale(0);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) scale(100);
    opacity: 0;
  }
}

@keyframes reflect {
  0% {
    transform: rotate(45deg) scale(0);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) scale(100);
    opacity: 0;
  }
}
.common-sub-button a {
  margin-top: 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  max-width: 20rem;
  min-width: 10rem;
  height: 3.8rem;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--color-accent);
  position: relative;
  transition: 0.3s;
  color: var(--color-accent);
  margin-inline: auto;
}
.common-sub-button a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

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

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

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

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

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

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

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

/*------------------------------
layout > loading
------------------------------*/
/*========= ローディング画面のためのCSS ===============*/
.loading {
  background: var(--color-accent);
}

body.appear {
  background: var(--color-white);
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  z-index: 999;
}

.splash-logo {
  position: absolute;
  max-width: 32rem;
  width: 100%;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -65%);
}
@media screen and (max-width: 767px) {
  .splash-logo {
    max-width: 24rem;
  }
}
.splash-logo img {
  width: 100%;
}

/*画面遷移アニメーション*/
.splashbg01,
.splashbg02 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg01,
body.appear .splashbg02 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg01 {
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: var(--color-accent);
  /*伸びる背景色の設定*/
}

@-webkit-keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*左に消えるエリア*/
body.appear .splashbg02 {
  -webkit-animation-name: PageAnime2;
          animation-name: PageAnime2;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: var(--color-accent);
  /*伸びる背景色の設定*/
}

@-webkit-keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
.page-wrapper {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear .page-wrapper {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 2rem;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 1rem;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #eee;
}

/*------------------------------
layout > header
------------------------------*/
.header {
  height: 15.4rem;
  background: var(--color-white);
  box-shadow: 0px 2px 8px rgba(114, 174, 209, 0.1);
  padding: 2rem 0 2.6rem;
  position: fixed;
  z-index: 7;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    height: 10.4rem;
    padding: 1.4rem 0 1.5rem;
  }
}

.header-logo {
  width: 30.4rem;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 22rem;
  }
}
.header-logo:hover {
  filter: brightness(1.12);
}

.header-nav-lists {
  padding-top: 2.4rem;
  display: flex;
  gap: min(5.5vw, 8rem);
  justify-content: center;
  align-items: center;
}

.header-nav-list a {
  display: block;
  transition: 0.3s;
}
.header-nav-list a img {
  height: 1.4rem;
  width: auto;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .header-nav-list a img {
    height: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-list a img {
    vertical-align: middle;
    height: 1.1rem;
  }
}
.header-nav-list a:hover {
  filter: brightness(1.18);
}

@media screen and (max-width: 767px) {
  .header-nav {
    overflow-x: auto;
  }
  .header-nav ul > li {
    white-space: nowrap;
  }
  .header-nav ul {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
  .header-nav-lists {
    padding-top: 1.5rem;
    width: 100%;
    gap: min(8.5vw, 8rem);
  }
}
/*------------------------------
layout > section
------------------------------*/
.l-section {
  padding: 8.8rem 0 11.2rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .l-section {
    padding: 6rem 0 10rem;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 4rem 0 6rem;
  }
}

/*------------------------------
layout > concept
------------------------------*/
.l-concept,
.l-album {
  background: url(../../assets/img/bg/dairiseki.jpg) left/cover no-repeat;
}

.l-concept-message {
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: min(2.7vw, 4rem);
}

.video-container {
  text-align: center;
  margin-top: 4.8rem;
  max-width: 80rem;
  width: 100%;
  max-height: 50.8rem;
  height: 35.2vw;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .video-container {
    margin-top: 2.4rem;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.video-container iframe {
  max-width: 78em;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .video-container iframe {
    height: 30rem;
  }
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------
layout > slider
------------------------------*/
.slider {
  position: relative;
  width: 100%;
  height: 52.2vw;
  z-index: 2;
  margin-top: 15.4rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .slider {
    height: 82.2vw;
  }
}
@media screen and (max-width: 767px) {
  .slider {
    margin-top: 10.4rem;
    height: 120vw;
  }
}
.slider .mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .slider .mv-logo {
    width: 14rem;
  }
}

.vegas-content-scrollable {
  outline: 1px solid rgb(255, 255, 255);
  outline-offset: -1rem;
}

/*------------------------------
layout > gallery
------------------------------*/
.l-gallery {
  position: relative;
}
.l-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(24vw, 34.6rem);
  height: min(22vw, 33.1rem);
  background: url(../../assets/img/flower-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-gallery::before {
    width: 14rem;
    height: 14rem;
  }
}
.l-gallery::after {
  content: "";
  position: absolute;
  bottom: min(-11vw, -16.6rem);
  right: 0;
  width: min(15vw, 22rem);
  height: min(45vw, 66rem);
  background: url(../../assets/img/bg/leaf-shadow02.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-gallery::after {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-gallery::after {
    width: 11rem;
    height: 33rem;
  }
}

.tab {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 100%;
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 2rem 2rem;
  max-width: 66.2rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .tab-list {
    flex-wrap: wrap;
    gap: 1.2rem 1.2rem;
  }
}

.tab-menu {
  align-items: center;
  background-color: var(--color-white);
  color: var(--color-accent);
  border: solid 1px var(--color-accent);
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  height: 4.6rem;
  font-size: min(12px, 1.4rem);
  letter-spacing: 0.14em;
  border-radius: 0.4rem;
  flex: 0 0 15rem;
  justify-content: center;
  transition: 0.3s;
}
.tab-menu:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.tab-menu.current {
  color: var(--color-white);
  background-color: var(--color-accent);
}

.content-box {
  display: none;
}

.content-group {
  margin-top: 4.8rem;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .content-group {
    margin-top: 2.4rem;
  }
}

.l-gallery-lists {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .l-gallery-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-gallery-list img {
  height: auto;
  flex: 0 0 min(18vw, 20rem);
  width: 100%;
  height: min(18vw, 20rem);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .l-gallery-list img {
    width: 100%;
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*------------------------------
layout > footer
------------------------------*/
.footer {
  background: #7A8D98;
  color: var(--color-white);
  padding: 5rem 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 5rem 0 2rem;
  }
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .footer-flex {
    align-items: baseline;
  }
}
@media screen and (max-width: 767px) {
  .footer-flex {
    display: block;
  }
}

.footer-address h3 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: bold;
}
.footer-address h3 a {
  transition: 0.3s;
  display: inline-block;
  margin-left: 0.5rem;
}
.footer-address h3 a img {
  width: 3rem;
}
.footer-address h3 a:hover {
  opacity: 0.6;
}
.footer-address dl {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 0.8rem;
  font-weight: 400;
}
.footer-address dl a {
  transition: 0.3s;
}
.footer-address dl a:hover {
  opacity: 0.7;
}

.footer-nav-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    display: block;
    margin-top: 3.2rem;
  }
}
.footer-nav-list a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .footer-nav-list a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-list a {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    font-size: 1.2rem;
  }
}
.footer-nav-list a:hover {
  opacity: 0.7;
}
.footer-nav-list li + li {
  margin-left: 3.4rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .footer-nav-list li + li {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-list li + li {
    margin-left: 0;
  }
}

.copyright {
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
  margin-top: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .copyright {
    text-align: center;
  }
}

/*------------------------------
layout > photographer
------------------------------*/
.l-photographer {
  background: #F9FBFE;
}

/*------------------------------
splide
------------------------------*/
.splide__slide img {
  height: auto;
  width: 100%;
}

.photographer-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6.4rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .photographer-item {
    display: block;
    margin-top: 3.2rem;
    max-width: 42rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.4rem;
  }
}

.photographer-image {
  flex: 0 0 36vw;
  max-width: 28rem;
  margin-right: min(9.5vw, 7.3rem);
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .photographer-image {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .photographer-image {
    margin-right: auto;
    margin-left: auto;
    max-width: 20rem;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.2));
  }
}

.photographer-item-body {
  max-width: 42rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .photographer-item-body {
    max-width: 35rem;
  }
}
.photographer-item-body h2 {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .photographer-item-body h2 {
    text-align: center;
    margin-top: 2rem;
  }
}
.photographer-item-body h2 span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #D9D9D9;
}
.photographer-item-body p {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .photographer-item-body p {
    margin-top: 1.6rem;
  }
}

.splide__pagination {
  bottom: -2rem;
}

.splide__pagination__page.is-active {
  background: var(--color-accent);
}

.splide__arrow svg {
  fill: var(--color-white);
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .splide__arrow--next {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .splide__arrow--next {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .splide__arrow--prev {
    display: none;
  }
}

/*------------------------------
layout > album
------------------------------*/
.album-sub-title {
  text-align: center;
  display: block;
}

.album-sub-title img {
  height: 1.5rem;
  width: auto;
}

.album-lists-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: -8rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .album-lists-container {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .album-lists-container {
    display: block;
    margin-top: 2.4rem;
  }
}

.album-lists {
  background: var(--color-white);
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.08));
}
.album-lists + .album-lists {
  margin-left: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .album-lists + .album-lists {
    margin-top: 5rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .album-lists + .album-lists {
    margin-left: 0;
  }
}

.album-body {
  padding: 4.2rem;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .album-body {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .album-body {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    padding: 2rem;
  }
}
.album-body p {
  margin-top: 2.4rem;
}
.album-body p span {
  display: block;
  margin-top: 1.2rem;
}
.album-body p,
.album-body ul {
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  line-height: 1.6;
}

.album-title {
  font-size: min(24px, 2.8rem);
  font-weight: bold;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.album-title span {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #D9D9D9;
  line-height: 1.6;
  padding-bottom: 0.4rem;
}
.album-title .price-s {
  font-size: 1rem;
}
.album-title .price-m {
  font-size: 1.5rem;
}

.album-title-ja {
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #D9D9D9;
  line-height: 1.6;
  font-size: 1.2rem;
  display: block;
  margin-top: -1rem;
}

.album-body h4 {
  font-size: 1.6rem;
  margin-top: 4rem;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: bold;
}

.album-body ul {
  margin-top: 0.8rem;
}

.album-image {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .album-image {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .album-lists:first-of-type {
    margin-top: -3.6rem;
  }
}
/*------------------------------
layout > cta
------------------------------*/
.l-cta {
  color: var(--color-white);
  padding: 8rem 0;
  background: url(../../assets/img/bg/cta-bg.jpg) left/cover no-repeat;
  position: relative;
}
.l-cta:after {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.58);
}
.l-cta .l-container {
  position: relative;
  z-index: 2;
}

.l-cta h2 {
  font-size: clamp(20px, 3.2vw, 3.2rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.l-cta p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
  margin-top: 2.4rem;
}

/*------------------------------
utility > utility
------------------------------*/

/*------------------------------
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-top: 20px;
	text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 500px) {
  .contact-message{
    font-size: 15px;
  }
}

.form {
	margin-top: 20px;
}

.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 #72AED1;
 border-bottom: 2px solid #72AED1;
 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: #72AED1;
	margin-top: 20px;
}
.privacy-container h3{
	font-size: 15px;
	font-weight: bold;
	padding-bottom: 2px;
	border-bottom: solid 1px #72AED1;
	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:#72AED1;
	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: #72AED1;
  /* チェックの色変更 お好きな色を */
}

.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: #72AED1;
  /* チェックの色変更 お好きな色を */
}

@media screen and (max-width: 767px) {
  .policy-check div.mfp_err {
    bottom: -5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1045px) {
  .policy-check div.mfp_err {
    bottom: -5rem;
  }
}


.contact-button {
  background: #fff;
  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 #72AED1;
   border-radius: 24.5px;
   background: #72AED1;
   font-size: 16px;
   color: #ffffff;
   font-family: inherit;
   -webkit-appearance: none;
   transition: .3s;
}


.submit-button:hover {
	cursor: pointer;
	background: #fff;
	color:#72AED1;
}
/* -- 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 #72AED1;
	border-radius: 24.5px;
	background: #72AED1;
	font-size: 16px;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	transition: .3s;
}
.common-button-border:hover {
	cursor: pointer;
	background: #fff;
	color:#72AED1;
}

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

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

.thanks-footer {
	position: relative;
}
