/*
Theme Name: 万喜フォトスタジオ様
Author: 
Description: 
Version: 1.0.0
*/
@charset "UTF-8";

@import url("./css/reset.css");

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");

/********** カスタムプロパティ（変数） **********/
:root {
  --keycolor: #e9a0a3;
  --keycolor-brack: #000;
  --keycolor-light-brack: #414243;

  --keycolor-white: #fff;
  --keycolor-blue: #a3b9d1;
  --keycolor-pink: #dfbabb;

  --keycolor-light: #f7eded;
  --keycolor-bg-dark: #313030;
  --keycolor-bg-pink: #f8f2f2;
  --keycolor-bg-brown: #f3f2f0;
  --keycolor-link: #e9a0a3;

  --sidebar-width: 260px; /* サイドバーのwidthを固定幅とする */
}

/********** 共通タグ設定 **********/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans CJK JP", "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #111111;
  word-break: break-all;
}
/****
	font-family: 'Italiana', sans-serif;
	font-family: 'Shippori Mincho', serif;
	font-family: 'Marcellus', serif;
	font-family: 'Outfit', sans-serif;
	font-family: 'Nothing You Could Do', cursive;
****/

main {
  margin-top: 100px;
}

a {
  text-decoration: none;
}

h1 {
}

h2 {
  font-family: "Marcellus", serif;
}

h3 {
  font-family: "Marcellus", serif;
}

h4 {
}

ul {
}

ul li {
}

img {
  /*width: 100%;*/
  max-width: 100%;
  vertical-align: bottom;
}

li a {
  transition: all 0.3s;
}

li a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

a:hover {
}

.center {
  text-align: center;
}

@media screen and (max-width: 390px) {
  main {
  }
}

/********** 共通クラス **********/
.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.br_510 {
  display: none;
}

.sp_none {
  display: none;
  transition: all 1s;
}

.content_title {
  margin-bottom: 50px;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.content_title::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
}

.content_title span:not(.pc) {
  width: fit-content;
  display: flex;
  font-size: 15px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans CJK JP", "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
  position: relative;
  background: linear-gradient(transparent 60%, #f7e1e1 60%);
  margin: 0 auto;
}

.content_title.custom {
  display: block;
  text-align: center;
}

.content_title.custom .pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .content_title.custom .pc {
    display: none;
  }
}

.content_title.type2 {
  padding: 80px 0 50px;
}
.content_title.type3 {
  padding: 50px 0 50px;
}
.content_title.type4 {
  margin-bottom: 32px;
}

.link {
  text-align: center;
  display: flex;
  justify-content: center;
}

.link a {
  display: block;
  min-width: 270px;
  padding: 28px 15px;
  background-color: var(--keycolor-link);
  color: var(--keycolor-white);
  border-radius: 50px;
  position: relative;
  transition: all 0.3s;
}

.link a.black {
  background-color: #000;
  color: #fff;
  min-width: 380px;
}

@media screen and (max-width: 767px) {
  .link a.black {
    min-width: auto;
    padding: 15px;
    line-height: 1.4;
    width: 100%;
  }
}

.link a:hover {
  background-color: var(--keycolor-brack);
  transition: all 0.3s;
}

.link a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--keycolor-white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.br_768 {
  display: none;
}

@media screen and (max-width: 510px) {
  .br_510 {
    display: block;
  }
}

/**** スライド ****/

.over_scale {
  overflow: hidden;
}

.over_scale img {
  transition: transform 0.8s ease;
}

.over_scale img:hover {
  transform: scale(1.1);
}

swiper-container {
  width: 35%;
  height: 100%;
}

swiper-slide {
  text-align: left;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .inner {
    width: 100%;
    padding: 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    /*padding: 0 20px;*/
    padding: 0 13px;
  }

  .content_title {
    margin-bottom: 50px;
    font-size: 32px;
  }
  .content_title.type2 {
    margin-bottom: 0px;
    padding: 50px 0;
  }

  .content_title.type4 {
    margin-top: 20px;
    margin-bottom: 32px;
  }

  .br_768 {
    display: block;
  }
}

/********** ヘッダー（共通） **********/
.sp_nav {
  display: none;
}

header .inner {
  max-width: 100%;
  height: 100px;
  background: var(--keycolor-white);
  color: var(--keycolor-text);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header_logo {
  width: 240px;
}

.header_logo a img {
  width: 100%;
}

.nav_menu,
.sp_nav {
  display: none;
}

.pc_nav ul.lv1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 50px;
}

.pc_nav ul.lv1 .nav_li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 15px;
  color: var(--keycolor-brack);
}

.pc_nav ul.lv1 .nav_li a span {
  font-size: 12px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1rem;
}

.pc_nav ul.lv1 .pc_nav_btn a {
  width: 200px;
  padding: 10px 0 10px 10px;
  font-size: 12px;
  line-height: 24px;
  color: var(--keycolor-white);
  background-color: var(--keycolor);
  flex-direction: column-reverse;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s;
}

.pc_nav ul.lv1 .pc_nav_btn a:hover {
  background-color: var(--keycolor-brack);
  transition: all 0.3s;
  opacity: 1;
}

