@charset "UTF-8";
/*
Theme Name: photo studio revue
Theme URI: https://cs-revue.com/
Description: スタジオレヴュー サイトテーマ
Version: 1.0
*/

/* css reset
---------------------------------------------*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

/*
nav ul {
    list-style:none;
}
*/

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* end css reset
---------------------------------------------*/


/* グーテンベルクの設定
---------------------------------------------*/


/* end グーテンベルクの設定
---------------------------------------------*/



/* 基本設定
---------------------------------------------*/

html {
  /*font-size: 62.5%;*/ /* ≒10px */
  /*font-family: var(--fontgothic);*/
  /*font-family: "BIZ UDPGothic", sans-serif;*/
  /*font-weight: 400;*/
  font-style: normal;
}


body {
  line-height: 1.3;
}

/* コンテンツ量が少ない時だけフッターを下部に固定 */
.wrapper--all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}


p {
  color: #333;
  font-size: var(--f7);
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: var(--fontmain);
}

a {
  color: #484848;
  text-decoration: underline;
  transition: .3s;
}

a:hover {
  opacity: .9;
  text-decoration: none;
}

.txt--center {
  text-align: center;
}

/*画像が縦長になるのを回避*/
img {
  height: auto;
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}

/* 変数 */
:root {
    /*フォントサイズに関する参考サイト：https://type-scale.com*/
  --f1: 2.986em; /* 47.78px */
  --f2: 2.488em; /* 39.81px */
  --f3: 2.074em; /* 33.18px */
  --f4: 1.728em; /* 27.65px */
  --f5: 1.44em;  /* 23.04px */
  --f6: 1.2em;   /* 19.2px */
  --f7: 1em;     /* 16px */
  --f8: .833em;  /* 13.33px */

  --basecolor: #02CABB; /* 基本色 */
  --secondcolor: #00A3DF;
  --accentcolor: #;
  --gradient: linear-gradient( to right, ); /* 参考サイト：https://gradienthunt.com */

  /* フォントの指定 */
  --fontmincho: 'Hiragino Mincho', serif;
  --fontgothic: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  /*--honbun: "TBUDゴシック R";*/
  --fontmain: "Zen Maru Gothic", sans-serif;
}
/* スクリーンリーダー用のテキスト */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* アニメーション */
@keyframes anim-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blurAnime {
  0% {
    opacity: 0;
    filter: blur(1em);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* fadeIn */
.fadeIn {
  animation-name: anim-fadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* fadeUp */
.fadeInUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.blur-anime {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* 文字をバラバラに表示させる */
.text-anime span {
  display: inline-block;
  transition: 1s;
  opacity: 0;
  translate: 0 50px;
}

.text-anime span.is-animated {
  opacity: 1;
  translate: 0;
}



/* スクロールに連動したアニメーション */


/* / アニメーション */


/* end 基本設定
---------------------------------------------*/


/* レイアウト
---------------------------------------------*/


/* ヘッダー
--------------------------------------*/

.header--wrap {
  display: flex;
  height: 100px;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  min-width: 1100px;
  width: 94vw;
  padding: 0 3%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-tit {
  width: 310px;
  padding-left: 3em;
}

.header--fixed {
  position: fixed;
  top: 0;
  width: 100%;
}

.global-nav--wrap {
  width: 800px;
}

.nav__contact--wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.header--tel {
  font-family: var(--fontmain);
  font-size: 1.7em;
  font-weight: 900;
  font-style: normal;
  position: relative;
  padding-left: 27px;
  margin-right: .5em;
}

.header--tel::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(./img/tel_icon.svg) no-repeat;
  background-size: contain;
  left: 0;
  top: calc(50% - 8px);
}

.header--contact {
  width: 120x;
}

.header--contact a {
  display: block;
  width: 120px;
  height: 30px;
  color: #fff;
  background-color: var(--basecolor);
  border-radius: 50px;
  font-family: var(--fontmain);
  font-size: var(--f7);
  text-align: center;
  line-height: 30px;
  place-items: center;
  text-decoration: none;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
}

.global-nav li {
  margin: 0 10px;
  font-family: var(--fontmain);
  font-weight: 500;
}

.global-nav li a {
  position: relative;
  font-family: var(--fontmain);
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  transition: .3s;
  z-index: 2;
}

.global-nav li a:hover {
  color: var(--basecolor);
}

.page-id-23 .global-nav li:first-child a {
  color: var(--basecolor);
}

.page-id-23 .global-nav li:first-child a::after {
  position: absolute;
  content: "";
  background-color: #F3F3F3;
  border-radius: 50px;
  width: 120%;
  height: 36px;
  left: -10%;
  top: calc(50% - 18px);
  z-index: -1;
}


/* ハンバーガーメニュー */
.toggle-btn {
  display: none;
}


/* end ヘッダー
--------------------------------------*/


/* ページレイアウト
--------------------------------------*/

/* サイトの幅指定 ------------*/
.main__container {
  max-width: 1000px;
  padding: 0 2vw;
  margin:  0 auto 100px;
}

.container__middle {
  width: 1014px;
  margin:  40px auto 100px;
}

.container__small {
  width: 808px;
  margin:  40px auto 100px;
}

.container__blog {
  max-width: 1220px;
  padding: 0 2vw;
  margin:  50px auto 100px;
  display: flex;
  justify-content: space-between;
}

.blog__article {
  width: 67%;
  max-width: 820px;
}

.blog__sidebar {
  width: 25%;
  max-width: 320px;
}

.container__column {
  width: 100%;
  min-width: 1000px;
  max-width: 1220px;
  margin:  40px auto 100px;
  display: flex;
  justify-content: space-between;
}

/* / サイトの幅指定 ------------*/


/* ボタンの設定 ------------*/
.btn001 {
  line-height: 1;
  padding: 0;
  font-family: var(--honbun);
  width: 210px;
  height: 50px;
}

.btn001 a {
  position: relative;
  background: var(--basecolor);
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--fontmain);
  line-height: 50px;
  display: block;
  color: #fff;
  width: 90%;
  height: 50px;
  padding-left: 10%;
  box-shadow: 0 0 0 0 #fff;
  transition: .5s;
}

.btn001 a::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  right: 6px;
  top: calc(50% - 20px);
}

.btn001 a::after {
  position: absolute;
  content: "〉";
  color: var(--basecolor);
  font-size: 1.1em;
  right: 10px;
  top: 0;
}

.btn001 a:hover,
.btn002 a:hover,
.btn003 a:hover {
  transform: translate(1px, -2px);
  box-shadow: 0px 9px 9px -5px #cccccc;
}

.btn002 {
  line-height: 1;
  padding: 0;
  font-family: var(--honbun);
  width: 210px;
  height: 50px;
}

.btn002 a {
  position: relative;
  background: var(--basecolor);
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--fontmain);
  display: block;
  color: #fff;
  line-height: 50px;
  text-align: left;
  width: 90%;
  height: 50px;
  padding-left: 10%;
  box-shadow: 0 0 0 0 #fff;
  transition: .5s;
}

.btn002 a::after {
  position: absolute;
  content: "";
  background: url(./img/icon-link.svg) no-repeat center center;
  color: var(--basecolor);
  width: 22px;
  height: 20px;
  right: 20px;
  top: calc(50% - 10px);
}

.btn002.color-sr a {
  color: #000;
  background-color: #A9E7FF;
}

.btn002.color-sr a::after {
  background: url(./img/icon-link-black.svg) no-repeat center center;
}

.btn002.color-consul a {
  background-color: #063973;
}

.btn002.color-js a {
  background-color: #0BA5D5;
}

.btn003 {
  line-height: 1;
  padding: 0;
  font-family: var(--honbun);
  width: 200px;
  height: 30px;
}

.btn003 a {
  position: relative;
  background: var(--basecolor);
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--fontmain);
  line-height: 30px;
  display: block;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 30px;
  box-shadow: 0 0 0 0 #fff;
  transition: .5s;
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}



