@charset "UTF-8";
/* CSS Document */
/* レスポンシブ共通設定*/
body
{
    background-color: #F0EDE6;
    color: #222222;
    font-family:
        "Shippori Mincho",
        "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    font-size: clamp(1rem, 0.429rem + 1.22vw, 1.875rem);
    width: 100%;
}
/*ハイライトの枠線を消す*/
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor: pointer;
}
*:focus {
  outline: none;
}
.shutter
{
    animation: byeShutter 2s forwards;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e1e1e;
    z-index: 9999;
}
.shutter::before,
.shutter::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.shutter::before
{
    background-color: #b5a58b;
    width: 0;
    height: 1px;
    animation: shutterOpen1 2s forwards;
}
.shutter::after
{
    width: 120%;
    height: 0;
    margin-left: -10%;
    background-color: #f3f3f3;
    animation: shutterOpen2 2s forwards;
  }
@keyframes byeShutter
{
    70%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
        display: none;
        z-index: -1;
    }
}
@keyframes shutterOpen1
{
    0%
    {
        width: 0;
        height: 1px;
    }
    50%
    {
        width: 100%;
        height: 1px;
    }
    90%
    {
        width: 100%;
        height: 100%;
    }
    100%
    {
        width: 100%;
        height: 100%;
    }
}
@keyframes shutterOpen2
{
    60%
    {
        width:120%;
        height:0;
        transform:rotate(5deg);
    }
    90%
    {
        width:120%;
        height:100%;
        transform:rotate(-5deg);
    }
    100%
    {
        width:120%;
        height:100%;
        transform:rotate(-5deg);
    }
}
section
{
    margin-bottom: 8rem;
}
#aboveArea
{
    width: 100%;
}

#aboveArea .copyright
{
    animation-name: fade-in;
    animation-delay: 7s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
    font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
    margin-bottom: 10vh;
    text-align: center;
}
h1
{
    animation: blur 5s both;
    filter: blur(10px);
    font-size: clamp(2.5rem, 1.364rem + 5.68vw, 5.625rem);
    letter-spacing: 4px;
    line-height: 1.4;
    opacity: 0;
}
h1 span
{
    opacity: 0;
    animation: letter-glow 0.5s 0s ease both;
}
h1 span:nth-child(1)
{
    animation-delay: 2s;
}
h1 span:nth-child(2)
{
    animation-delay: 2.2s;
}
h1 span:nth-child(3)
{
    animation-delay: 2.4s;
}
h1 span:nth-child(4)
{
    animation-delay: 2.6s;
}
h1 span:nth-child(5)
{
    animation-delay: 2.8s;
}
h1 span:nth-child(6)
{
    animation-delay: 3s;
}
h1 span:nth-child(7)
{
    animation-delay: 3.2s;
}
h1 span:nth-child(8)
{
    animation-delay: 3.4s;
}
h1 span:nth-child(9)
{
    animation-delay: 3.6s;
}
h1 span:nth-child(10)
{
    animation-delay: 3.8s;
}
h1 span:nth-child(11)
{
    animation-delay: 4s;
}
h1 span:nth-child(12)
{
    animation-delay: 4.2s;
}
h1 span:nth-child(13)
{
    animation-delay: 4.4s;
}
h1 span:nth-child(14)
{
    animation-delay: 4.6s;
}
h1 span:nth-child(15)
{
    animation-delay: 4.8s;
}
h1 span:nth-child(16)
{
    animation-delay: 5s;
}
h1 span:nth-child(17)
{
    animation-delay: 5.2s;
}
h2
{
    animation: sideSlide forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 50%;
    font-size: clamp(1.375rem, 0.739rem + 3.18vw, 3.125rem);
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    position: relative;
    text-align: center;
	transform: translate(-300px, 0) scale(0);
}
h3
{
    font-size: clamp(1.625rem, 0.583rem + 2.22vw, 2.25rem);
    line-height: 1.4;
    margin: 3rem 0 0.5rem 0;
}
h3 span
{
    color: #333;
    font-size: clamp(1.25rem, 0.417rem + 1.78vw, 1.75rem);
}
h4
{
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-size: clamp(1.125rem, 0.292rem + 1.78vw, 1.625rem);
    margin: 6rem 0 3rem 0;
    padding: 0.7rem 0;
    text-align: center;
}
@keyframes sideSlide
{
	60%
    {
		transform: translate(20px, 0) scale(1);
		color: #b10e81;
	}

	80%
    {
		transform: translate(20px, 0) scale(1);
		color: #b10e81;
	}

	99%
    {
		transform: translate(0) scale(1.2);
		color: #00f0ff;
	}

	100%
    {
		transform: translate(0) scale(1);
		opacity: 1;
		color: #222222;
	}
}

