@charset "UTF-8";

/* 設定 */
:root {
    --scrollbar: 0;
    --maincolor: #6F443F;
    --h1bgcolor: #4D2E2B;
    --menubgcolor: rgba(77,46,43,.95);
    --bgcolor: #fff;
    --bgcolor2: #FAEFE1;
    --bgcolor3: rgba(230,215,195,.5);
    --subcolor: #CC633D;
    --bordercolor: rgba(83,53,49,0.25);
    --important: rgba(0,206,209,0.65);
    --turquoise: #00CED1;
    --turquoise2: #85C6CC;
    --turquoise3: #56B6BF;

    --h2font: fairplex-narrow, serif;
    --eyecatchfont: YakuHanMP,'Noto Serif JP','ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',serif;
    --textfont: YakuHanJP,'IBM Plex Sans JP','Roboto','Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    --YHnukifont: 'IBM Plex Sans JP','Roboto','Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}

/* 共通部分 */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--textfont);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--maincolor);
    background-color: var(--bgcolor);
    width: 100%;
    height: 100%;
}
main {
    height: 100%;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
}
a {
    text-decoration: none;
    color: var(--maincolor);
}
a:hover {
    color: var(--turquoise);
}
img {
    max-width: 100%;
    margin: 0;
    vertical-align: bottom;
}
ul li {
    list-style-type: none;
}
.wrapper {
    max-width: 1030px;
    margin: 0 auto;
    padding-inline: 15px;
}

h2 {
    font-family: var(--h2font);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--maincolor);
    text-align: center;
    line-height: 1.0;
}

h3 {
    font-family: var(--eyecatchfont);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--subcolor);
    line-height: 1.6;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* header
----------------------------- */
header {
    color: var(--bgcolor);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--eyecatchfont);
    font-weight: 300;
    position: sticky;
    top: 0;
    padding-inline: 100px;
    z-index: 8;
}
#headerbase {
    background-color: var(--h1bgcolor);
    height: 60px;
    width: 100%;
    position: sticky;
    top: 0;
    margin-top: -60px;
    z-index: 7;
    mix-blend-mode: multiply;
}

.mainnav {
    display: flex;
}
.mainnav li {
    margin: auto 15px;
    text-transform: capitalize;
    font-size: 0.9rem;
}
.mainnav li:first-child {
    margin-left: 0;
}
header a, .menua {
    color: var(--bgcolor);
}
header a:hover, .menua:hover {
    color: var(--turquoise);
}
.logo svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
    margin-top: 5px;
}
.logo {
    margin-right: 10px;
}
li.logo {
    min-width: 50px;
}
header h1 {
    font-size: 1rem;
}
header h1 ul {
    display: flex;
    align-items: center;
}
    /* スライドメニュー部分 */
    .btn-menu {
        display: none;
    }
    .main-nav {
        font-family: var(--h2font);
        font-weight: 500;
        color: var(--bgcolor);
        background-color: var(--menubgcolor);
        width: 0;
        height: 100vh;
        position: absolute;
        z-index: 9;
        top: 0;
        right: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        font-size: 28px;
        letter-spacing: 2px;
        transition: .5s;
    }
    .main-nav li{
        text-align: center;
        margin-top: 30px;
    }
    .main-nav li:first-child {
        margin-top: 0;
    }
    .main-nav a {
        display: block;
        color: var(--bgcolor);
    }
    .main-nav.open-menu, .main-nav.active {
        width: 100%;
    }


    .fa-bars {
        font-size: 24px;
    }
    .fa-xmark {
        font-size: 28px;
    }

    /* Section:TOP  */
    section#top {
        width: 100%;
        height: 100vh;
        background: linear-gradient(115deg, rgba(242,199,150,0.95) 50%, rgba(143,187,191,0.9) 100%),url(../images/top.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-blend-mode: color;
        position: absolute;
        top: 0;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    .topwrapper {
        max-width: 75vw;
            margin: 0 auto;

    }
    .topline {
        margin-top: 160px;
        font-family: var(--eyecatchfont);
        font-weight: 700;
        font-size: 68px;
        line-height: 1.42;
        color: var(--maincolor);
        mix-blend-mode: multiply;
        filter: drop-shadow(0 0 15px var(--h1bgcolor));
        -webkit-filter: drop-shadow(0 0 15px var(--h1bgcolor));
    }
    .toplayer2 {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 67vh;
        background-color: var(--bgcolor3);
        clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
        -webkit-clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
    }
    .toplayer2 .topwrapper {
        width: 100%;
        height: 67vh;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .toptitle{
        margin-bottom: 15vh;
        color: var(--maincolor);
    }
    #coaching {
        display: block;
        text-align: right;
        font-family: var(--eyecatchfont);
        font-weight: 600;
        font-size: 56px;
        line-height: 1.0;
        margin-bottom: 18px;
    }
    #toptitle {
        display: block;
        font-family: 'Cinzel Decorative', serif;
        font-weight: 700;
        font-size: 78px;
        line-height: 0.8;
        padding-top: 8px;
        border-top: solid 2px var(--maincolor);
        border-bottom: solid 2px var(--maincolor);
    }