/* / ボタンの設定 ------------*/


/* 共通設定 ------------*/
.w80 {
  width: 80%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page__heading {
  font-family: var(--fontmain);
  font-size: 1.625em;
  display: inline-block;
  background: url(./img/dot001.svg) repeat-x left bottom;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.page__heading--middle {
  color: var(--secondcolor);
  font-family: var(--fontmain);
  font-size: 1.25em;
  margin-bottom: 15px;
}

.page__heading--big {
  background-color: var(--secondcolor);
  border-radius: 50px;
  font-family: var(--fontmain);
  font-size: 1.25em;
  color: #fff;
  padding: .5em 0 .5em 30px;
  margin: 25px auto;
}

.table-style01 table {
  width: 800px;
  margin: 20px auto;
}

.table-style01 td {
  font-family: var(--fontmain);
  border-bottom: solid 1px #707070;
  padding: 1em 0;
}

.table-style01 tr td:first-child {
  font-weight: bold;
  width: 30%;
}



/* / 共通設定 ------------*/



/*トップページ------------*/

.main-visual--wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 94vw;
  min-width: 1100px;
  margin: 10px auto 80px;
}

.catch-copy--wrap {
  width: 35vw;
  display: grid;
  place-items: center;
}

.catch-copy {
  max-width: 530px;
  font-family: var(--fontmain);
  color: var(--basecolor);
  font-size: 4.375em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.catch-copy-sub {
  font-family: var(--fontmain);
  color: #000;
  font-size: 1.562em;
  font-weight: 700;
  line-height: 1;
  margin: 10px 0 0 0;
}

.main-visual__slides {
  width: 55vw;
  height: 80vh;
}

#metaslider-id-10 {
  border-radius: 30px;
  overflow: hidden;
  width: 55vw;
  height: 80vh;
}

#metaslider-id-10 img {
  width: 55vw;
  height: 80vh;
  object-fit: cover;
}

.top__heading {
  text-align: center;
  margin: 50px auto;
}

.top__heading div {
  font-family: var(--fontmain);
  font-size: 2.375em;
  position: relative;
  display: inline-block;
  padding-left: 38px;
}

.top__heading div::before {
  content: "";
  position: absolute;
  background: url(./img/circle001.svg) no-repeat center center;
  width: 35px;
  height: 35px;
  left: 0;
  top: calc(50% - 15px);
}

.top__feature--wrap {
  width: 1100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px auto 50px;
}

.top__feature--info {
  width: 500px;
}

.top__feature--photo {
  width: 540px;
}

.top__feature--photo img {
  border-radius: 20px;
  object-fit: cover;
}

.top__feature--info h3 {
  color: var(--basecolor);
  font-family: var(--fontmain);
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
}

.top__feature--info h3 span {
  font-size: .75em;
}

.top__feature--info p {
  font-family: var(--fontmain);
  font-size: var(--f7);
  margin-bottom: 50px;
}

.top__feature--reverse {
  flex-direction: row-reverse;
}

.top__point--wrap {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px auto;
}

.top__point {
  width: 260px;
  height: 210px;
  padding: 40px 25px;
  border: solid 2px #3B3B3B;
  border-radius: 30px;
  margin-bottom: 30px;
}

.top__point h4 {
  font-family: var(--fontmain);
  color: var(--basecolor);
  font-size: 1.375em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.top__point p {
  font-family: var(--fontmain);
  font-size: var(--f7);
  line-height: 1.5;
  margin: 0 0 30px 0;
}

.top__service--wrap {
  width: 810px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px auto;
}

.top__service {
  text-align: center;
  width: 250px;
  height: 189px;
  border-bottom: solid 2px #3B3B3B;
  margin: 0 0 30px 0;
}

.top__service h4 {
  font-family: var(--fontmain);
  font-size: 1.375em;
  font-weight: 700;
}

.top_service--img { /*とりあえず仮レイアウト*/
  background-color: #D9D9D9;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.ban--area {
  width: 800px;
  margin: 100px auto 150px;
  box-shadow: 1px 4px 8px 0px #bcc8bc;
}

.ban--area-sp {
  display: none;
}

.recruit__ban--wrap {
  background: url(./img/bg_recruit.png) no-repeat center center;
  background-size: 100%;
  position: relative;
  min-height: 460px;
  min-width: 1100px;
}

.recruit__ban--ttl {
  font-family: var(--fontmain);
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  color: var(--basecolor);
  padding: 80px 0 20px;
}

.recruit__ban--wrap p {
  font-family: var(--fontmain);
  font-size: var(--f7);
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin-bottom: 60px;
}

.recruit__ban--img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
}