.pc_nav ul.lv1 .pc_nav_btn a::before {
  content: "";
  width: 22px;
  height: 20px;
  background-image: url(img/common/camera_icon_white.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.pc_nav ul.lv1 .pc_nav_btn a span {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2rcap;
}

.pc_nav ul.lv1 .nav_li {
  padding: 20px 0;
  position: relative;
}
.pc_nav ul.lv1 .nav_li .lv2_box {
  display: none;
  position: absolute;
  top: calc(100%);
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 30px 50px;
  background: #fff;
  border-radius: 20px;
  width: 520px;
  box-shadow: 0px 0px 11px -5px #666666;
}
.pc_nav ul.lv1 .nav_li .lv2_box[data-ver="right0"] {
  transform: translateX(-31%);
  width: 210px;
}
/* .pc_nav ul.lv1 .nav_li:first-child:hover .lv2_box {
  display: block;
} */
.pc_nav ul.lv1 .nav_li:hover .lv2_box {
  display: block;
}
.pc_nav ul.lv1 .nav_li .lv2_box .lv2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pc_nav ul.lv1 .nav_li .lv2_box .lv2 li {
  padding: 5px 10px;
  width: 50%;
  text-align: left;
}
.pc_nav ul.lv1 .nav_li .lv2_box[data-ver="right0"] .lv2 li {
  width: 100%;
}
.pc_nav ul.lv1 .nav_li .lv2_box .lv2 li a {
  font-size: 14px;
  color: var(--keycolor-brack);
}

@media screen and (max-width: 1400px) {
  header .inner {
    padding: 0 20px;
    background-color: var(--keycolor-white);
    z-index: 15;
    position: fixed;
  }

  header .right_hum {
    justify-content: end;
  }

  /* ハンバーガー */
  .nav_menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }

  .menu_bar {
    display: block;
    background-color: var(--keycolor-bg-dark);
  }

  .menu_bar:not(:first-of-type) {
    margin-top: 8px;
  }

  .menu_bar01,
  .menu_bar02,
  .menu_bar03 {
    transition: all 0.3s;
  }

  .menu_bar01 {
    width: 35px;
    height: 2px;
  }

  .menu_bar02 {
    width: 43px;
    height: 2px;
  }

  .menu_bar03 {
    width: 50px;
    height: 2px;
  }

  .pc_nav {
    display: none;
  }

  .open_menu .menu_bar01 {
    width: 30px;
    transform: rotate(45deg);
    transition: all 0.3s;
  }

  .open_menu .menu_bar02 {
    display: none;
    transition: all 0.3s;
  }

  .open_menu .menu_bar03 {
    width: 30px;
    margin-top: -2px;
    transform: rotate(-45deg);
    transition: all 0.3s;
  }

  /* 中身 */
  .sp_nav {
    width: 100%;
    margin-top: 100px;
    padding: 0 20px 180px;
    display: block;
    background-color: var(--keycolor-white);
    position: absolute;
    top: -300%;
    left: 0;
    z-index: 10;
    transition: all ease-in-out 1s;
  }

  .open_nav {
    top: 0;
    transition: all ease-in-out 1s;
  }

  .sp_photo_menu h3 a {
    margin-bottom: 24px;
    padding-left: 20px;
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: normal;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans CJK JP", "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
    color: var(--keycolor-bg-dark);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    position: relative;
  }

  .sp_photo_menu h3 a::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--keycolor-brack);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .sp_photo_menu_list {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
  }

  .sp_photo_menu_list ul:first-child {
    width: 45%;
  }

  .sp_photo_menu_list ul:last-child {
    width: 55%;
  }

  .sp_photo_menu_list ul li {
    line-height: 36px;
  }

  .sp_photo_menu_list ul li a {
    font-size: 14px;
    text-wrap: nowrap;
    color: var(--keycolor-brack);
  }

  .sp_nav_link li {
    border-bottom: 1px solid #ccc;
  }

  .sp_nav_link {
    margin-bottom: 40px;
  }

  .sp_nav_link li a {
    display: block;
    padding: 16px 16px 16px 24px;
    color: var(--keycolor-brack);
    position: relative;
  }

  .sp_nav_link li a::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--keycolor-brack);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .contact_link {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .line_link {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
  }

  .line_link a {
    display: block;
    width: 270px;
    padding: 28px 0 28px 20px;
    color: var(--keycolor-white);
    background-color: #3fb156;
    border-radius: 50px;
    text-align: center;
    justify-content: center;
    position: relative;
  }

  .line_link a::before {
    content: "";
    width: 26px;
    height: 24px;
    background-image: url(img/common/line_icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 6;
    transition: all 0.3s;
  }

  .sp_sns {
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .sp_sns h3 {
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: 0.1rem;
  }

  .sp_sns .sns_link .sns_icon {
    margin-bottom: 0;
  }

  .sp_sns .sns_link .sns_icon a {
    border: 1px solid #818181;
  }

  .sp_logo {
    width: 300px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 390px) {
  main {
    margin-top: 75px;
  }

  header .inner {
    height: 75px;
  }
  .header_logo {
    width: 160px;
  }

  .line_link a {
    display: block;
    width: 100%;
  }

  .sp_logo {
    width: 240px;
    margin-inline: auto;
  }
}

/********** メインコンテンツ（共通） **********/
main {
}

#contents {
  width: 100%;
  color: var(--keycolor-light-text);
  margin: 0;
}

main.col2 {
  display: flex;
  justify-content: space-between;
}

main.col2 #contents {
  width: 76%;
}

/********** サイドバー（共通） **********/
aside {
  background: var(--keycolor-dark);
  color: var(--keycolor-dark-text);
  width: 24%;
  margin: 0;
  padding: 20px;
}
@media screen and (max-width: 960px) {
  main.col2 {
    flex-direction: column;
  }
  main.col2 #contents {
    width: 100%;
  }
  aside {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
}

/********** フッター（共通） **********/
footer {
  background: var(--keycolor-brack);
  color: var(--keycolor-white);
}

.sp_floating {
  display: none;
}

footer .ft_content {
  display: flex;
}

.ft_sns {
  width: 30%;
  padding: 100px 60px;
  background-color: var(--keycolor-bg-dark);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft_sns h3 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
}

.sns_link {
  display: flex;
  justify-content: center;
  column-gap: 22px;
}

.sns_icon {
  margin-bottom: 45px;
}

.sns_icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--keycolor-white);
}

.sns_icon a img {
  width: 23px;
  height: 23px;
}

.ft_bnr {
  max-width: 240px;
}

.ft_bnr:not(:last-of-type) {
  margin-bottom: 20px;
}

.ft_nav {
  width: 70%;
  padding: 100px 80px 200px;
  background-color: var(--keycolor-brack);
}

.ft_logo {
  margin-bottom: 80px;
  width: 248px;
}

.ft_photo,
.ft_nav_link {
  width: 48%;
}

.ft_photo h4 {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--keycolor-white);
  position: relative;
}

.ft_photo h4 a {
  color: var(--keycolor-white);
  display: inline-block;
}

.ft_photo h4::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--keycolor-white);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

.ft_menu_link {
  display: flex;
  justify-content: space-between;
  /*column-gap: 100px;*/
}

.ft_photo,
.ft_page_link {
  width: 45%;
}

.ft_link {
  display: flex;
  /*column-gap: 80px;*/
  column-gap: 10%;
}

.ft_link ul {
  width: fit-content;
  text-wrap: nowrap;
}

.ft_link ul li:not(:last-of-type) {
  margin-bottom: 16px;
}

.ft_link ul li a {
  font-size: 15px;
  color: var(--keycolor-white);
  white-space: nowrap;
}

.ft_nav_link .ft_link ul li a {
  padding-left: 20px;
  position: relative;
}

.ft_nav_link .ft_link ul li a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--keycolor-white);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
  transform: translateY(-50%);
}

footer .copyright {
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  text-align: right;
  padding: 10px 0;
}

.top_link {
  opacity: 0;
  position: fixed;
  bottom: 4%;
  right: 60px;
  z-index: 999;
}