/* about  */
section#about {
    margin-top: calc(100vh - 100px);
    padding-top: 100px;
}
.aboutwrap {
    display: flex;
}
.dreamcatcher {
    max-width: 360px;
    max-height: 670px;
    width: 40%;
    border-radius: 36px;
    object-fit: cover;
    object-position: center bottom;
    margin-right: 2rem;
}
.abouttext p {
    margin-top: 2rem;
}
.abouttext p:first-child {
    margin-top: 0;
}
p.name {
    font-size: 2.25rem;
    text-align: right;
    margin-top: 4rem;
}

/* profile  */
section#profile {
    width: 100%;
    background: url(../images/plof-bg.jpg);
    background-color: rgba(250,239,225,0.42);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: screen;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    -webkit-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    margin-top: 140px;
    padding-top: 200px;
    padding-bottom: 180px;
}
.profbase {
    width: 515px;
    padding: 60px 40px 50px 40px;
    background-color: rgba(235,229,220,0.60);
}
.profbase h2 {
    margin-top: 0;
}
.profwrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.face {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    border: solid 2px var(--turquoise3);
    object-fit: cover;
}
.profwrap p {
    font-size: 1.5rem;
    margin-left: 40px;
}
.proftext {
    background-color: rgba(111,68,63,0.1);
    padding: 40px 20px;
    margin-top: 40px;
}
.proftext p {
    margin-top: 2rem;
}
.proftext p:first-child {
    margin-top: 0;
}


/* service  */
section#service {
    padding-top: 100px;
    width: 100%;
    background-image: url(../images/service.png);
    background-color: rgba(255,255,255,0.7);
    background-size: contain;
    background-position: center right;
    background-blend-mode: screen;
}
.servicetext {
    width: 44rem;
}
.point {
    margin-top: 80px;
    list-style: none;
}
.point li {
    counter-increment: list;
    margin-top: 40px;
}
.point li:first-child {
    margin-top: 0;
}
.point li::before {
    content: counter(list);
    color: var(--bgcolor);
    background-color: var(--subcolor);
    display: inline-block;
    width: 42px;
    height: 42px;
    font-family: var(--h2font);
    font-size: 32px;
    line-height: 1.0;
    padding-top: 5px;
    text-align: center;
    border: solid 1px var(--bgcolor);
    box-shadow: 0 0 0 4px var(--subcolor);
    margin-right: 16px;
    margin-left: 4px;
}
.pointhead {
    display: inline;
    font-size: 2rem;
    font-weight: 500;
}
.pointtext {
    margin-left: 66px;
}
.pointhead span {
    text-underline-offset: -5px;
    text-decoration: underline;
    text-decoration-thickness: 12px;
    text-decoration-color:  var(--important);
}

/* contact button  */
#contactbtn {
    width: 100px;
    height: 100px;
    background-color: var(--h1bgcolor);
    color: var(--bgcolor2);
    border: solid 1px var(--bgcolor2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    font-size: 60px;
    padding-top: 8px;
    bottom: 15px;
    right: 15px;
    opacity: 0;
    z-index: 6;
    transform: translateY(120px);
    transition: 0.3s;
}
#contactbtn .menua {
    color: var(--bgcolor2);
} 
#contactbtn:hover {
    background-color: var(--turquoise);
} 

    /*　上に上がる動き　*/

    #contactbtn.UpMove{
        animation: UpAnime 0.5s forwards;
    }
    @keyframes UpAnime{
    from {
        opacity: 0;
        transform: translateY(120px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    /*　下に下がる動き　*/

    #contactbtn.DownMove{
        animation: DownAnime 0.5s forwards;
    }
    @keyframes DownAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(120px);
    }
    }