.recruit__ban--img001 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 13vw;
}

.recruit__ban--img002 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: 17vw;
}

.recruit__ban--img003 {
  width: 180px;
  height: 180px;
  top: 15%;
  right: 12vw;
}

.recruit__ban--img004 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 10vw;
}

.sorasido-group--wrap {
  width: 1050px;
  margin: 100px auto 50px;
  padding: 20px 30px 40px;
  text-align: center;
  border: solid 5px #ABF0EB;
  border-radius: 40px;
}

.sorasido-group--ttl {
  font-family: var(--fontmain);
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  background-color: #ABF0EB;
  border-radius: 50px;
  height: 67px;
  line-height: 67px;
  margin-bottom: 20px;
}

.sorasido-group--wrap > p {
  font-family: var(--fontmain);
  font-size: var(--f7);
  font-weight: 700;
}

.sorasido-group--conmpany--wrap {
  width: 20px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sorasido-group--conmpany {
  width: 295px;
  height: 295px;
  text-align: center;
  border-radius: 50%;
  border: solid 5px #ABF0EB;
  background: #F7F7F7;
}

.sorasido-groupe--name {
  font-family: var(--fontmain);
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 50px;
}

.sorasido-groupe--txt {
  font-family: var(--fontmain);
  font-size: var(--f7);
}

.access--wrap {
  width: 100%;
}

.access--wrap > p {
  font-family: var(--fontmain);
  font-size: var(--f7);
  text-align: center;
}

.access-map {
  width: 100%;
  height: 400px;
  margin: 20px auto 20px;
}

.access-map iframe {
  width: 100%;
  height: 400px;
}


/* / トップページ--------------*/



/* ページタイトル ------------*/

.page__ttl--wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1200px;
  min-width: 1000px;
  height: 250px;
  margin: 0 auto 70px;
  text-align: center;
  padding: 1.5em 0 0;
}

.page__ttl {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  font-size: 2.375em;
  line-height: 1.2;
  font-family: var(--fontmain);
  color: var(--basecolor);
  text-align: center;
  padding: .5em 1.5em 0;
  height: 60px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}

.page__ttl::before,
.page__ttl::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
}

.page__ttl::before {
  background: url(./img/corner_left.svg) no-repeat top center;
  background-size: cover;
  bottom: 0;
  left: -15px;
}

.page__ttl::after {
  background: url(./img/corner_right.svg) no-repeat top center;
  background-size: cover;
  bottom: 0;
  right: -15px;
}

.page-id-23 .page__ttl--wrap {
  background: url(./img/page_head-img001.png) no-repeat top center;
  background-size: cover;
}

/* / ページタイトル ------------*/


/* 事務所紹介 ------------*/

.page__block--wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.page__block {
  width: 49%;
}

.page__block--img--dummy {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: #D9D9D9;
  margin: 50px auto 0;
}




/* / 事務所紹介 ------------*/


/* よくある質問 ------------*/
.faq-block {
  width: 100%;
  margin: 20px 0 60px;
}

.faq-block h2 {
  color: var(--basecolor);
  font-size: var(--f4);
  font-family: var(--honbunbold);
  padding-bottom: .2em;
  margin-bottom: .7em;
  background: url(./img/line001.jpg) no-repeat left bottom;
}

.faq-block-list {
  font-family: var(--honbun);
}

.faq__question {
  background: url(./img/faq-q-icon.svg) no-repeat 1em 1em #FDF9EB;
  background-size: 26px;
  border-radius: 5px;
  padding: 1em 1em .1em 3em;
  font-size: var(--f5);
  margin-bottom: 1em;
}

.faq__answer {
  background: url(./img/faq-a-icon.svg) no-repeat 1em 1em;
  padding: 1em 1em 1em 3em;
  background-size: 22px;
  margin-bottom: 1.5em;
  font-size: var(--f5);
}

/* アコーディオン */
.accordion__item {
  /*border: 1px solid #ccc;
  margin-top: 10px;*/
  cursor: pointer;
}

/* アコーディオンのタイトル */
.accordion__title {
  position: relative;
  cursor: pointer;
}

/* (+)アイコン */
.accordion__title::before,
.accordion__title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #EB8C2D;
  width: 20px;
  height: 2px;
  transition: all 0.3s;
}

.accordion__title::after {
  transform: rotate(90deg);
}

/* アコーディオンのコンテンツ */
.accordion__content {
  display: none;
}

.accordion__content.is-open {
  display: block;
}

/* アコーディオン展開時の(-)アイコン */
.is-active.accordion__title::before {
  transform: rotate(180deg);
}

.is-active.accordion__title::after {
  transform: rotate(180deg);
  opacity: 0;
}

/* よくある質問 ------------*/