@keyframes letter-glow
{
    0%
    {
        opacity: 0;
        text-shadow: 0px 0px 1px rgba(255,255,255,0.1);
    }
    66%
    {
        opacity: 0.7;
        text-shadow: 0px 0px 20px rgba(255,255,255,0.9);
    }
    77%
    {
        opacity: 1;
    }
    100%
    {
        opacity:1;
        text-shadow: 0px 0px 20px rgba(255,255,255,0.0);
    }
}
@keyframes blur
{
    0%
    {
        opacity: 0;
        filter: blur(10px);
    }
    100%
    {
        opacity: 1;
        filter: blur(0);
    }
}
@keyframes svg
{
    0%
    {
        fill: transparent;
        stroke-dashoffset: 400px;
    }
    100%
    {
        stroke-dashoffset: 0;
    }
}
.fo1
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo2
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo3
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo4
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo5
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo6
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo7
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo8
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 1.2s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo9
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo10
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo11
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo12
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo13
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo14
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo15
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo16
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo17
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo18
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo19
{
    stroke: #231815;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo20
{
    stroke: #000;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo21
{
    stroke: #000;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo22
{
    stroke: #000;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo23
{
    stroke: #000;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo24
{
    stroke: #000;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
.fo25
{
    stroke: #000;
    stroke-width: 0.5px;
    stroke-dasharray: 400px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 6s, 7s;
}
@keyframes svg-color
{
    0%
    {
        fill: transparent;
    }
    90%
    {
        fill: #231815;
    }
    100%
    {
        fill: #231815;
        stroke-width: 0px;
    }   
}
#subCopy
{
    animation-name: fade-in;
    animation-delay: 7s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
    font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
    font-weight: bold;
    line-height: 1.5;
}
#snsArea
{
    margin-bottom: 4rem;
}
#snsArea img
{
    animation-name: fade-in;
    animation-delay: 8s;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fade-in
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
#serviceArea h3
{
    text-align: center;
}
#serviceArea h4
{
    font-weight: bold;
}
#serviceArea li
{
    font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
    letter-spacing: 0.05rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}
#companyArea dt
{
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    font-weight: bold;
    margin-bottom: 1rem;
}
#companyArea dd
{
    font-size: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
    line-height: 1.5;
    margin-bottom: 3rem;
}
/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#profileArea h3
{
    font-size: clamp(1.625rem, 0.583rem + 2.22vw, 2.25rem);
}
#profileArea #profession
{
    border-top: solid 1px;
    font-size: clamp(1.125rem, 0.5rem + 1.33vw, 1.5rem);
    margin-bottom: 2rem;
    padding-top: 0.5rem;
}
#profileArea #birthplace
{
    font-size: clamp(1rem, 0.583rem + 0.89vw, 1.25rem);
    margin-bottom: 2rem;
}
#profileArea .discription
{
    font-size: clamp(1rem, 0.583rem + 0.89vw, 1.25rem);
    letter-spacing: 0.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}
#profileArea #selfPortrait
{
    border-radius: 20px;
    width: 100%;
}
#profileArea li
{
    font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
    line-height: 1.4;
    margin-bottom: 2.5rem;
}
#profileArea li.emphasisDown
{
    font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
}
#profileArea li span
{
    color: #333;
    font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
}
#profileArea li.emphasisDown span
{
    font-size: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
}
#profileArea li.award
{
    color: #ad9829;
    font-size: clamp(0.688rem, 0.574rem + 0.57vw, 1rem)
}
#profileArea li ul
{
    margin-top: 1rem;
    margin-left: 1rem;
}
#profileArea li ul li
{
    margin-bottom: 1rem;
}
/* 画像スライダーの前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next
{
    height: 30px;
    width: 30px;
}
/* 画像スライダーの前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after
{
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 30px;
    margin: auto;
    opacity: 0.5;
    width: 30px;
}
/* 画像スライダーの前への矢印カスタマイズ */
.swiper-button-prev::after
{
    background-image: url('../img/circle-arrow-left-solid.svg');
}
/* 画像スライダーの次への矢印カスタマイズ */
.swiper-button-next::after
{
    background-image: url('../img/circle-arrow-right-solid.svg');
}
/* 画像スライダーの画像サイズ調整 */
.swiper-slide img
{
    height: auto;
    width: 100%;
}
#contactArea p
{
    margin: 2rem 0 0 0;
    text-align: left;
}
#contactArea p a
{
    color: blue;
    text-decoration: underline;
}
#contactArea .attention
{
    font-size: clamp(0.625rem, 0.417rem + 0.44vw, 0.75rem);
}
#profileArea #etc
{
    font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem);
    text-align: right;
}
#profileArea  .attention
{
    color: #444444;
    font-size: clamp(0.625rem, 0.417rem + 0.44vw, 0.75rem);
    margin-bottom: 8vh;
}
#policyArea p
{
    font-size: clamp(0.875rem, 0.667rem + 0.44vw, 1rem);
    letter-spacing: 0.1rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}
#policyArea dt
{
    font-size: clamp(0.75rem, 0.542rem + 0.44vw, 0.875rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
}
#policyArea dd
{
    font-size: clamp(0.625rem, 0.417rem + 0.44vw, 0.75rem);
    letter-spacing: 0.1rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}
#policyArea #date
{
    text-align: right;
}
footer
{
    padding: 0 0 2vw 0;
}
footer p
{
    font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
    text-align: center;
}
/*モバイル用（0px 〜 780px） Start*/
@media (max-width: 780px)
{
    .hiddenPc
    {
        display: none;
    }
    h2 span
    {
        display: block;
    }
    #contents
    {
        padding: 40px;
        width: 100%;
    }
    #aboveArea svg
    {
        display: block;
        margin: 12vh auto 0 auto;
        width: 100%;
    }
    #snsArea
    {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 6vh;
        
    }
    #snsArea img
    {
        margin: 0 5vw;
        width: 10vw;
    }
    #profileArea li span
    {
        display: block;
        margin-top: 0.5rem;
    }
}
/*モバイル用（0px 〜 780px） End*/
/*PC用（781px 〜） Start*/
@media (min-width: 781px)
{
    .hiddenSp
    {
        display: none;
    }
    h2 span
    {
        padding-left: 2rem;
    }
    #contents
    {
        margin: 0 auto;
        padding: 60px;
        width: 100%;
        max-width: 1000px;
    }
    #aboveArea
    {
        margin-right: 20px;
        margin-left: 20px;
    }
    #aboveArea svg
    {
        display: block;
        margin: 8vh auto 0 auto;
        width: 90%;
    }
    #subCopy
    {
        text-align: center;
    }
    #snsArea
    {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 60px;
        
    }
    #snsArea img
    {
        margin: 0 2rem;
        width: 4vw;
    }
    #serviceArea ul,
    #companyArea dl
    {
        margin: 0 auto;
        width: 60%;
    }
}
/*PC用（781px 〜） End*/