/* service2  */
section#service2 {
    width: 100%;
    background-color: var(--bgcolor2);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    -webkit-clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
}
#service2 h4 {
    font-family: var(--textfont);
    font-weight: 500;
    font-size: 1.5rem;
}
.flowcontainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 65px 50px;
    margin-top: 30px;
}
.flowbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: solid 1px var(--bordercolor);
    box-shadow: 3px 3px 6px var(--bordercolor);
    width: calc( (100vw - var(--scrollbar) - 50 * 2) / 3 );
    height: calc( (100vw - var(--scrollbar) - 50 * 2) / 3 );
    aspect-ratio: 1/1;
    max-width: 300px;
    max-height: 300px;
    padding: 15px;
}
.flowtitle {
    font-size: 1.125rem;
    line-height: 1.0;
    margin-bottom: 20px;
}
.flowicon {
    width: 65%;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.flownoteswrap {
    display: flex;
    justify-content: right;
}
.flownotes{
    margin-top: 50px;
}


/* 大きいコンタクトボタン */
.contactbig {
    margin-top: 130px;
    margin-bottom: 130px;
    font-size: 1.125rem;
}
.contactbigwrap {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}
.contactbtnbig {
    width: 280px;
    height: 74px;
    border-radius: 10px;
    background-color: var(--turquoise2);
    color: var(--bgcolor2);
    font-family: var(--eyecatchfont);
    font-weight: 600;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 22px;
    padding-bottom: 5px;
}
.contactbtnbig a, .contactbtnbig a:hover {
    color: var(--bgcolor2);
}
.contactbtnbig:hover {
    background-color: var(--subcolor);
}

/* Voice  */
section#voice {
    width: 100%;
    background: url(../images/voice.jpg);
    background-color: rgba(87,53,49,0.5);
    background-repeat: no-repeat;
    background-position: 65% 50%;
    background-size: cover;
    background-blend-mode: screen;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    -webkit-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    padding-top: 190px;
    padding-bottom: 190px;
}
.voiceh2wrap {
    display: flex;
    justify-content: center;
}
#voice h2 {
    display: inline-block;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2px;
}
#voice .wrapper {
    display: flex;
    justify-content: right;
}
.voicespace {
    width: 600px;
}

.voicebase {
    width: 600px;
    background-color: rgba(255,255,255,0.7);
    padding: 50px 90px 40px 90px;
    border-radius: 15px;
    margin-top: 80px;
    position: relative;
}
.voice2 {
    margin-left: -100px;
}
.voicebase::before {
    content: '『';
    position: absolute;
    top: 12px;
    left: 5px;
    font-family: var(--YHnukifont);
    font-size: 48px;
    font-weight: 600;
    color: #d7cdc8;
    mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
}
.voicebase::after {
    content: '』';
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-family: var(--YHnukifont);
    font-size: 48px;
    font-weight: 600;
    color: #d7cdc8;
    mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
}
.voicebase h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.0;
}
.voicetext {
    font-size: 1.125rem;
    line-height: 2.0;
    margin-top: 20px;
}
.person {
    display: block;
    text-align: right;
    margin-top: 10px;
    margin-right: -10px;
}

/* news  */
section#news {
    margin-top: 170px;
    padding-top: 100px;
}
.newslist {
    margin-top: 80px;
}
.newslistli {
    display: flex;
    padding: 50px 60px;
    border-bottom: solid 1px var(--bordercolor);
}
.newslistli:first-child {
    border-top: solid 1px var(--bordercolor);
}
.newslistli time {
    width: 10rem;
    display: block;
    position: relative;
}
.newslistli time::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    rotate: 45deg;
    position: absolute;
    top: 0.6rem;
    right: 0;
    background-color: var(--subcolor);
}
.newslistli:nth-child(even) time::after {
    background-color: var(--turquoise3);
}
.newslistli p {
    margin-left: 4rem;
    width: calc(100% - 14rem);
}


/* spirit  */
section#spirit {
    width: 100%;
    background: linear-gradient(90deg, rgba(250,239,225,0.85) 0%, rgba(173,165,156,0.85) 100%),url(../images/spirit.jpg);
    background-repeat: no-repeat;
    background-position: 60% 50%;
    background-size: cover;
    background-blend-mode: screen;
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    -webkit-clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    margin-top: 130px;
    padding-top: 190px;
    padding-bottom: 190px;
}
.spirittext {
    width: 600px;
}
.spirittext p {
    margin-top: 2rem;
}
.spirittext p:first-child {
    margin-top: 0;
}
.spirittext .space::before {
    content: '＊';
    color: var(--subcolor);
    font-size: 1.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 2rem;
    margin-left: 4rem;
}
.spirittext .words {
    font-weight: 900;
    color: var(--turquoise3);
    padding-left: 1rem;
}