/* スタジオ紹介 ------------*/
.studio-yokohama {
  background-color: #FCF2ED;
  background-image: url(./img/bg-wave-studio.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  margin: auto;
  padding-bottom: 50px;
}

.studio-sanbashi {
  background: #FBFFF4;
  width: 100%;
  margin: auto;
  padding-bottom: 50px;
}

.studio-ttl {
  margin: 0 auto;
  padding-bottom: 2em;
  padding-top: 3em;
}

.studio-ttl__yokohama {
  width: 496px;
}

.studio-ttl__sanbashi {
  width: 472px;
}

.studio-photo {
  width: 1014px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
}

.studio-photo figure {
  margin: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.studio-photo figure img {
  object-fit: cover;
  height: auto;
}

.studio-txt-block {
  text-align: center;
  margin: 5em 0;;
}

.studio-txt-block h3 {
  font-family: var(--honbunbold);
  margin-bottom: .7em;
}

.studio-info {
  max-width: 950px;
  margin:  50px auto;
  display: flex;
  justify-content: space-between;
}

.studio-place-map {
  width: 100%;
  height: 30vw;
  max-height: 350px;
  margin-bottom: 30px;
  width: 48%;
}

.studio-place-map iframe {
  width: 100%;
  height: 100%;
}

.studio-place__place {
  width: 48%;
}

.studio-place__place table {
  font-family: var(--honbun);
  width: 100%;
  margin:  auto;
}

.studio-place__place tr {
  border-bottom: solid 1px #846C5A;
}

.studio-place__place th,
.studio-place__place td {
  padding: .5em 0;
  text-align: left;
}

.studio-place__place th {
  font-weight: normal;
  padding-right: .5em;
  width: 7em;
}

.studio-sns {
  max-width: 800px;
  margin:  25px auto 50px;
}

.studio-insta {
  width: 100%;
  margin:  25px auto 50px;
}

.studio-plan-wrap {
  width: 80%;
  padding: 2%;
  background: #fff;
  border-radius: 20px;
}

.plan-block h3,
.studio-sns h3 {
  text-align: center;
  color: #F08448;
  font-family: var(--midashi);
  font-size: var(--f4);
  margin-bottom: 2em;
}

.studio-sanbashi .plan-block h3,
.studio-sanbashi .studio-sns h3  {
  color: #b1c51f;
}




/* / スタジオ紹介 ------------*/



/* お問い合わせ ------------*/
.contact-block {
  width: 100%;
  margin: 20px 0 60px;
}

.contact-block h2 {
  color: var(--basecolor);
  font-size: var(--f4);
  padding-bottom: .2em;
  margin-bottom: 1.5em;
  background: url(./img/line001.jpg) no-repeat left bottom;
}

.contact-step {
  width: 100%;
}

.contact-step__num {
  width: 5em;
}

.contact-step__txt {
  margin: .8em 0 1em;
  padding-bottom: 1em;
  border-bottom: dotted 1px #707070;
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contact-flex p {
  width: 48%;
}

.contact-line-btn {
  width: 15em;
}

.contact-tel-btn {
  width: 23em;
}

.contact-table {
  width: 100%;
}

.contact-table th {
  text-align: left;
  vertical-align: top;
  width: 25%;
}

.contact-table td {
  text-align: left;
  width: 75%;
}

.required {
  color: #f00;
  font-size: var(--f6);
}

.contact__form dt {
font-size: var(--f5);
font-weight: bold;
position: relative;
padding: 10px 0 0 0;
width: 30%;
float: left;
clear: both;
margin: 0;
}

.contact__form dd {
width: 70%;
margin: 0 0 20px 30%;
line-height: 1.5;
}

.must {
color: red;
font-size: 1.4rem;
border: solid 1px red;
margin-left: 5px;
text-align: center;
padding: 2px;
}

input[type=text],
input[type=email],
select,
textarea {
  background: #fff;
  border: solid 2px #9F9F9F;
  border-radius: 5px;
  font-size: var(--f5);
  padding: 17px 10px;
  width: 100%;
}

select {
  width: 104%;
}

.form--submit {
  background: #907663;
  border-radius: 5px;
  height: 40px;
  margin: 0 0 0 25% !important;
  width: 8em;
  box-shadow: 3px 3px 0px 0px rgba(209, 199, 199, 1);
  transition: .5s;
  overflow: hidden;
}

.form--submit:hover {
  background: rgb(184, 159, 141);
  box-shadow: 0px 0px 0px 0px rgba(209, 199, 199, 1);
  margin: 1px 0 0 24.9%;
}

.form--submit .wpcf7-submit,
.form--submit .wpcf7-confirm {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: var(--f5);
  height: 40px;
  width: 8em;
}

.contact__form .confirm {
  margin: 20px 0 0 0;
  text-align: center;
}

.to-privacy {
  font-size: small;
  text-align: left;
}

.join-line {
  width: 787px;
  margin: 50px auto;
}

.join-line h3 {
  font-family: var(--honbunbold);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.join-line .line-btn {
  display: block;
  color: #fff;
  border: solid 3px #01b902;
  background: #01b902;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: var(--honbun);
  padding: .8em 0;
  width: 15em;
  margin: 20px auto 0;
  transition: .3s;
}

.join-line .line-btn:hover {
  border: solid 3px #01b902;
  background: #fff;
  color: #01b902;
}

.basic-table,
.basic-table input {
  font-family: var(--honbun);
}

/* / お問い合わせ -------*/



/* 私たちの想い ------------*/
.message-box {
  width: 80%;
  margin: auto auto 5em auto;
}

.message-box h2 {
  font-size: var(--f2);
  font-family: var(--midashi);
  color: var(--basecolor);
  border-bottom: dotted 1px var(--basecolor);
  padding-bottom: .5em;
  margin-bottom: .8em;
}

.message-box p {
  color: var(--basecolor);
  font-size: 1.125em;
  line-height: 2;
  width: 100%;
}

.message-photo {
  border-radius: 10px;
  overflow: hidden;
  width: 80%;
  margin: auto auto 2em auto;
}


/* / 私たちの想い ------------*/


/* ブログ一覧 ------------*/
.blog-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3em 0;
}

.blog-list::after {
  display: block;
  content: "";
  width: 30%;
}

.blog-list__item {
  width: 30%;
  border-bottom: dotted 1px #A77249;
  padding-bottom: .7em;
  margin-bottom: 2em;
}

.blog-list__item--img {
  width: 100%;
  height: 160px;
  border-radius: 15px;
  border: solid 5px #F7D7CC;
  vertical-align: bottom;
  overflow: hidden;
}

.blog-list__item--img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  object-position: center center;
}

.blog-list__item--day {
  font-size: var(--f6);
  line-height: 1;
  margin: .5em 0 0;
}

.blog-list__item--category {
  font-size: var(--f6);
  font-family: var(--honbun);
  display: inline-block;
  line-height: 1;
  margin: .5em 0;
  padding: .2em 0;
  color: #58380C;
  border: solid 1px #58380C;
  border-radius: 3px;
}

.blog-list__item--category a {
  /*display: block;*/
  width: 100%;
  padding: .1em .5em;
  text-decoration: none;
}

.blog-list__item--title {
  font-size: 1.15em;
  font-family: var(--honbun);
}

.blog-list__item--title a {
  text-decoration: none;
}

/* 一覧では最新の情報を非表示 */
.page-id-4635 #block-4, /* ←テストサイト */
.page-id-4635 #block-2, /* ←テストサイト */
.page-id-4782 #block-2,
.page-id-4782 #block-3 {
  display: none;
}
/* / 一覧では最新の情報を非表示 */

/* / ブログ一覧 ------------*/



/* 検索結果 */
.search__title {
  width: auto;
  color: var(--basecolor);
  font-size: var(--f2);
  margin-bottom: 30px;
}

.search__list {
  margin: 30px 0;
}

.search__list li {
  border-bottom: solid 1px #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.search__list--heading {
  font-size: var(--f4);
}

.search-no-results p.title {
  text-align: left;
  margin-bottom: 50px;
}

.search__list--txt {

}

.search-no-results #content {
  text-align: center;
  line-height: 2;
  border: solid 1px #333333;
  padding-bottom: 40px;
}

