@charset "UTF-8";

/* ---------------- 全体 ---------------- */

@media screen and (min-width:768px) {
    .sp {
        display: none;
    }
}
@media screen and (max-width:767px) {
    .pc {
        display: none;
    }
}
@media screen and (max-width:599px) {
    .tab-pc {
        display: none;
    }
}
@media screen and (min-width:600px) {
    .tab-pc2 {
        display: none;
    }
}
@media (max-width: 599px) and (min-width: 768px) {
    .sp-pc {
        display: none;
    }
}



body {
    font-family:"Zen Kaku Gothic New", sans-serif;
    overflow-x: hidden;
    color: #888888;
    background: #FAF8F5;
}

@media screen and (max-width:599px) {
    body {
        font-size: 20px;
    }
}

img {
    vertical-align: bottom;
}

section {
    padding: 100px 0;
}
@media screen and (max-width:599px) {
    section {
        padding: 70px 0;
    }
}
section.title {
    & h1 {
        text-align: center;
        color: #73bfc9;
        line-height: 0.6em;
        margin-bottom: 60px;
        & small {
            font-size: 0.35em;
        }
    }
}

a {
    color: #888888
}
a:hover {
    color: #73bfc9;
}
a:active {
    color: #73bfc9;
}

h1.top {
    font-size: 38px;
    margin: 16px 0 116px 0;
    letter-spacing: -1px;
    font-family: "Zen Old Mincho";
    font-weight: 100;
}
@media screen and (max-width:599px) {
    h1.top {
        margin: 56px 0;
    }
}

h1 {
    font-size: 44px;
    margin: 16px 0;
    font-weight: 300;
}
@media screen and (max-width:599px) {
    h1 {
        margin: 56px 0;
    }
}

h2 {
    font-size: 30px;
    letter-spacing: -0.05em;
    line-height: 1.4em;
    color: #888888;
    margin-bottom: 56px;
    font-weight: 100;
}
h2.roboto {
    font-size: 38px;
    color: #888888;
    margin-bottom: 56px;
    letter-spacing: 0.05em;
    font-weight: 100;
}
h2.lower {
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1.2em;
    margin-bottom: 30px;
}
h2.toiawase {
    margin-bottom: 10px;
}
@media screen and (max-width:767px) {
    h2 {
        font-size: 36px;
        margin-bottom: 36px;
    }
}
@media screen and (max-width:599px) {
    h2 {
        font-size: 1.2em;;
    }
    h2.roboto {
        font-size: 1.6em;;
    }
}

h3 {
    font-size: 22px;
    letter-spacing: -0.01em;
    color: #73bfc9;
    margin-bottom: 1.1em;
    font-weight: bold;
}
h3.lower {
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 0.8em;
}
@media screen and (max-width:599px) {
    h3 {
        font-size: 1.1em;;
    }
}

p {
    font-size: 15px;
    line-height: 1.6em;
}
p.txt {
    margin-bottom: 20px;
}
p.indent {
    padding-left:1em;
	text-indent:-1em;
}

ul {
    & li {
        font-size: 15px;
        line-height: 1.6em;
    }
}

ol {
    & li {
        font-size: 15px;
        line-height: 1.6em;
        margin-left: 1em;
    }
}

@media screen and (max-width:599px) {
    p {
        font-size: 16px;
        line-height: 1.7em;
    }
    ul {
        & li {
            font-size: 16px;
            line-height: 1.7em;
        }
    }
    ol {
        & li {
            font-size: 16px;
            line-height: 1.7em;
        }
    }
}

@media screen and (min-width:600px) {
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
}

/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}

/* フェードイン(ふわっと))( */
.fadeIn {
  opacity: 0;
  transition: 2s;
  transition-delay: .3s;
}
.fadeIn.is-show {
  opacity: 1;
}

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

header {
    position: fixed; /* ここに注目! */
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 80px;
    align-content: center;

    .mark {
        position: absolute;
        top: 14px;
        left: 40px;
        z-index: 9998;
        & img {
            width: 200px;
        }
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

#fixed-header {
  position: fixed;
  z-index: 9997;
  top: -80px;  
  width: 100%;
  height: 80px;
  color: #888888;
  background: #FAF8F5;
  box-sizing: border-box;
  transition: .5s;
}
#fixed-header.is-show {
  top: 0;
}

.header-menu {
    & ul {
        display: flex;
        text-align: right;
        
        & li {
            text-align: center;
            line-height: 1.2em;
            color: #6D615A;
            margin-right: 70px;
            font-size: 18px;
        }
        & li:last-child {
            margin-right: 0;
        }
        & li a {
            color:#888888;
        }
        & li a:hover {
            color: #73bfc9;
        }
    }
  }