/* SNS  */
section#sns {
    width: 100%;
}
.snswrap {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    margin-top: 80px;
}
.snscontainer p {
    font-size: 1.5rem;
    margin-bottom: 15px; 
}
.snscontainer i {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 36px;
}
.lineqr {
    height: 200px;
    width: 200px;
    display: inline-block;

}
.notecontainer {
    display: flex;
    flex-direction: column;
}
.notecontainer p {
    width: 100%;
    font-size: 1.5rem;
    text-align: right;
    display: block;
    margin-top: 0;
}
#notelogo {
    display: inline-block;
    margin: 0;
    margin-left: 0.5rem;
    width: 55.5px;
    height: 12px;
    fill: currentColor;
}
.note-embed {
    border: 0;
    display: block;
    max-width: 100%;
    max-height: 100%;
    padding: 0px;
    margin: 0;
    margin-top: 15px;
    position: static;
    visibility: visible;
    width: 100%;
}

/* footer  */
footer {
    width: 100%;
    height: 130px;
    color: var(--bgcolor);
    background-color: var(--h1bgcolor);
}
footer a {
    color: var(--bgcolor);
}
footer a:hover {
    color: var(--turquoise);
}
.footerwrap {
    margin: 0;
    width: 100%;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
}
.icons {
    display: grid;
    grid-template-columns: 24px 24px 24px 55.5px;
    gap: 25px;
    font-size: 24px;
}
#notelogo2 {
    display: inline-block;
    width: 55.5px;
    height: 12px;
    fill: currentColor;
}
.footerright {
    font-size: 0.875rem;
}
.copy {
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}





    /* レスポンシブ対応
-----------------------------
----------------------------- */
@media (max-width: 700px) {

    .wrapper {
        max-width: 100%;
    }
    h3 {
    font-size: 1.125rem;
    margin-top: 50px;
    margin-bottom: 50px;
    }

/* header
----------------------------- */
header {
    padding-inline: 15px;
}
.mainnav {
    display: none;
}
.logospan {
    display: none;
}
    /* スライドメニュー部分 */
    .btn-menu {
        display: block;
        position: absolute;
        top: 18px;
        right: 15px;
        color: var(--bgcolor);
        z-index: 10;
    }

    /* Section:TOP  */
    section#top {
        width: 100%;
        height: 100vh;
        background: linear-gradient(150deg, rgba(242,199,150,0.99) 20%, rgba(143,187,191,0.99) 100%),url(../images/top.jpg);
        background-position: 30% 100%;
        background-size: cover;
        background-blend-mode: color;
    }
    .topwrapper {
        max-width: 100%;
        padding-inline: 15px;
    }
    .topline {
        margin-top: 160px;
        padding-left: 30px;
        font-size: 32px;
        line-height: 1.5;
        filter: drop-shadow(0 0 10px var(--h1bgcolor));
        -webkit-filter: drop-shadow(0 0 10px var(--h1bgcolor));
    }
    .toplayer2 {
        height: 58vh;
        background-color: var(--bgcolor3);
        clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 100%);
        -webkit-clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 100%);
    }
    .toplayer2 .topwrapper {
        width: 100%;
        height: 58vh;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    .toptitle{
        margin-bottom: 24vh; 
        color: var(--maincolor);
    }
    #coaching {
        text-align: center;
        font-size: 42px;
        margin-bottom: 10px;
    }
    #toptitle {
        font-size: 36px;
        line-height: 1.15;
        padding-top: 5px;
        border-top: solid 2px var(--maincolor);
        border-bottom: solid 2px var(--maincolor);
    }


/* about  */
section#about {
    background-image: url(../images/about02.png);
    background-color:rgba(255,255,255,0.75);
    background-blend-mode:lighten;
    background-size: contain;
    background-position: top right;
}
.aboutwrap {
    display: block;
}
.dreamcatcher {
    display: none;
}
p.name {
    font-size: 1.5rem;
    margin-top: 3rem;
}