.top_link a {
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--keycolor-white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.top_link a img {
  width: 14px;
  height: 17px;
}

.up_mov {
  animation: UpMove 0.5s forwards;
}

@keyframes UpMove {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.down_mov {
  animation: DownMove 0.5s forwards;
}

@keyframes DownMove {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(80px);
  }
}

.sp_bnr {
  display: none;
}

@media screen and (max-width: 1400px) {
  footer .ft_content {
    flex-direction: column;
  }

  .ft_sns {
    width: 100%;
    padding: 80px 0;
  }

  .ft_bnr_box {
    display: flex;
    column-gap: 20px;
  }

  .ft_nav {
    width: 100%;
    padding: 100px 40px;
  }
}

@media screen and (max-width: 980px) {
  .ft_menu_link {
    flex-direction: column;
    row-gap: 80px;
  }

  .ft_photo,
  .ft_page_link {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .ft_photo,
  .ft_nav_link {
    width: 100%;
  }

  .ft_link {
    column-gap: normal;
  }

  .ft_link ul {
    width: 100%;
  }

  .ft_sns {
    padding: 80px 20px;
  }
}

@media screen and (max-width: 390px) {
  .top_link a {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--keycolor-white);
  }

  .top_link {
    opacity: 0;
    position: fixed;
    bottom: 80px;
    right: 20px;
  }

  .ft_sns {
    padding: 40px 0;
  }

  .sns_icon {
    margin-bottom: 0;
  }

  .ft_nav {
    padding: 80px 20px;
  }

  .ft_bnr_box {
    display: none;
  }

  .ft_menu_link {
    margin-bottom: 100px;
  }

  .ft_nav_link,
  .ft_link {
    width: 100%;
  }

  .sp_ft_bnr {
    width: 48%;
  }

  .sp_bnr {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
  }

  footer .copyright {
    text-align: center;
  }

  /* 不ローディングバナー */
  .sp_floating {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
  }

  .sp_floating ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp_floating ul li {
    height: 70px;
  }

  .sp_floating ul li a {
    padding: 8px 4px 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--keycolor-white);
    text-wrap: nowrap;
  }

  .sp_floating ul li a p {
    font-size: 16px;
  }

  .sp_floating ul li a p span {
    font-size: 12px;
    padding-left: 1px;
  }

  .sp_floating ul .fl_call_bnr {
    background-color: #4e637d;
    width: 29%;
  }

  .sp_floating ul .fl_call_bnr a .fl_call_icon {
    width: 23px;
    height: 24px;
  }

  .sp_floating ul .fl_mail_bnr {
    background-color: #e19d9f;
    width: 31%;
  }

  .sp_floating ul .fl_mail_bnr a .fl_mail_icon {
    width: 27px;
    height: 24px;
  }

  .sp_floating ul .fl_line_bnr {
    background-color: #3fb156;
    width: 40%;
  }

  .sp_floating ul .fl_line_bnr a .fl_line_icon {
    width: 26px;
    height: 24px;
  }
}

/****** メインビジュアル ******/

#main_visual {
  margin-bottom: 40px;
  /*height: 70vh;*/
  position: relative;
}

.main_title {
  position: absolute;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
  z-index: 5;
}

.main_title h2 {
  font-size: 70px;
  font-weight: normal;
  font-family: "Italiana", sans-serif;
  letter-spacing: 0.2rem;
  position: relative;
  z-index: 2;
}

.main_title h2::before {
  content: "";
  width: 140px;
  height: 140px;
  background-color: var(--keycolor-light);
  border-radius: 0px 50% 50% 50%;

  position: absolute;
  top: -90px;
  left: -32px;
  z-index: -2;
}

.main_title p {
  font-size: 22px;
  font-family: "Shippori Mincho", serif;
  position: relative;
}

.main_title p::before {
  content: "";
  width: 110px;
  height: 110px;
  background-color: #e5ebf1;
  border-radius: 50% 0px 50% 50%;

  position: absolute;
  bottom: -140px;
  left: 100px;
  z-index: -2;
}

@media screen and (max-width: 980px) {
  .main_title h2 {
    font-size: 40px;
    font-weight: normal;
    font-family: "Italiana", sans-serif;
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 2;
  }

  .main_title h2::before {
    content: "";
    width: 100px;
    height: 100px;
  }

  .main_title p {
    font-size: 18px;
    font-family: "Shippori Mincho", serif;
    position: relative;
  }

  .main_title p::before {
    content: "";
    width: 80px;
    height: 80px;
    bottom: -100px;
    left: 80px;
    z-index: -2;
  }
}

@media screen and (max-width: 768px) {
  .main_title {
    top: initial;
    bottom: 0;
    left: 20px;
    transform: translateY(-50%);
    /* SP時テキスト非表示化202412 */
    display: none;
  }

  .main_title h2 {
    font-size: 30px;
    text-shadow: 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff;
  }
  .main_title p {
    font-size: 14px;
    text-shadow: 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff, 0px 0px 8px #fff;
  }

  .main_title h2::before,
  .main_title p::before {
    display: none;
  }
}

/****** ニュース ******/
.news_content {
  width: fit-content;
  /*margin-bottom: 90px;*/
  margin-bottom: 30px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--keycolor-light-brack);
  border-bottom: 1px solid var(--keycolor-light-brack);
}

.news_article {
  display: flex;
  align-items: center;
}

.news_article p a {
  transition: all 0.3s;
}

.news_article p a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.news_content h2 {
  font-size: 14px;
  padding-right: 16px;
  letter-spacing: 0.1rem;
  border-right: 1px solid var(--keycolor-brack);
}

.news_content p a {
  margin-left: 24px;
  margin-right: 40px;
  color: var(--keycolor-text);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.news_content p a span {
  font-size: 14px;
  margin-right: 16px;
  color: #525556;
}

.news_morelink a {
  display: block;
  padding: 12px 18px;
  font-size: 12px;
  color: var(--keycolor-text);
  background-color: var(--keycolor-white);
  border: 1px solid #ccc;
  border-radius: 50px;
  transition: all 0.3s;
  opacity: 1;
}

.news_morelink a:hover {
  background-color: var(--keycolor-brack);
  color: var(--keycolor-white);
  transition: all 0.3s;
  border: 1px solid var(--keycolor-brack);
  opacity: 1;
}

/****** キャンペーン ******/
#top_campaign {
  background: linear-gradient(transparent 40%, #f8f2f2 40%);
  overflow: hidden;
  margin-bottom: 150px;
}

#top_campaign .inner {
  /*margin-bottom: 150px;*/
  padding-bottom: 80px;

  position: relative;

  max-width: 1200px;
  /*padding-left: calc((100% - 1200px) / 2);*/
  width: 100%;
}
.campaign_page.link {
  padding-right: calc(100% - 1200px);
}
@media screen and (max-width: 1200px) {
  #top_campaign .inner {
    padding-left: 24px;
  }
}
@media screen and (max-width: 768px) {
}

.campain_title {
  padding-left: 32px;
  align-items: start;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .campain_title {
    padding-left: 10px;
  }
}

.campain_title::before {
  width: 89px;
  height: 54px;
  background-image: url(img/common/check.png);
  top: -40px;
  left: 0;
}

.campain_title span {
  margin-left: 0 !important;
}

.campain_box {
  margin-bottom: 40px;
}

.campain_box .mySwiper {
  margin: 0;
  width: 100%;
}

#top_campaign .campain_box .swiper {
  overflow: visible !important;
}

.swiper-pagination {
  display: none;
}

.swiper-eye,
/*.swiper-campaign,*/
.swiper-plan {
  overflow: hidden;
}