/* / 検索結果 */



/* プライバシーポリシー -------*/

  .nallow-box {
    margin: 60px auto 0;
    width: 80%;
  }

  .nallow-box h3,
  .liststyle01 li {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  
  .nallow-box h3 {
    margin: 30px 0 5px;
  }
  
  .liststyle01 {
    margin: -10px 0 20px 1rem;
  }
  
  .liststyle01 li {
    list-style-position: inside;
    list-style-type: disc;
  }


/* / プライバシーポリシー --------*/




/* 投稿ページ -------*/
.post--day {
  font-size: var(--f6);
  font-family: var(--honbun);
  margin: 3px 0;
}

.post--category {
  display: inline-block;
  margin: 3px 0;
}

.post--category a {
  display: block;
  font-size: var(--f6);
  font-family: var(--honbun);
  color: var(--basecolor);
  border: solid 1px var(--basecolor);
  border-radius: 5px;
  padding: 0 .65em;
  text-decoration: none;
}

h2.blog-ttl {
  font-family: var(--midashi);
  font-size: var(--f2);
  color: var(--basecolor);
  border-bottom: dotted 3px var(--basecolor);
  padding-bottom: .2em;
  margin-bottom: 1.5em;
}

.blog__main--photo {
  border-radius: 10px;
  overflow: hidden;
  vertical-align: bottom;
}

.blog__main--photo img {
  object-fit: cover;
  object-position: center center;
  margin-bottom: 1em;
}

.widget_block h4 {
  background: #FDEAE5;
  font-family: var(--midashi);
  color: var(--basecolor);
  margin-top: 3em;
  border-radius: 5px;
  padding: 1em;
}

.wp-block-latest-posts__list li,
.wp-block-categories-list li {
  border-bottom: dotted 1px var(--basecolor);
}

.wp-block-latest-posts__list li a,
.wp-block-categories-list li a {
  display: block;
  font-size: var(--f5);
  font-family: var(--honbun);
  text-decoration: none;
  background-color: #fff;
  padding: 1.2em 1em;
  transition: .7s;
}

.wp-block-latest-posts__list li a:hover,
.wp-block-categories-list li a:hover {
  background-color: #FFFCEB;
}

.wp-block-latest-posts__list li a::before {
  content: "●";
}



/*ブロックエディタ設定*/
.post figure {
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 1em;
  margin-top: 1em;
}

.post figure img,
.post img {
  border-radius: 10px;
  overflow: hidden;
  vertical-align: bottom;
  object-fit: cover;
}

.post .contact-step__num img {/*お問い合わせページ STEPの画像が切れるのを防止*/
  border-radius: 0;
}

figcaption {
  margin-top: .5em;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: var(--midashi);
}

.post h1 {
  font-size: var(--f1);
}

.post h2 {
  font-size: var(--f2);
}

.post h3 {
  font-size: var(--f3);
}

.post h4 {
  font-size: var(--f4);
}

.post h5 {
  font-size: var(--f5);
}

.post h6 {
  font-size: var(--f6);
}

.post p {
  font-size: var(--f5);
  font-family: var(--honbun);
  margin: 1em 0;
}

.post .aligncenter,
.post .aligncenter img,
.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}

.post .alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

.post .alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.post .has-text-align-center {
  text-align: center;
}

/* / ブロックエディタ設定*/




/* / アーカイブへのリンク */

/* 表の基本スタイル */
/*.wp-block-table {
  margin: 20px 0;
}

.wp-block-table table {
  border: solid 1px #A3A12F;
}

.wp-block-table table thead {
  border-bottom: solid 1px #A3A12F;
}

.wp-block-table table th,
.wp-block-table table td {
  border: solid 1px #A3A12F;
  padding: 1em;
}

.wp-block-table table th {
  background: #F0EE7E;
}

.table--middle {
  width: 845px;
  margin-left: auto;
  margin-right: auto;
}*/


/* / 表の基本スタイル */


/*ページネーション*/
p.pagenation {
  clear: both;
  font-size: 12px;
  font-size: 1.2rem;
  overflow: hidden;
}

span.oldpage {
  float: left;
}

span.newpage {
  float: right;
}

/* ページ番号リンク */
p.pagenum {
  text-align: center;
}

p.pagenum a {
  /*background-color: #e6e6e6;*/
  text-decoration: none;
  color: #575757;
}

.page-numbers {
  background-color: #fff;
  border: solid 1px #F7D7CC;
  border-radius: 50%;
  display: inline-block;
  font-size: var(--f6);
  line-height: 30px;
  margin: 5px;
  padding: 1em;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: .5s;
}

.page-numbers:hover {
  background-color: #F7D7CC;
}

.current {
  background-color: #F7D7CC;
  border: solid 1px #F7D7CC;
}

/*p.pagenum span {
  background-color: #fff;
  border: solid 1px #999;
  color: #333;
}

p.pagenum a, p.pagenum span {
  padding: 3px 6px;
  color: #333;
}*/