/* profile  */
section#profile {
    background-position: center;
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
    -webkit-clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
    margin-top: 80px;
    padding-top: 150px;
    padding-bottom: 150px;
}
.profbase {
    width: 100%;
    padding: 50px 15px;
    background-color: rgba(235,229,220,0.60);
}
.profwrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}
.profwrap p {
    font-size: 1.5rem;
    margin-left: 0;
    text-align: center;
}
.proftext {
    background-color: transparent;
    padding: 0;
    margin-top: 40px;
}
.proftext p {
    margin-top: 2rem;
}
.proftext p:first-child {
    margin-top: 0;
}

/* service  */
section#service {
    padding-top: 80px;
    background-image: none;
}
.servicetext {
    width: 100%;
}
.point {
    margin-top: 60px;
}
.point li {
    counter-increment: list;
    margin-top: 30px;
}
.point li:first-child {
    margin-top: 0;
}
.point li::before {
    display: inline-block;
    width: 27px;
    height: 27px;
    font-size: 18px;
    padding-top: 3px;
    border: solid 1px var(--bgcolor);
    box-shadow: 0 0 0 3px var(--subcolor);
    margin-right: 10px;
    margin-left: 3px;
}
.pointhead {
    display: inline;
    font-size: 1.25rem;
    font-weight: 400;
}
.pointtext {
    margin-left: 0;
    margin-top: 5px;
}
.pointhead span {
    text-decoration: underline;
    text-underline-offset: -3px;
    text-decoration-thickness: 6px;
    text-decoration-color:  var(--important);
}

/* contact button  */
#contactbtn {
    display: none;
}

/* service2  */
section#service2 {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    -webkit-clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    margin-top: 60px;
    padding-top: 85px;
    padding-bottom: 85px;
}
#service2 h4 {
    font-size: 1.125rem;
}
.flowcontainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    justify-content: space-between;
}
.flowbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    border: solid 1px var(--bordercolor);
    box-shadow: 3px 3px 6px var(--bordercolor);
    width: calc(100% - 7.5px);
    height: calc((100vw - 60px) / 2);
}
.flowtitle {
    font-size: 0.56rem;
    line-height: 1.0;
    margin-bottom: 15px;
}
.flownoteswrap {
    display: flex;
    justify-content: flex-start;
}
.flownotes{
    margin-top: 15px;
    font-size: 0.75rem;
}


/* 大きいコンタクトボタン */
.contactbig {
    margin-top: 80px;
    margin-bottom: 80px;
    font-size: 1rem;
}
.contactbigwrap {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.contactbtnbig {
    width: 240px;
    height: 64px;
    border-radius: 10px;
    font-size: 28px;
    padding-right: 22px;
    padding-bottom: 5px;
}

/* Voice  */
section#voice {
    background-color: rgba(87,53,49,0.9);
    background-position: 42% 50%;
    background-size: cover;
    background-blend-mode: screen;
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
    -webkit-clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%);
    padding-top: 125px;
    padding-bottom: 165px;
}
.voiceh2wrap {
    display: flex;
    justify-content: center;
}
#voice h2 {
    display: inline-block;
    -webkit-backdrop-filter: blur(10px) brightness(160%);
    backdrop-filter: blur(10px) brightness(160%);
    padding: 2px;
}
.voicespace {
    width: 100%;
}
.voicebase {
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    padding: 30px 45px;
    border-radius: 15px;
    margin-top: 60px;
}
.voice2 {
    margin-left: 0;
}
.voicebase::before {
    top: 0px;
    left: 0px;
    font-size: 48px;
    font-weight: 600;
    margin-left: -5px;

}
.voicebase::after {
    bottom: 0px;
    right: 0px;
    font-size: 48px;
    font-weight: 600;
    margin-right: -5px;
}
.voicebase h3 {
    font-size: 1.3rem;
    line-height: 1.0;
}
.voicetext {
    font-size: 1rem;
    line-height: 1.75;
}
.person {
    display: block;
    text-align: right;
    margin-top: 0;
    margin-right: 0;
}

/* news  */
section#news {
    margin-top: 0;
    padding-top: 60px;
}
.newslist {
    margin-top: 60px;
}
.newslistli {
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
}
.newslistli time {
    width: 7rem;
}
.newslistli p {
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
}