.swiper-button-next-eye:after,
.swiper-rtl .swiper-button-prev-eye:after,
.swiper-button-next-campaign:after,
.swiper-rtl .swiper-button-prev-campaign:after {
  content: "";
  display: block;
  border-top: 1px solid #000;
  width: 14px;
  height: 1px;
}
.swiper-button-next-eye:before,
.swiper-rtl .swiper-button-prev-eye:before,
.swiper-button-next-campaign:before,
.swiper-rtl .swiper-button-prev-campaign:before {
  content: "";
  display: block;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  width: 7px;
  height: 7px;
  transform: rotate(45deg) translate(2px, -2px);
  position: absolute;
}
.swiper-button-prev-eye:after,
.swiper-rtl .swiper-button-next-eye:after,
.swiper-button-prev-campaign:after,
.swiper-rtl .swiper-button-next-campaign:after {
  content: "";
  display: block;
  border-top: 1px solid #000;
  width: 14px;
  height: 1px;
}
.swiper-button-prev-eye:before,
.swiper-rtl .swiper-button-next-eye:before,
.swiper-button-prev-campaign:before,
.swiper-rtl .swiper-button-next-campaign:before {
  content: "";
  display: block;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  width: 7px;
  height: 7px;
  transform: rotate(-135deg) translate(-6px, 6px);
}

.swiper-button-next-eye:after,
.swiper-button-prev-eye:after,
.swiper-button-next-campaign:after,
.swiper-button-prev-campaign:after {
  text-transform: none !important;
}
.swiper-button-next-eye,
.swiper-button-prev-eye,
.swiper-button-next-campaign,
.swiper-button-prev-campaign {
  position: absolute;
  top: 10%;
  width: 60px;
  height: 60px;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #000;
}
.swiper-button-prev-eye,
.swiper-button-prev-campaign {
  left: initial;
  right: 90px;
}
.swiper-button-prev-campaign {
  top: 5%;
}
.swiper-button-next-campaign {
  right: 20px;
  top: 5%;
}

#main_visual .swiper-button-next-eye {
  top: initial;
  bottom: 10%;
  left: 230px;
  right: initial;
}
#main_visual .swiper-button-prev-eye {
  top: initial;
  bottom: 10%;
  left: 160px;
  right: initial;
}

#main_visual .swiper-backface-hidden .swiper-slide {
  padding-left: 20%;

  width: 80%;
  right: -10%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #main_visual .swiper-backface-hidden .swiper-slide {
    padding-left: 0;
    transform: translateX(-20%);
    width: 100%;
    right: initial;
  }

  #main_visual .swiper-button-next-eye,
  #main_visual .swiper-button-prev-eye {
    border-color: #fff;
  }

  .swiper-button-next-eye:before,
  .swiper-rtl .swiper-button-prev-eye:before,
  .swiper-button-prev-eye:before,
  .swiper-rtl .swiper-button-next-eye:before,
  .swiper-button-prev-eye:after,
  .swiper-rtl .swiper-button-next-eye:after,
  .swiper-button-next-eye:after,
  .swiper-rtl .swiper-button-prev-eye:after {
    border-color: #fff;
  }
  #main_visual .swiper-button-next-eye {
    left: initial;
    right: 20px;
  }
  #main_visual .swiper-button-prev-eye {
    left: initial;
    right: 90px;
  }

  .swiper-button-prev-campaign,
  .swiper-button-next-campaign {
    top: 5%;
  }
}

.campaign_item {
  width: 30%;
}

.camp_eye {
  margin-bottom: 10px;
  overflow: hidden;
}

.camp_eye img {
  transition: all 0.3s;
}

.camp_eye img:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

.camp_text h3 {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans CJK JP", "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column-reverse;
  text-align: left;
  color: var(--keycolor-brack);
  row-gap: 16px;
}

.camp_text h3 span {
  font-size: 14px;
  font-weight: normal;
  font-family: "Outfit", sans-serif;
}

/****** 撮影メニュー ******/
#top_shooting {
  margin-bottom: 200px;
}

.shooting_title::before {
  width: 40px;
  height: 37px;
  background-image: url(img/common/camera_icon_pink.png);
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
}

.manu_ttl {
  font-size: 20px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans CJK JP", "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  row-gap: 4px;
}

.manu_ttl span {
  font-size: 14px;
  font-family: "Marcellus", serif;
}

.menu_box,
.menu_sblock .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.menu_box {
  margin-bottom: 20px;
}

.menu_box .menu_item {
  width: 30%;
}

.manu_img {
  overflow: hidden;
}

.manu_img img {
  transition: all 0.3s;
}

.manu_img img:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}

.manu_img {
  margin-bottom: 24px;
}

.manu_ttl {
  padding: 0 10px 16px;
  font-size: 15px;
  display: flex;
  font-weight: normal;
  text-align: center;
  flex-direction: column-reverse;
  justify-content: center;
  color: var(--keycolor-brack);
}

.menu_box .menu_item .manu_ttl {
  padding: 0 10px 16px;
  font-size: 20px;
  color: var(--keycolor-brack);
  text-align: center;
}

.manu_ttl span {
  font-size: 13px;
  letter-spacing: 0.1rem;
}

.menu_sblock {
  padding-bottom: 80px;
  background: linear-gradient(transparent 30%, var(--keycolor-bg-brown) 30%);
}

.menu_sbox {
  margin-bottom: 60px;
}

.menu_sbox .menu_item {
  width: 23%;
  background-color: var(--keycolor-white);
}

/****** 私たちの想い ******/
#top_about {
  margin-bottom: 140px;

  background: linear-gradient(90deg, #fff 0%, #fff 50%, #516784 50%, #516784 100%);
}

#top_about .inner {
  padding-bottom: 180px;
  background-color: #516784;
  position: relative;
}

.top_about_main {
  display: flex;
  justify-content: space-between;
}

.top_about_content {
  width: 50%;
  padding: 100px 0 0 100px;
  color: var(--keycolor-white);
}

.top_about_title p {
  margin-bottom: 32px;
  font-size: 18px;
  padding-left: 20px;
  position: relative;
}

.top_about_title p::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--keycolor);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.top_about_title h2 {
  margin-bottom: 32px;
  color: #e2bfc0;
  font-size: 72px;
  font-weight: normal;
  font-family: "Nothing You Could Do", cursive;
}

.top_about_content {
}

.top_about_content h3 {
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
}

.tp_about_text {
  margin-bottom: 40px;
  line-height: 40px;
}

.about_page {
  margin-bottom: 80px;
  justify-content: flex-start;
}

.about_page a {
  color: var(--keycolor-brack);
  background-color: var(--keycolor-white);
  transition: all 0.3s;
}
.about_page a:hover {
  color: var(--keycolor-white);
  transition: all 0.3s;
}

.about_page a::before {
  background-color: var(--keycolor);
  transition: all 0.3s;
}

.about_page a:hover:before {
  background-color: var(--keycolor-white);
  transition: all 0.3s;
}

.top_about_photo {
  width: 40%;
  margin-top: -60px;
  position: relative;
}