@media screen and (max-width:767px) {
header {
    .mark {
        position: absolute;
        top: 14px;
        left: 14px;
    }
}
.header-inner {
    padding: 0 10px;
}
}

/*  header-in   */
#in-header {
    position: fixed; /*** ← fixedで固定 ***/
    height: 80px;
    top: 0;

    background: #FAF8F5;
    box-sizing: border-box;
    width: 100%;
    z-index: 100;

    .header-logo {
        padding-left: -20px;
        & img {
            width: 200px;
        }
    }
}

.in-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 60px 0 40px;
}
@media screen and (max-width:767px) {
.in-header-inner {
    padding: 0 10px;
}
}


@media screen and (max-width:767px) {
    .header-logo {
        margin: 3px 0 0 4px;
    }
}


/*  SP-ハンバーガーメニュー  */
.hamburger {
  width: 52px;
  height: 52px;
  position: relative;
  appearance: none;
  border: none;
  padding: 0 10px;
  margin: 10px;
  background-color: #73bfc9;
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FAF8F5;
  transition: all 0.5s;
}
.hamburger span {
  right: 10px;
  width: 32px;
}
.hamburger span::before {
  top: -12px;
}
.hamburger span::after {
  bottom: -12px;
}
.hamburger.open span {
  background-color: transparent;
}
.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 80px;
  right: -100%;
  background-color: #73bfc9;
  padding: 50px 0;
  transition: all 0.5s;
  border-top: 1px solid #FAF8F5;
}
.nav__item a {
  display: block;
  font-size: 20px;
  color: #FAF8F5;
  text-decoration: none;
  padding: 20px 0 20px 50px;
}
.nav__item a:hover {
  color: #73bfc9;
  background-color: #FAF8F5;
}
.nav.open {
  right: 0;
}




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

footer {
      line-height: 0;
      margin-bottom: -2em;
      
      .contact {
        background: #F8F2E9;
        padding: 100px 0;
        text-align: center;

        & p.c-txt {
            margin: 1.6em 0;
        }
    }
}

.copyright {
    background: #806D64;
    padding: 30px 0;
    margin: 0 auto;
        & p {
            font-size: 16px;
            color: #ffffff;
            text-align: center;
        }
}


@media screen and (max-width:767px) {
    footer { 
      .contact {
        padding: 56px 0;
    }
}
    .copyright {
            font-size: 10px;
        }
}




/* ---------------- ローディング画面 ---------------- */
#loading {
    background: #F8F2E9;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    text-align: center;

    & img {
        width: 140px;
    }
}

/* ---------------- TOPページ ---------------- */

/*  TOP ファーストビュー  */
.home-img {
  margin: 0 auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100vw;;

  .slick-img {
    & img {
        object-fit: cover;
        width: 100%;
        height: auto;
    }
}
}