/* spirit  */
section#spirit {
    width: 100%;
    background: linear-gradient(90deg, rgba(250,239,225,0.85) 0%, rgba(173,165,156,0.85) 100%),url(../images/spirit.jpg);
    background-color: rgba(255, 255, 255, 0.2);
    background-repeat: no-repeat;
    background-position: 60% 50%;
    background-size: cover;
    background-blend-mode: screen;
    clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
    -webkit-clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
    margin-top: 80px;
    padding-top: 125px;
    padding-bottom: 150px;
}
.spirittext {
    width: 100%;
}
.spirittext p {
    margin-top: 2rem;
}
.spirittext p:first-child {
    margin-top: 50px;
}

/* SNS  */
section#sns {
    width: 100%;
    margin-top: 120px;
}
.snswrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    justify-content: center;
}
.snscontainer p {
    text-align: center;
}
.notecontainer p {
    font-size: 1.5rem;
    text-align: left;
    display: block;
    margin-top: 30px;
}
.note-embed {
    margin-top: 15px;
    width: 100%;
}
.note-embed:first-child {
    margin-top: 5px;
}

footer {
    height: 160px;
}
.footerwrap {
    padding-top: 30px;
    padding-inline: 35px;
    display: flex;
    flex-direction: column;
}
.icons {
    display: flex;
    justify-content: space-between;
    font-size: 36px;
}
#notelogo2 {
    display: inline-block;
    width: 90px;
    height: 20px;
    fill: currentColor;
}
.footerright {
    font-size: 14px;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.nophone {
    display: none;
}
.copy {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}






}



@media (min-width: 701px) and (max-width: 1030px) {
    header {
        padding-inline: 15px;
    }
    #toptitle {
        font-size: 60px;
    }
    .logo {
        margin-right: 0;
    }
    .mainnav {
        display: none;
    }
        /* スライドメニュー部分 */
        .btn-menu {
            display: block;
            position: absolute;
            top: 18px;
            right: 15px;
            color: var(--bgcolor);
            z-index: 10;
        }

    #profile .wrapper {
        display: flex;
        justify-content: center;
    }
    .profbase {
        width: 80%;
    }

    section#service {
        background-color: rgba(255,255,255,0.9);
    }
    .servicetext {
        width: 100%;
    }
    .point li::before {
        display: inline-block;
        width: 27px;
        height: 27px;
        font-size: 18px;
        padding-top: 3px;
        border: solid 1px var(--bgcolor);
        box-shadow: 0 0 0 3px var(--subcolor);
        margin-right: 10px;
        margin-left: 3px;
    }
    .pointhead {
        display: inline;
        font-size: 1.5rem;
    }
    .pointtext {
        margin-left: 45px;
        margin-top: 5px;
    }
    .pointhead span {
        text-decoration: underline;
        text-underline-offset: -3px;
        text-decoration-thickness: 6px;
        text-decoration-color:  var(--important);
    }

    section#voice {
        background-position: 42% 50%;
    }
    #voice h2 {
        display: inline-block;
        -webkit-backdrop-filter: blur(10px) brightness(160%);
        backdrop-filter: blur(10px) brightness(160%);
        padding: 2px;
    }
    .voicespace {
        width: 100%;
    }
    .voicebase {
        margin-left: calc( 100% - 600px);
    }
    .voicebase:nth-child(even) {
        margin-left: 0;
    }

    section#spirit {
        width: 100%;
        background: linear-gradient(90deg, rgba(250,239,225,0.85) 0%, rgba(173,165,156,0.85) 100%),url(../images/spirit.jpg);
        background-color: rgba(255, 255, 255, 0.2);
        background-position: 60% 50%;
        background-size: cover;
        background-blend-mode: screen;
    }
    .spirittext {
        width: 100%;
    }
    .snswrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 60px;
        justify-content: center;
    }
    .snscontainer p {
        text-align: center;
    }
    .notecontainer p {
        text-align: left;
    }

    footer {
        height: 160px;
    }
    .footerwrap {
        padding-top: 30px;
        padding-inline: 35px;
        display: flex;
        flex-direction: column;
    }
    .icons {
        display: flex;
        justify-content: space-between;
        font-size: 36px;
    }
    #notelogo2 {
        display: inline-block;
        width: 90px;
        height: 20px;
        fill: currentColor;
    }
    .footerright {
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    .nophone {
        display: none;
    }
    .copy {
        font-size: 14px;
        margin-top: 5px;
        text-align: center;
    }

} 

::-webkit-full-page-media, :future, :root #contactbtn{
        padding-top: 0;
        line-height: 1.0;
    }