.about_bottom_img {
  width: 80%;
  margin-top: -50px;
  margin-left: -40px;
}

.top_about_imgs {
  margin-top: -40px;
}

.about_img {
  width: 40%;
}

.at_home {
  width: 568px;
  margin-left: 48px;
  position: relative;
  z-index: 3;
}

.about_img01 {
  width: 400px;
}

/****** フォトギャラリー ******/
#top_gallery {
  margin-bottom: 100px;
}

/* スライド＿上 */
#slid_gallery01 {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

#slid_gallery01 ul {
  display: flex;
  flex-wrap: nowrap;
}

#slid_gallery01 ul:first-child {
  backface-visibility: hidden;
  will-change: transform;
  animation: loop1_1 120s -60s linear infinite;
}

#slid_gallery01 ul:last-child {
  animation: loop1_2 120s linear infinite;
}

#slid_gallery01 ul li {
  width: 230px;
  height: 200px;
  margin-right: 16px;
}

#slid_gallery01 li img {
  width: 100%;
}

@keyframes loop1_1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop1_2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/* スライド＿下 */
#slid_gallery02 {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

#slid_gallery02 ul {
  display: flex;
  flex-wrap: nowrap;
}

#slid_gallery02 ul:first-child {
  backface-visibility: hidden;
  will-change: transform;
  animation: loop2_1 120s -60s linear infinite;
}

#slid_gallery02 ul:last-child {
  animation: loop2_2 120s linear infinite;
}

#slid_gallery02 ul li {
  width: 230px;
  height: 200px;
  margin-right: 16px;
}

#slid_gallery02 li img {
  width: 100%;
}

@keyframes loop2_1 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes loop2_2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}

.gallery_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery_link a {
  margin-top: -120px;
  padding-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 191px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 28px;
  color: var(--keycolor-brack);
  background-image: url(img/top/gallery_link_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 3;
  transition: all 0.3s;
}

.gallery_link a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.gallery_link a::before {
  content: "";
  width: 52px;
  height: 41px;
  background-image: url(img/common/gallery_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery_link a::after {
  content: "";
  width: 89px;
  height: 54px;
  background-image: url(img/common/check.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  bottom: 36px;
  right: 30%;
}

/****** お客様の声 ******/
.bg_blown {
  max-width: 1600px;
  margin: 0 auto 4px;
  background-color: var(--keycolor-bg-brown);
}

#top_voice .bg_blown {
  padding: 140px 0 80px;
  background-image: url(img/top/voice_bg.png);
  background-repeat: no-repeat;
  background-size: 112px 715px;
  background-position: top left;
}

.top_voice_items {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  row-gap: 20px;
}

.top_voice_item {
  width: 24%;
  padding: 24px;
  background-color: var(--keycolor-white);
  box-shadow: 2px 3px 5px #e3e3e3;
}

.top_voice_item a {
  display: block;
}

.tp_voice_img {
  margin-bottom: 20px;
  overflow: hidden;
}

.tp_voice_img img {
  transition: all 0.3s;
}

.tp_voice_img img:hover {
  transition: all 0.3s;
  transform: scale(1.1);
}

.top_voice_item p,
.top_voice_item h3 {
  font-size: 16px;
  color: var(--keycolor-brack);
  display: flex;
  flex-direction: column-reverse;
  row-gap: 8px;
  font-weight: normal;
}

/****** コラム一覧 ******/

#top_column {
  margin-bottom: 180px;
}

#top_column .column_box {
  max-width: 1600px;
  margin: 0 auto 4px;
  padding: 140px 0 80px;
  background-color: var(--keycolor-bg-brown);
  background-image: url(img/top/column_bg.png);
  background-repeat: no-repeat;
  background-size: 112px 715px;
  background-position: right bottom 20px;
}

.top_column_items {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.top_column_item {
  width: 48%;
}

.top_column_item a {
  padding: 20px 24px;
  background-color: var(--keycolor-white);
  box-shadow: 2px 3px 5px #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp_column_img {
  width: 30%;
  max-width: 140px;
}

.tp_column_img img {
  border-radius: 50%;
}

.top_column_item p,
.top_column_item h3 {
  width: 70%;
  padding-left: 10px;
  font-size: 16px;
  color: var(--keycolor-brack);
  font-weight: normal;
  /*
	display: flex;
	flex-direction: column-reverse;
	row-gap: 8px;
*/
}

/****** よくある質問 ******/
#top_qa {
  margin-bottom: 120px;
}

.top_qa_box {
  margin-top: -100px;
  padding: 100px 0 60px;
  background-color: var(--keycolor-bg-pink);
}

.top_qa_item {
  width: 85%;
  margin-inline: auto;
  background-color: var(--keycolor-white);
  box-shadow: 2px 3px 5px #e3e3e3;
}

.top_qa_item:not(:first-of-type) {
  margin-top: 16px;
}

.tp_qa {
  padding: 15px 40px;
  display: flex;
  align-items: center;
}

.tp_qa h3 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--keycolor-white);
}

.tp_qa p {
  padding-left: 16px;
  width: fit-content;
}

.tp_qa_q {
  border-bottom: 2px solid var(--keycolor-bg-pink);
}

.tp_qa_q h3 {
  background-color: var(--keycolor-pink);
}

.tp_qa_q p {
  font-weight: 500;
}

.tp_qa_a h3 {
  background-color: var(--keycolor-blue);
}

.qa_page {
  margin-top: 40px;
}

/** よくある質問 改良 **/
.headLine3 {
  padding: 40px 0px 20px;
  width: 85%;
  margin: 0 auto;
  font-size: 20px;
}
dl.qa_list {
  width: 85%;
  margin-inline: auto;
  background-color: var(--keycolor-white);
  box-shadow: 2px 3px 5px #e3e3e3;
}
dl.qa_list {
  margin-bottom: 16px;
}
dl.qa_list dt,
dl.qa_list dd {
  line-height: 1.8;
  padding: 30px 40px 30px 104px;
  display: flex;
  align-items: center;
  position: relative;
}
dl.qa_list dt::before,
dl.qa_list dd::before {
  content: "Q";
  position: absolute;
  top: 20px;
  left: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--keycolor-white);
  background-color: var(--keycolor-pink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Marcellus", serif;
  font-weight: bold;
}
dl.qa_list dd::before {
  content: "A";
  background-color: var(--keycolor-blue);
}
dl.qa_list dt {
  border-bottom: 2px solid var(--keycolor-bg-pink);
  font-weight: 500;
}
dl.qa_list dd {
}
@media screen and (max-width: 768px) {
  .headLine3 {
    padding: 40px 0px 20px;
    width: 90%;
    font-size: 18px;
  }
  dl.qa_list {
    width: 90%;
  }
  dl.qa_list dt,
  dl.qa_list dd {
    width: calc(100% - 36px);
    padding: 15px 20px 15px 72px;
  }
  dl.qa_list dt::before,
  dl.qa_list dd::before {
    width: 36px;
    height: 36px;
    top: 10px;
    left: 20px;
  }
}