/* end ページネーション*/




/* 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/



/* フッター
--------------------------------------*/
.footer__container {
  width: 100%;
  background-color: #E2F7F6;
  padding: 30px 0 30px;
}

.footer__wrap {
  width: 1000px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: auto;
}

.footer__info {
  width: 30%;
  margin-right: 5%;
}

.footer__site-tit {
  width: 275px;
  margin-bottom: 5px;
}

.footer__address {
  font-family: var(--fontmain);
  font-size: var(--f7);
  margin-bottom: 5px;
}

.footer__tel-fax {
  font-family: var(--fontmain);
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.3;
}

.footer__nav--wrap {
  width: 65%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-top: 50px;
}

.footer__nav {
  font-family: var(--fontmain);
  font-size: var(--f7);
  margin-right: 5%;
}

.footer__nav li {
  margin-bottom: 20px;
}

.footer__nav li::before {
  content: "〉";
  padding-right: .5em;
}

.footer__nav li a {
  text-decoration: none;
}

.footer__nav li a:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-size: var(--f8);
  text-align: center;
  width: 100%;
}



/* トップに戻るボタン */
  .to-top {
    position: fixed;
    bottom: 50px;
    right: 80px;
    height: 52px;
    width: 17px;
  }

  .to-top img {
    height: auto;
    width: 100%;
  }

  .to-top a:hover {
    opacity: .6;
  }

/* / トップに戻るボタン */

/* end フッター
--------------------------------------*/


/* end レイアウト
---------------------------------------------*/



/* レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/
@media screen and (max-width: 768px){

  /* iPhone safariの右側余白対策 */
  html, body {
    overflow-x: hidden;
  }

/* ヘッダー
--------------------------------------*/

.header--wrap {
  display: block;
  height: 65px;
  /*background-color: rgba(253, 255, 255, .5);*/
  backdrop-filter: blur(10px);
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  min-width: 95vw;
  width: 95vw;
  padding: 0 2.5%;
  position: fixed;
  top: 0;
  z-index: 100;
}

.site-tit {
  width: 250px;
  padding-left: 0;
  padding-top: 15px;
}

.header__logo {
  width: 15.5vw;
  padding-left: .5em;
}


/* ハンバーガーメニュー */
.toggle-btn {
  display : block;
  position: fixed;
  right : 1vw;
  top   : 10px;
  width : 13vw;
  height: 13vw;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  z-index: 150;
}
.toggle-btn span {
  display : block;
  position: absolute;
  width   : 24px;
  height  : 3px;
  left    : 3.5vw;
  background : #484848;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  z-index: 15;
}
.toggle-btn span:nth-child(1) {
  top: 16px;
}
.toggle-btn span:nth-child(2) {
  top: 24px;
}
.toggle-btn span:nth-child(3) {
  top: 32px;
}

/* スマホメニューを開いてる時のボタン */
.toggle-btn.active span:nth-child(1) {
  top : 23px;
  left: 13px;
  background: #484848;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.toggle-btn.active span:nth-child(2),
.toggle-btn.active span:nth-child(3) {
  top: 23px;
  background: #484848;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景 */
.global-nav--wrap {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #F6FFFE;
  text-align: left;
  width: 94%;
  padding: 10vh 3% 10vh;
  height: 80vh;
  transform: translateX(100%);
  transition: all .7s;
  opacity: 0;
  overflow-y: auto;
}

.nav__contact--wrap {
  display: block;
  width: 100%;
}

.header--tel {
  font-family: var(--fontmain);
  font-size: 2em;
  font-weight: 900;
  font-style: normal;
  position: relative;
  padding-left: 27px;
  margin-right: 0;
  margin-left: 23vw;
  text-align: center;
  display: inline-block;
}

.header--tel::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: url(./img/tel_icon.svg) no-repeat;
  background-size: contain;
  left: 0;
  top: calc(50% - 8px);
}

.header--contact {
  width: 100%;
  margin: 10px 0;
}

.header--contact a {
  display: block;
  width: 100%;
  height: 60px;
  color: #fff;
  background-color: var(--basecolor);
  border-radius: 50px;
  font-family: var(--fontmain);
  font-size: var(--f7);
  text-align: center;
  line-height: 60px;
  place-items: center;
  text-decoration: none;
  border: solid 1px #000;
}

.global-nav {
  display: block;
  width: 90%;
  margin: 0 auto 10px;
  border-bottom: solid 1px #000;
}

.global-nav li {
  margin: 0;
  border-top: solid 1px #000;
}

.global-nav li a {
  position: relative;
  font-family: var(--fontmain);
  font-weight: 500;
  font-size: 1.125em;
  display: block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 1em 0;
  transition: .3s;
  z-index: 2;
}


/* クリックでjQueryで追加・削除 */
.global-nav--wrap.active {
  opacity: 1;
  display: block;
  transform: translateX(0%);
}

/* end ヘッダー
--------------------------------------*/


/* ページレイアウト
--------------------------------------*/

/* サイトの幅指定 ------------*/
.main__container {
  max-width: 90vw;
  padding: 20px 0 0;
  margin:  0 auto 100px;
}


.container__large,
.container__middle,
.container__small,
.container__blog,
.blog__article,
.blog__sidebar {
  width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
}

.container__blog {
  display: block;
}

.container__column {
  min-width: 96%;
  max-width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
  display: block;
  justify-content: space-between;
}

.container__mainContent {
  width: 100%;
}

.container__sidebar {
  width: 100%;
}

/* / サイトの幅指定 ------------*/


/* ボタンの設定 ------------*/
.btn001 {
  
}

.btn001--small {
  
}

/* / ボタンの設定 ------------*/


/* 共通設定 ------------*/
.w80 {
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page__heading {
  font-size: 1.375em;
  margin-bottom: 20px;
}

.page__heading--middle {
  font-size: 1.15em;
  margin-bottom: 10px;
}

.page__heading--big {
  font-size: 1.15em;
  padding: .5em 0 .5em 15px;
  margin: 20px auto;
  width: calc(100% - 15px);
}

.table-style01 table {
  width: 100%;
  margin: 20px auto;
}

.table-style01 td {
  display: block;
  width: 100%;
}

.table-style01 tr td:first-child {
  font-weight: bold;
  width: 100%;
  border-bottom: dotted 1px #707070;
}

/* / 共通設定 ------------*/



/*トップページ------------*/

.main-visual--wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 94vw;
  min-width: 94vw;
  margin: 70px auto 60px;
}

.catch-copy--wrap {
  position: relative;
  width: 23vw;
  height: 60vh;
  display: grid;
  place-items: end;
  position: relative;
  z-index: 10;
}

.catch-copy--wrap > div {
  width: 80vw;
  position: absolute;
  bottom: 20px;
  left: 0;
}

.catch-copy {
  width: 80vw;
  font-size: 1.875em;
  font-weight: 700;
}

.catch-copy-sub {
  width: 60vw;
  font-size: .75em;
  font-weight: 700;
  margin: 0;
  padding-bottom: 30px;
}

.main-visual__slides {
  width: 70vw;
  height: 60vh;
}

#metaslider-id-10 {
  border-radius: 30px;
  overflow: hidden;
  width: 70vw;
  height: 60vh;
}