@media screen and (max-width:767px) {
    .home-img {
        height: 100svh;

        .slick-img {
            & img {
                height: 100svh;
            }
        }
    }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

section.about {
    text-align: center;
    & h1 {
        margin-bottom: 116px;
        & img {
            width: 60%;
        }
    }
}


@media screen and (max-width:767px) {
    section.about {
        padding-top: 0;
        & h1 {
            margin-bottom: 40px;
            & img {
                width:90%;
            }
        }
    }
}



/*  すずなりデザインができること  */
section.top_design {
    text-align: center;
    background: #F8F2E9;

    .ability {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
        border-top: solid 1px #73bfc9;
        margin-bottom: 60px;

        .g {
            border-bottom: solid 1px #73bfc9;
            border-right: solid 1px #73bfc9;
            padding: 40px 0;

            & img {
                margin-bottom: 1.5em;
                height: 100px;
            }
        }
    }
}

@media screen and (max-width:767px) {
    section.top_design {
        .ability {
            display: grid;
            grid-template-columns: 1fr 1fr;

            .g {

            & img {
                height: 70px;
            }
        }
        }
    }
}
@media screen and (max-width:495px) {
    section.top_design {
        .ability {
            display: grid;
            grid-template-columns: 1fr;
        }
    }
}


/*  Record  */
section.record {
    text-align: center;

    .top_record {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
        margin-bottom: 60px;

        .thum {
            & img {
                width: 100%;
                height: auto;
                margin-bottom: 0.5em;
            }
        }
    }
}

@media screen and (max-width:767px) {
    section.record {
        .top_record {
            display: grid;
            grid-template-columns: 1fr;
            margin-bottom: 10px;
            
            .thum {
                margin-bottom: 20px;
            }
        }
    }
}




/* ---------------- about ---------------- */

    .about_ex {
        text-align: center;
        margin-bottom: 60px;
        & p {
            margin-bottom: 1.3em;
        }
        & p.strong {
            font-weight: bold;
            font-size: 1.2em;
        }
        & img {
            border-radius: 50%;
            width: 200px;
        }
    }
@media screen and (max-width:599px) {
    .about_ex {
        margin: 0 10px;
    }
    .text-right {
            & p {
                text-align: left;
            }
            & p.strong {
                text-align: center;
            }
        }
    }


/* ---------------- field ---------------- */

.field {  
    .mado {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        margin-bottom: 30px;
        
        & img {
                max-width: 32.6%;
                border-radius: 10px;
            }
        }
        
    .text {
        max-width: 1024px;
        padding: 10px;
        margin: 0 auto;
        text-align: center;
    }
}

@media screen and (max-width:1023px) {
    .field {
        padding: 10px;
    }
}

@media screen and (max-width:599px) {
    .field {
        .mado {
            flex-wrap: wrap;
            
            & img {
                max-width: 100%;
            }
        }
    }
}




/* ---------------- design ---------------- */

section.portfolio {
    padding: 0 20px;
    margin: 0 auto;
    .portfolio-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 0.7rem;
        margin-bottom: 60px;

        .indivi {
            & a {
                display: block;
                overflow: hidden;
                border-radius: 0.5rem; 
            }

            .indiviimg {
                width: 100%;
                height: auto;
                display: block;
                opacity: 0;
                transform: translateY(80px);
                transition: opacity 0.8s ease-out, transform 0.8s ease-out;
                will-change: opacity, transform;
            }
            
            .indiviimg.is-visible {
                opacity: 1;
                transform: translateY(0);
            }
            
            &:hover .indiviimg.is-visible {
                transform: translateY(0) scale(1.1);
                transition: transform 0.5s ease;
                filter: brightness(0.8);
            }
        }
    }
}

@media screen and (max-width:1024px) {
    section.portfolio {
        .portfolio-wrap {
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }
    }
}
@media screen and (max-width:599px) {
    section.portfolio {
        padding: 0 12px;

        .portfolio-wrap {
            grid-template-columns: 1fr 1fr;
        }
        .portfolio-wrap:nth-child(n+11) {
            display: none;
        }
    }
}


section.flow {
     margin: 0 calc(50% - 50vw);
     width: 100vw;
     background: #F8F2E9;

    .request {
        max-width: 1024px;
        margin: 0 auto;
        & ol {
            line-height: 1.6em;
        & li {
            margin-bottom: 1.4em;
        }
    }
    }
}
@media screen and (max-width:1024px) {
    section.flow {
        .request {
            max-width: 100%;
            margin: 0 20px;
        }
    }
}

section.price {
    max-width: 1024px;
    margin: 0 auto;
    
    .flex {
        display: flex;
        gap: 1.5rem;

        .left {
            width: 50%;
            & dl {
                display: flex;
                flex-wrap: wrap;
                width: 100%;
                line-height: 1.6em;
                border-bottom: solid 1px #a9a9a9;

                & dt {
                    width: 70%;
                    border-top: solid 1px #a9a9a9;
                    padding: 16px 0;
                }
                & dd {
                    width: 30%;
                    text-align: right;
                    border-top: solid 1px #a9a9a9;
                    padding: 16px 0;
                }
            }
        }
        .right {
            .caution {
                margin-bottom: 30px;

                & p {
                    margin-left: 0.9em;
                }
            }
        }
    }
}

@media screen and (max-width:1024px) {
    section.price {
        max-width: 100%;
        margin: 0 20px;
    
        .flex {
            flex-wrap: wrap;
            .left {
                width: 100%;
            }
        }
    }
}

@media screen and (max-width:599px) {
    dl {
        font-size: 15px;
        line-height: 1.6em;
    }
}



/* ---------------- ポートフォリオ投稿ページ ---------------- */