/****** お知らせ ******/
#top_news_box {
  margin-bottom: 140px;
}

#top_news_box .inner {
  display: flex;
  justify-content: space-between;
}

.tp_news_img {
  width: 480px;
  margin-left: calc(50% - 50vw);
}

.news_list {
  width: 65%;
}

.news_list .news_title,
.access_title {
  margin-bottom: 40px;
  align-items: flex-end;
  flex-direction: inherit;
}

.news_list .news_title span,
.access_title span {
  margin-left: 20px;
  margin-bottom: 16px;
}

.news_list ul {
  margin-bottom: 40px;
}

.news_list ul li a {
  padding: 24px 16px;
  font-size: 16px;
  font-weight: normal;
  color: var(--keycolor-brack);
  display: flex;
  flex-direction: column-reverse;
  border-top: 1px solid #ccc;
  position: relative;
  transition: all 0.3s;
}

.news_list ul li a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.news_list ul li a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.news_list ul li a:hover:before {
  background-color: var(--keycolor);
  transition: all 0.3s;
}

.news_list ul li a:last-of-type {
  border-bottom: 1px solid #ccc;
}

.news_list ul li a span {
  font-size: 14px;
}

.news_page {
  justify-content: end;
}

/****** アクセス ******/
#top_access {
  margin-bottom: 70px;
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  #top_access {
    margin-top: -75px;
    padding-top: 75px;
  }
}

.tp_access_bg {
  margin-bottom: 2px;
}

.access_ttl_box {
  padding-top: 54px;
  padding-bottom: 20px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.access_ttl_box .access_title {
  margin-bottom: 0px;
}

.access_ttl_box p {
  letter-spacing: 0.1rem;
  font-family: "Outfit", sans-serif;
}

.tp_access_map {
  padding: 40px 0 80px;
}

.tp_access_map .inner {
  padding: 48px;
  background-color: var(--keycolor-white);
}

.tp_access_add {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tp_add_img,
.access_add {
  width: 50%;
}

.access_add {
  padding-left: 60px;
}

.access_add h4 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid var(--keycolor-brack);
}
/* @media only screen and (max-width: 767px) {
	.access_add table tr{
			display: flex;
			flex-wrap: wrap;
	}
} */
.access_add table th {
  width: 30%;
  font-weight: normal;
  text-align: left;
  line-height: 40px;
}
/* @media only screen and (max-width: 767px) {
	.access_add table th{
		width: 100%;
	}
} */
.access_add table td {
  width: 70%;
  line-height: 32px;
}
/* @media only screen and (max-width: 767px) {
	.access_add table td{
		width: 100%;
	}
} */
.access_add table td a {
  color: var(--keycolor-brack);
}

.access_map {
  width: 100%;
}

.access_map iframe {
  width: 100%;
  height: 360px;
}

/****** h1テキスト ******/
#page_name {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ccc;
}

/*#page_name .inner h1 a{*/
#page_name .inner h1 {
  font-size: 12px;
  font-weight: normal;
  color: #ccc;
}

/****** お問い合わせ ******/
#top_contact .inner {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}

.contact_title {
  margin-bottom: 0px;
  padding-right: 60px;
  font-size: 50px;
  border-right: 1px solid var(--keycolor-brack);
}

.contact_title span {
  background: none;
}

.contact_call {
  display: flex;
  align-items: center;
}

.call_icon {
  width: 66px;
  height: 66px;
  background-color: var(--keycolor-brack);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call_icon img {
  width: 24px;
  height: 24px;
}

.contact_call h3 {
  margin-left: 20px;
  font-size: 32px;
  font-weight: normal;
  font-family: "Outfit", sans-serif;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  letter-spacing: 0.1rem;
}

.contact_call h3 a {
  color: var(--keycolor-brack);
}

.contact_call h3 span {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans CJK JP", "noto-sans-cjk-jp", "Noto Sans JP", sans-serif;
}

.contact_link a {
  display: flex;
  width: 270px;
  padding: 28px 0 28px 20px;
  color: var(--keycolor-white);
  background-color: var(--keycolor);
  border-radius: 50px;
  justify-content: center;
  position: relative;
}

.contact_link a:hover {
  transition: all 0.3s;
  background-color: var(--keycolor-brack);
}

.contact_link a::before {
  content: "";
  width: 26px;
  height: 19px;
  background-image: url(img/common/mail_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 6;
  transition: all 0.3s;
}

/********** レスポンシブ **********/
@media screen and (max-width: 1200px) {
  .top_about_main {
  }

  .about_img01 {
    left: 24px;
    bottom: -120px;
  }

  .about_img01::before {
    content: "";
    width: 668px;
    height: 174px;
    background-image: url(img/top/sp_menu_athome.png);
    top: -40px;
    right: -60%;
    z-index: 2;
  }

  /** お問い合わせ **/
  #top_contact .inner {
    width: 100%;
    flex-direction: column;
  }

  .contact_title,
  .contact_call .contact_link {
    width: 100%;
  }

  .contact_title {
    margin-bottom: 60px;
    padding-right: 0;
    padding-bottom: 16px;
    border-right: none;
    position: relative;
  }

  .contact_title::before {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    bottom: -32px;
  }

  .contact_call {
    margin-bottom: 40px;
    padding-bottom: 16px;
    justify-content: center;
  }

  .contact_link {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 980px) {
  /* メイン下-NEWS- */
  .news_content {
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .news_article p a {
    margin-right: 0;
    margin-left: 0;
    display: block;
  }

  .news_article p a span {
    text-wrap: nowrap;
  }

  .news_morelink a {
    padding: 4px 10px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  /* 撮影メニュー */
  .menu_box .menu_item,
  .menu_sbox .menu_item {
    width: 48%;
  }

  .menu_box .menu_item .manu_ttl {
    font-size: 18px;
  }

  .menu_item {
  }

  .menu_sblock {
    background: linear-gradient(transparent 50%, var(--keycolor-bg-brown) 50%);
  }

  /* 私たちの想い */
  #top_about {
    margin-bottom: 280px;
  }

  #top_about .inner {
    padding-bottom: 280px;
  }

  .top_about_main {
    flex-direction: column-reverse;
  }

  .top_about_title p {
    margin-bottom: 16px;
  }

  .tp_about_text {
    margin-bottom: 80px;
  }

  .top_about_content,
  .top_about_photo {
    width: 100%;
  }

  .top_about_content {
    padding: 40px 0 0;
  }

  .at_home {
    margin-left: 0;
    width: 80%;
  }

  .top_about_photo {
    width: 50%;
    margin-left: auto;
    margin-right: 0;
  }

  .about_bottom_img {
    width: 80%;
    margin-top: -80%;
    margin-left: -70%;
  }

  .about_page {
    justify-content: center;
    margin-bottom: 0;
  }

  .about_img01 {
    width: 360px;
  }

  .top_about_imgs {
    position: absolute;
    left: 20px;
    bottom: -100px;
  }

  /* お客様の声 */
  .top_voice_items {
    flex-wrap: wrap;
  }

  .top_voice_item {
    width: 48%;
  }

  /* コラム */
  .top_column_item {
    width: 100%;
  }

  /* よくある質問 */
  .top_qa_item {
    width: 90%;
  }

  /* お知らせ */
  .tp_news_img {
    width: 380px;
    margin-left: calc(50% - 85vw);
  }

  .news_list {
    width: 80%;
    padding-left: 40px;
  }

  .news_list ul li a {
    padding: 24px 36px 24px 16px;
  }

  /* アクセス */
  .tp_access_map .inner {
    padding: 24px;
  }

  .tp_access_add {
    flex-direction: column;
  }

  .tp_add_img,
  .access_add {
    width: 100%;
  }

  .tp_add_img {
    margin-bottom: 40px;
  }

  .access_add {
    padding-left: 0;
  }

  /* コンタクト */
  #top_contact .inner {
    margin-bottom: 20px;
  }

  .contact_call {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 390px) {
  /*  撮影メニュー*/
  #top_shooting {
    margin-bottom: 160px;
  }

  .menu_box .menu_item .manu_ttl {
    font-size: 15px;
  }

  .menu_box .menu_item p {
    font-size: 14px;
  }

  /* 私たちの想い*/
  #top_about {
    margin-bottom: 160px;
  }

  #top_about .inner {
    padding-bottom: 200px;
  }

  .top_about_content h3 {
    font-size: 23px;
  }

  .at_home {
    width: 100%;
  }

  .about_img01 {
    width: 70%;
  }

  /* スライド */
  #top_gallery {
    margin-bottom: 40px;
  }

  #slid_gallery01 ul li,
  #slid_gallery02 ul li {
    width: 130px;
    height: 130px;
  }

  .gallery_link a {
    margin-top: -70px;
    padding-top: 12px;
    width: 260px;
    height: 130px;
  }

  .gallery_link a::before {
    top: 20px;
    width: 37px;
    height: 29px;
  }

  .gallery_link a::after {
    bottom: 0;
    right: 20%;
  }

  /* お客様の声 */
  #top_voice .voice_box {
    padding: 80px 0;
  }
  .top_voice_item {
    padding: 10px 10px 20px;
  }

  .top_voice_item p {
    /*font-size: 14px;*/
  }

  /* コラム */
  #top_column {
    margin-bottom: 80px;
  }

  #top_column .column_box {
    padding: 80px 0;
  }

  .tp_column_img {
    /*width: 60%;*/
  }
  .tp_column_img img {
    width: 100%;
  }

  /* よくある質問　 */
  .tp_qa {
    padding: 15px 20px;
    display: flex;
    align-items: center;
  }

  .tp_qa h3 {
    width: 36px;
    height: 36px;
  }

  .tp_qa p {
    width: calc(100% - 36px);
  }

  /* お知らせ */
  #top_news_box {
    margin-bottom: 80px;
  }

  /* アクセス */
  .access_ttl_box p {
    font-size: 12px;
  }

  .news_list .news_title span,
  .access_title span {
    margin-bottom: 8px;
  }

  /* お問い合わせ */
  .call_icon {
    width: 50px;
    height: 50px;
  }

  .contact_link {
    width: 100%;
  }

  .contact_link a {
    width: 100%;
  }
}