#metaslider-id-10 img {
  width: 70vw;
  height: 60vh;
  object-fit: cover;
}

.top__heading {
  text-align: center;
  margin: 30px auto;
}

.top__heading div {
  font-size: 1.875em;
  padding-left: 30px;
}

.top__heading div::before {
  width: 28px;
  height: 28px;
  top: calc(50% - 12px);
  background-size: contain;
}

.top__feature--wrap {
  width: 94vw;
  display: block;
  margin: 20px auto 33px;
}

.top__feature--info,
.top__feature--photo {
  width: 100%;
}

.top__feature--photo {
  margin-top: 20px;
}

.top__feature--info h3 {
  font-size: 2.25em;
  margin-bottom: 10px;
}

.top__feature--info p {
  margin-bottom: 20px;
}

.top__feature--reverse {
  flex-direction: none;
}

.top__point--wrap {
  width: 94vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px auto;
}

.top__point {
  width: 43%;
  height: 320px;
  padding: 20px 2.5%;
  border: solid 2px #3B3B3B;
  border-radius: 20px;
  margin-bottom: 20px;
}

.top__point h4 {
  font-size: 1.25em;
  margin-bottom: 15px;
}

.top__service--wrap {
  width: 94vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px auto;
}

.top__service {
  text-align: center;
  width: 48%;
  height: 180px;
  border-bottom: solid 2px #3B3B3B;
  margin: 0 0 25px 0;
}

.top__service h4 {
  font-size: 1.125em;
}

.ban--area {
  display: none;
}

.ban--area-sp {
  display: block;
  width: 90%;
  margin: 60px auto 60px;
  box-shadow: 1px 4px 8px 0px #bcc8bc;
}

.recruit__ban--wrap {
  background: url(./img/bg_recruit.png) no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 740px;
  min-width: 100%;
}

.recruit__ban--ttl {
  font-family: var(--fontmain);
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  color: var(--basecolor);
  padding: 60px 0 20px;
}

.recruit__ban--wrap p {
  margin-bottom: 30px;
}

.recruit__ban--img001 {
  width: 25vw;
  height: 25vw;
  top: auto;
  bottom: 30%;
  left: 5vw;
}

.recruit__ban--img002 {
  width: 35vw;
  height: 35vw;
  bottom: 10%;
  left: 10vw;
}

.recruit__ban--img003 {
  width: 35vw;
  height: 35vw;
  top: auto;
  bottom: 22%;
  right: 16vw;
}

.recruit__ban--img004 {
  width: 25vw;
  height: 25vw;
  bottom: 5%;
  right: 10vw;
}

.sorasido-group--wrap {
  width: 86vw;
  margin: 20px auto 50px;
  padding: 20px 3vw 40px;
  text-align: center;
  border: solid 5px #ABF0EB;
  border-radius: 30px;
}

.sorasido-group--ttl {
  font-family: var(--fontmain);
  font-size: 2.125em;
  font-weight: 700;
  text-align: center;
  background-color: #ABF0EB;
  border-radius: 50px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 10px;
}

.sorasido-group--conmpany--wrap {
  display: block;
  width: 295px;
  margin: 10px auto;
}

.sorasido-group--conmpany {
  margin-bottom: 10px;
}

.sorasido-groupe--txt {
  margin-bottom: 15px;
}


/* / トップページ------------*/



/* ページタイトル ------------*/
.page__ttl--wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 30px;
  overflow: hidden;
  max-width: 94vw;
  min-width: 94vw;
  height: 150px;
  margin: 80px auto 20px;
  text-align: center;
  padding: 1.5em 0 0;
}

.page__ttl {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  font-size: 1.75em;
  line-height: 1.2;
  font-family: var(--fontmain);
  color: var(--basecolor);
  text-align: center;
  padding: .5em 1.5em 0;
  height: 50px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}


/* / ページタイトル ------------*/



/* 事務所紹介 ------------*/
.page__block--wrap {
  display: block;
  margin-bottom: 40px;
}

.page__block {
  width: 100%;
}


/* / 事務所紹介 ------------*/




/* 撮影プラン ------------*/
.plan-mainimage {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto 30px;
}

.plan-mainimage img {
  width: 100%;
}

.flow-block {
  width: 100%;
  background-color: var(--secondcolor);
  border-radius: 15px;
  padding: 1.5% 0%;
  margin: 80px auto;
}

.heading {
  margin: 3em auto 1em;
  background-color: transparent;
}

.flow-ttl {
  color: #EB8C2D;
  text-align: center;
  font-size: var(--f3);
  margin-top: 10px;
  margin-bottom: .5em;
  position: relative;
  cursor: pointer;
  font-family: var(--midashi);
}

.flow__step {
  background-color: #fff;
  border-radius: 10px;
  width: 86%;
  padding: 4%;
  margin: 0 auto 20px;
}