.portfolio_wrap {
    max-width: 1024px;
    margin: 0 auto;
    padding-bottom: 60px;
    text-align: center;

    & img {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .txt {
        max-width: 768px;
        margin: 0 auto;
        text-align: left;
    }
}

@media screen and (max-width:768px) {
    .portfolio_wrap {
        width: 100%;

        & img {
            width: 100%;
            height: auto;
        }
        .txt {
            width: 100%;
            margin: 0 10px;
        }
    }
}




    


/* ---------------- record ---------------- */

.main_post {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 6%;
    .main_post_wrap {
        width: 70%;
        .single_post_container {
            & h1 {
            text-align: left;
            color: #888888;
            font-size: 1.4em;
            line-height: 1.2em;
            margin-bottom: 10px;
            letter-spacing: 0.01em;
        }
        & img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        & p.post_time {
            color: #3c8c92;
            font-weight: bold;
            margin-bottom: 0.9em;
        }
        & p.post_cat {
            font-size: 0.85em;
            margin-bottom: 0.9em;
        }
        .detail_text {
            margin-bottom: 50px;
            .post_body {
                & p {
                    margin-bottom: 1.4em;
                }
            }
        }
        }
    }

    .sidebar_wrap {
        width: 28%;
        
        & aside.sidebar {
            & p {
                color: #3c8c92;
            }
            .wp-block-group {
                margin-bottom: 24px;

                & h2 {
                font-size: 1.4em;
                letter-spacing: 0.05em;
                margin-bottom: 12px;
            }
            & p {
                margin-bottom: 8px;
            }
            & ul {
                padding-left:1em;
                & li {
                    margin-bottom: 0.7em;
                    font-size: 0.95em;
                }
            }
            }
        }
    }
}

.pagenation {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;

    & a {
        padding: 0 10px;
    }
}

@media screen and (max-width:768px) {
    .main_post {
        & div {
            margin: 0;
        }
        flex-wrap: wrap;
        .main_post_wrap {
            width: 100%;

            .post_body {
                margin: 0 10px;
            }

            .single_post_container {
                & h1 {
                    font-size: 1.3em;
                    margin: 10px;
                }
                & img {
                    border-radius: 0;
                }
                & .post_meta {
                    margin: 10px;
                }
            }
        }
        .sidebar_wrap {
            width: 100%;
            border-top: solid 1px #a9a9a9;
            padding: 50px 0;

            .sidebar {
                margin: 0 10px;
            }
        }
        .blog-list__list-item {
            margin-bottom: 60px;
        }
    }
}

@media screen and (max-width:599px) {
    .main_post {
        .sidebar_wrap {
            & aside.sidebar {
                & ul {
                    font-size: 15px;
                }
            }
        }
    }
}



/* ---------------- contact ---------------- */

.contact_text {
    max-width: 1024px;
    margin: 0 auto;
    p.txt {
        text-align: center;
    }
}

.cf-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	border-bottom: 1px dashed #ccc;
	transition: all .3s;
    
    & dt {
        width: 200px;
        padding-right: 30px;
        text-align: right;
        line-height:1.5em;
    }
    
    & dd {
        flex: 1;
    }
}

.cf-area:last-child {
	border-bottom: none;
}

.cf-area input, .cf-area textarea {
  width: 90%;
  padding: 0.8em;
  border: none;
  background-color: #e6e6e6;
  font-size: 16px;
	resize: vertical;
	transition: all .3s;
}

.cf-area input:focus,.cf-area textarea:focus {
	outline: none;
	background: #efe9e1;
}

.cf-required {
	color: #b91e23;
    border: solid 1px #b91e23;
	font-size: 0.8em;
	padding: 0 5px 2px;
	border-radius: 2px;
}

.cf-send input {
	display: block;
    background: none;
	width: 240px;
	height: 60px;
	margin: 30px auto 0;
	border:1.5px solid #73bfc9;
    border-radius: none;
	color: #73bfc9;
	font-size: 1.2em;
    -webkit-transition: all .3s;
	transition: all .3s;
}

.cf-send input:hover {
    color: #fff;
    border:2px solid #73bfc9;;
    background: #73bfc9;
    transform: scale(1.1,1.1);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #fce3e3;
	border: none;
	text-align: center;
}

p.checkbutton {
    text-align: center;
    color: #b91e23;
}

@media screen and (max-width:768px){
    .contact_text {
        margin: 0 10px;
    }
	.cf-area {
		display: block;
        
        & dt {
            width: 100%;
            margin-bottom: 5px;
            padding-right: 0;
            text-align: left;
            line-height:1.5em;
        }
        & dd {
            width: 100%;
        }
	}
}

@media screen and (max-width:599px) {
    .contact_text {
        p.txt {
            text-align: left;
        }
    }
}

/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
    visibility: hidden;
}
    
    


/* ---------------- お問い合わせはこちらからボタン ---------------- */

.push {
    text-align: center;
}
a.button {
    display: inline-block;
    width: 240px;
    text-decoration: none;
    color: #73bfc9;
    border:1.5px solid #73bfc9;
    font-weight: bold;
    -webkit-transition: all .3s;
    transition: all .3s;

    & p {
        padding: 18px;
    }
}
a.button:hover {
    color: #fff;
    border:2px solid #73bfc9;;
    background: #73bfc9;
    transform: scale(1.1,1.1);
}


@media screen and (max-width:599px) {
    .return {
        padding: 30px 10px;
        width: 95%;
    }
}