.swiper-plan {
  position: relative;
}
/*
.swiper-button-next-plan:after, .swiper-rtl .swiper-button-prev-plan:after {
    content: '';
    display: block;
    border-top: 1px solid #000;
    width: 14px;
    height: 1px;
}
*/
.swiper-button-next-plan:before,
.swiper-rtl .swiper-button-prev-plan:before {
  content: "";
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid #888;
  width: 0px;
  height: 0px;
  /*transform: rotate(45deg) translate(2px, -2px);*/
  position: absolute;
  margin-right: -15px;
}
/*
.swiper-button-prev-plan:after, .swiper-rtl .swiper-button-next-plan:after {
    content: '';
    display: block;
    border-top: 1px solid #ccc;
    width: 14px;
    height: 1px;
}
*/
.swiper-button-prev-plan:before,
.swiper-rtl .swiper-button-next-plan:before {
  content: "";
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid #888;
  border-left: 10px solid transparent;
  width: 0px;
  height: 0px;
  /*transform: rotate(-135deg) translate(-6px, 6px);*/
  margin-left: -15px;
}

.swiper-button-next-plan:after,
.swiper-button-prev-plan:after {
  text-transform: none !important;
}
.swiper-button-next-plan,
.swiper-button-prev-plan {
  position: absolute;
  top: 10%;
  width: 60px;
  height: 60px;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /*border: 1px solid #000;*/
  /*background: #fff;*/
  background-color: rgba(255, 255, 255, 0.6);
}
.swiper-button-prev-plan {
  left: initial;
  right: 90px;
}
.swiper-button-next-plan {
  top: initial;
  bottom: 5%;
  left: 120px;
  right: initial;
}
.swiper-button-prev-plan {
  top: initial;
  bottom: 5%;
  left: 50px;
  right: initial;
}
@media screen and (max-width: 768px) {
  .swiper-button-next-plan,
  .swiper-button-prev-plan {
    background-color: rgba(255, 255, 255, 0.4);
  }
  .swiper-button-prev-plan {
    left: 10px;
  }
  .swiper-button-next-plan {
    left: initial;
    right: 10px;
  }
}

/****************** 撮影メニューのモーダル ******************/

/*モーダルを開くボタン*/
.modal-open:hover {
  cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 9999;

  text-indent: 0;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  /*max-width: 500px;*/
  width: 60%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -28px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  /*padding: 100px 50px;*/
  padding: 5% 10%;

  display: flex;
  justify-content: space-between;

  text-indent: 0;
  line-height: 1.4em;

  /* max-height: 70vh; */
  overflow-y: auto;
}

.modal-content .lbox {
  width: 46%;
}

.modal-content .rbox {
  width: 46%;
}

.modal-content .cbox {
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .modal-content .cbox {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .modal-container {
    padding: 40px 10px;
  }
  .modal-close {
    right: -8px;
  }
}
.modal-content .imgbox {
  position: relative;
  max-height: 80%;
  text-align: center;
}
.modal-content .cbox .imgbox {
}

.modal-content .imgbox img {
  max-height: 100%;
}
.modal-content .lbox .imgbox::before {
  content: "OR";
  position: absolute;
  top: 40%;
  right: -12%;
}

.modal-content p {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .modal-body {
    width: 95%;
  }
  /*
	.modal-content{ flex-direction: column; padding: 40px 20px; }
	.modal-content .lbox { width: 100%; }
	.modal-content .rbox { width: 100%; margin-top: 40px; }
	.modal-content p { font-size: 14px; }
*/
  .modal-content {
    padding: 10px;
    flex-wrap: wrap;
    row-gap: 30px;
    max-height: 100%;
  }
  .modal-content .imgbox {
    max-height: 100%;
  }
  .modal-content .lbox {
    width: 100%;
  }
  .modal-content .rbox {
    width: 100%;
  }
  .modal-content p {
    font-size: 14px;
  }

  .modal-content .lbox .imgbox::before {
    font-size: 14px;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
  }
}

/*** フォトギャラリー　ナビゲーション ***/
#content-sub-nav ul {
  max-width: 900px;
  width: 100%;
  position: relative;
}