.flow__step dt {
  font-family: var(--midashi);
  font-size: var(--f3);
  position: relative;
  margin-left: .5em;
  margin-bottom: .5em;
  margin-top: 2.5em;
  padding-left: 0;
  color: #EB8C2D;
}

.flow__step dd {
  margin-left: .5em;
}

.plan-menu-block {
  width: 90%;
  background-color: #FFF5F6;
  border-radius: 15px;
  padding: 1.5em 3%;
  margin: 80px auto 50px;
}

.plan-menu-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.plan-menu-icon li {
  width: 26%;
  margin: 10px 2%;
}

.photo-option {
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.photo-option table {
  font-size: var(--f5);
  width: 100%;
  margin: auto;
}

.photo-option td {
  padding: 1em .5em;
}

.goods-option {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.goods-option__list {
  background-color: #F8F4EF;
  border-radius: 10px;
  width: 42%;
  padding: 3%;
  margin-bottom: 20px;
  display: block;
}

.goods-option-list__box {
  width: 100%;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.goods-option-list__image,
.goods-option-list__txt {
  width: 100%;
}

.goods-option-list__image {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1em;
}



/* / 撮影プラン ------------*/


/* ページタイトル ------------*/

.page-ttl {
  background: url(./img/bg-wave-header.png) no-repeat top center;
  background-size: cover;
  font-size: var(--f2);
  font-family: var(--midashi);
  color: var(--basecolor);
  width: 100%;
  margin: 65px auto 0;
  text-align: center;
  padding: 1.5em 0;
}

.page-ttl__studio {
  background: url(./img/bg-wave-studio-top.png) no-repeat top center;
  background-size: cover;
  font-size: var(--f2);
  font-family: var(--midashi);
  color: var(--basecolor);
  width: 100%;
  margin: 65px auto 0;
  text-align: center;
  padding: 1.5em 0;
}

/* / ページタイトル ------------*/


/* よくある質問 ------------*/
.faq-block h2 {
  color: var(--basecolor);
  font-size: var(--f4);
  padding-bottom: .2em;
  margin-bottom: .7em;
  background: url(./img/line001.jpg) no-repeat left bottom;
}

.faq__question {
  padding: 1em 3em .1em 3em;
  font-size: var(--f5);
  margin-bottom: 1em;
}

/* / よくある質問 ------------*/


/* スタジオ紹介 ------------*/
.studio-ttl__yokohama,
.studio-ttl__sanbashi {
  width: 80%;
}

.studio-yokohama {
  background-color: #FCF2ED;
  background-image: url(./img/bg-wave-studio.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  margin: auto;
  padding-bottom: 20px;
  padding-top: 20px;
}

.studio-sanbashi {
  padding-top: 70px;
}

.studio-photo {
  width: 96vw;
  display: block;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
  margin: auto;
}

.studio-photo figure {
  margin: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5em;
}

.studio-info {
  max-width: 96vw;
  width: 96vw;
  margin:  50px auto;
  display: block;
}

.studio-place-map,
.studio-place__place {
  width: 100%;
}

.studio-sns {
  max-width: 96vw;
  width: 96vw;
  margin:  25px auto 50px;
}

.studio-plan-wrap {
  width: 94vw;
  padding: 2vw;
  background: #fff;
  border-radius: 20px;
}

.studio-plan-wrap .plan-list {
  width: 90vw;
}

.studio-plan-wrap .plan-list__plan {
  width: 40vw;
}

.studio-place-map {
  width: 100%;
  height: 300px;
  max-height: 300px;
  margin-bottom: 30px;
}

.studio-place__place,
.studio-place__place table {
  font-family: var(--honbun);
  width: 100%;
  margin:  auto;
}

.studio-place__place th,
.studio-place__place td {
  padding: .5em 0;
  display: block;
}

.studio-place__place th {
  text-align: left;
  width: 100%;
}




/* / スタジオ紹介 ------------*/


/* お問い合わせ -------*/
.contact-flex {
  display: block;
  justify-content: space-between;
  width: 100%;
}

.contact-flex p {
  width: 100%;
}

.contact-table th,
.contact-table td {
  display: block;
  width: 90%;
}

.form--submit {
  margin: 0 auto !important;
}

/* / お問い合わせ -------*/



/* 私たちの想い ------------*/
.message-box {
  width: 90%;
  margin: auto auto 3em auto;
}

.message-box h2 {
  font-size: var(--f3);
}

.message-box p {
  font-size: var(--f5);
}

.message-photo {
  width: 90%;
  margin: auto auto 2em auto;
}


/* / 私たちの想い ------------*/


/* ブログ一覧 ------------*/
.blog-list__item {
  width: 45%;
}

.blog-list__item--img {
  width: 100%;
  height: 26vw;
  border-radius: 15px;
  border: solid 5px #F7D7CC;
  vertical-align: bottom;
  overflow: hidden;
}

/* / ブログ一覧 ------------*/


    /* / 下層ページ全体-------*/




  /* プライバシーポリシー -------*/

  .nallow-box {
    margin: 40px auto 0;
    width: 92%;
  }
  
  .nallow-box h3,
  .liststyle01 li {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  
  .nallow-box h3 {
    margin: 30px 0 5px;
  }
  
  .liststyle01 {
    margin: -10px 0 20px 1rem;
  }
  
  .liststyle01 li {
    list-style-position: inside;
    list-style-type: disc;
  }


/* / プライバシーポリシー --------*/

/* 投稿ページ -------*/
.post figure img,
.post img {
  max-width: 100%;
}


/* / 投稿ページ -------*/

/* 表の基本スタイル */
.table--middle {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* / 表の基本スタイル */


/* end ページレイアウト
--------------------------------------*/

  

/* フッター
--------------------------------------*/

.footer__wrap {
  width: 90vw;
  display: block;
}

.footer__info {
  width: 100%;
  margin-right: 0;
}

.footer__nav--wrap {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  padding-top: 20px;
}


  /* トップへ戻るボタン */
  .to-top {
    position: fixed;
    bottom: 50px;
    left: 3%;
    height: 52px;
    width: 17px;
  }


/* end フッター
--------------------------------------*/






}
/* end レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/