#content-sub-nav ul::after {
  content: "";
  display: block;
  width: 24%;
}

#content-sub-nav ul {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 100px;
  flex-wrap: wrap;
}

#content-sub-nav ul li {
  width: 24%;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #content-sub-nav ul {
    margin: 10px auto 50px;
  }
  #content-sub-nav ul li {
    width: 49%;
  }
}

#content-sub-nav ul li a,
#content-sub-nav ul li span {
  color: #ad935b;
  border: 1px solid #ad935b;
  display: block;
  padding: 5px 20px;
  text-align: center;
}

#content-sub-nav ul .active a,
#content-sub-nav ul .active span {
  color: #fff;
  background: #ad935b;
}

.page-id-37 #content-sub-nav ul {
  max-width: 1200px;
  gap: 5px;
}

.page-id-37 #content-sub-nav ul li {
  width: calc(100%/5 - 10px);
}

@media screen and (max-width: 1000px) {
  .page-id-37 #content-sub-nav ul li {
    width: calc(100%/2 - 10px);
  }
}
@media screen and (max-width: 768px) {
  .page-id-37 #content-sub-nav ul li {
    width: calc(100%/2 - 4px);
  }
}
/*** 衣装 ***/
.costume_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  gap: 15px;
}
.costume_box::before {
  content: "";
  width: 24%;
  height: 0;
  order: 1;
}
.costume_box::after {
  content: "";
  width: 24%;
  height: 0;
  order: 2;
}
.costume_box .costume_item {
  width: 24%;
}

@media screen and (max-width: 768px) {
  .costume_box {
    gap: 10px 2%;
  }
  .costume_box .costume_item {
    width: 49%;
  }
}

.tab_list .tab {
  color: #ad935b;
  border: 1px solid #ad935b;
  display: block;
  padding: 5px 40px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tab_list .tab {
    padding: 5px;
  }
}
.tab_list .tab:hover {
  cursor: pointer;
}
.tab_list .tab.active {
  background: #ad935b;
  color: #fff;
}
.tab_contents {
  display: none;
}
.tab_contents.active {
  display: block;
}
.tab_contents h3 {
  font-size: 18px;
  margin-bottom: 1em;
}
.tab_contents .costume_box {
  margin-bottom: 50px;
}

/** 来店予約フォーム **/
.tb_contact {
  background: #fff;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
.tb_contact th,
.tb_contact td {
  /*border: 1px solid #ccc;*/
  border-bottom: 1px solid #ccc;
  padding: 20px 20px;
  font-weight: 400;
  font-size: 16px;
  vertical-align: middle;
}
.tb_contact td.td_col2 {
  display: flex;
  justify-content: space-between;
}
.tb_contact td.td_col2 div {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .tb_contact {
    width: 100%;
  }
  .tb_contact th,
  .tb_contact td {
    display: block;
  }

  .tb_contact {
    border-top: 1px solid #ccc;
  }
  .tb_contact th {
    border: none;
    padding: 20px 5px 5px 5px;
  }
  .tb_contact td {
    padding: 5px 5px 20px 5px;
  }
}

.reserve_box_text p {
  font-size: 18px;
}
.contact_call.reserve {
  justify-content: center;
  margin: 20px 0;
}
.contact_line {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .reserve_box_text p {
    font-size: 14px;
  }
}

.wpcf7-spinner {
  display: none;
}

.hissu {
  margin-left: 20px;
  font-size: 12px;
  color: #fff;
  background: #b22323;
  padding: 2px 8px;
  border-radius: 3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
input[type="checkbox"],
input[type="radio"],
input[type="date"],
select,
select option {
  font-size: 16px;
  padding: 10px 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
select.photograph,
select.photograph option {
  font-size: 16px;
}
select.reservation,
select.reservation option {
  font-size: 18px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
}

input[type="text"].hasDatepicker {
  font-size: 18px;
}

input[type="checkbox"] {
}

input[type="radio"] {
}
.wpcf7-list-item.first {
  margin: 0;
}
.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
/* デフォルトのボタン */
input[type="radio"] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #333;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 1.2em;
}
/* チェック後のボタン */
input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: #333; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}

.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

input[type="date"] {
}
select,
select option {
}

.box_text_ssl {
  width: 1000px;
  max-width: 100%;
  margin: 50px auto;
  text-align: center;
}
.box_text_ssl a {
  text-decoration: underline;
  color: var(--keycolor);
}
.box_text_biko {
  width: 1000px;
  max-width: 100%;
  margin: 50px auto 0;
  text-align: center;
}

.box_submit {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.box_submit input[type="submit"] {
  color: var(--keycolor-white);
  background: var(--keycolor);
  margin: 0 auto;
  border-radius: 50px;
  width: 300px;
  padding: 20px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  font-size: 16px;
}

/* priceの赤文字 */
.price_off {
  color: #ff0000;
  padding-left: 15px;
}

.link_right {
  text-align: right;
}
.link_arrow {
  color: var(--keycolor);
  text-decoration: underline;
}

.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* thanksページ */
.thanks_contents {
}
.thanks_contents .box {
  text-align: center;
}
.thanks_contents .box .contact_comennt {
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 600;
}
.thanks_contents .box .thanks_main_text {
  margin-bottom: 20px;
}
.thanks_contents .box .thanks_main_list {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .thanks_contents .box .thanks_main_text,
  .thanks_contents .box .thanks_main_list {
    text-align: left;
  }
}

/* 証明写真(受験) の撮影料金 */
.juken_price .plan_cut {
  width: 40%;
}
.juken_price .plan_cut h3 {
  justify-content: flex-start;
}
.juken_price .plan_contens {
  width: 60%;
  justify-content: space-between;
  align-items: center;
}
.juken_price .plan_contens ul {
  width: 60%;
}
.juken_price .plan_contens ul li {
  padding-left: 0;
  text-indent: 0px;
  line-height: 1.4em;
}
.juken_price .plan_contens .box_border {
  width: 30%;
  border: 1px solid #ccc;
  padding: 10px 10px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 1100px) {
  .juken_price .ud_plan_item {
    flex-direction: column;
  }
  .juken_price .plan_cut {
    width: 100%;
  }
  .juken_price .plan_cut h3 br {
    display: none;
  }
  .juken_price .plan_contens {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
  .juken_price .plan_contens {
    flex-direction: column;
  }
  .juken_price .plan_contens ul {
    width: 100%;
    text-align: center;
  }
  .juken_price .plan_contens .box_border {
    width: 50%;
    margin-top: 20px;
  }
}
