@charset "utf-8";

/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
    box-sizing: border-box;
}

* {
    font-size: inherit;
    line-height: inherit;
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

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,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
main,
nav,
menu,
figure,
figcaption {
    display: block;
}

span,
small,
strong,
em,
b,
i {
    color: inherit;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

ul,
ol {
    list-style: none;
}

img {
    border: 0;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

input,
select {
    vertical-align: middle;
}

input,
textarea {
    margin: 0;
    padding: 0;
}

address {
    font-style: normal;
}

q::before,
q::after {
    display: none;
}



/* base
--------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic';
    line-height: 1.75;
    color: #432;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}

a {
    color: #432;
    text-decoration: none;
    transition: all 0.5s;
    cursor: pointer;
}

a:hover {
    color: #fcaa00;
    opacity: 0.7;
}

img {
    width: 100%;
    height: auto;
}

button {
    appearance: none;
    display: block;
    width: 100%;
    border: 0;
    font-family: inherit;
    font-weight: inherit;
}



/*----------------------------------------------------
 ページレイアウトに関するCSS
-------------------------------------------------*/
.container {
    display: block;
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (min-width:768px),
print {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*------------------------------------------------------------------
section
-------------------------------------------------------------------*/

.section__inner {
    padding-top: 90px;
    padding-bottom: 90px;
    margin-left: auto;
    margin-right: auto;
}


.section__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(35px, 5vw, 60px);
    font-weight: bold;
    letter-spacing: 0.1rem;
    line-height: 1;
    padding-bottom: 80px;
}

.section__title::before,
.section__title::after {
    content: '';
    width: 15%;
    border-top: 7px double;
    color: #fcaa00;
}

.section__title::before {
    margin-right: 5%;
}

.section__title::after {
    margin-left: 5%;
}

/*下からフェードイン*/
.displayed {
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/*---------------------------------------------------------------- 
header
-----------------------------------------------------------------*/

#home {
    position: relative;
    background-image: url(../img/main-img.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #3e882f6e;
    background-blend-mode: multiply;
    height: 90vh;
}


.header__inner {
    display: flex;
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: 60px;
    padding: 10px 30px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    /*box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);*/
}

.header__inner.scroll {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    opacity: 0.8;
    transition: all 0.7s;
}

.header__logo,
.header__logoImg {
    width: 40px;
    height: 35px;
}

.nav__list {
    display: none;
    justify-content: space-between;
}

.nav__item {
    margin-left: 50px;
    font-weight: bold;
    letter-spacing: 0.1rem;
    font-size: 20px;
}

.home__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.page-title {
    text-align: left;
    font-size: 3.5rem;
    line-height: 1.4;
    color: #fff;
}

.page-subTitle {
    display: inline-block;
    margin-top: 0;
    padding: 0 10px;
    background-color: rgba(255, 153, 0, 0.623);
    letter-spacing: 0.1em;
    font-weight: normal;
    color: #fff;
}

@media screen and (min-width:768px) {

    .header__inner {
        height: 80px;
    }

    .header__logo,
    .header__logoImg {
        width: 60px;
        height: 50px;
    }

    .nav__list {
        display: flex;
    }

    .home__content {
        top: 28%;
        left: 20%;
        transform: translate(0, 0);
    }

    .page-title {
        font-size: 4.5rem;
    }

    .page-subTitle {
        font-size: 1.5rem;
    }

}


/*----------------------------------------------
hamburger
----------------------------------------------*/
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    /*特定の位置に固定して常時表示させるため*/
    right: 0px;
    top: 0px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 60px;
    height: 60px;
    margin-left: 0;
    z-index: 10001;
    background-color: #fcaa00;
    /*box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);*/
}

.hamburger.scroll {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    opacity: 0.8;
    transition: all 0.7s;
}


.hamburger__line {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: #432;
}

.hamburger__line::before,
.hamburger__line::after {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #432;
    transition: transform 0.3s;
}

.hamburger__line::before {
    top: -5px;
}

.hamburger__line::after {
    bottom: -5px;
}

/*閉じる*/
/* ◯[属性名=”値”]{〜} : たとえばa[target="_blank"]と書けば、target属性を含み、さらにその値が_blankのリンクにのみスタイルを適用する。 */
.hamburger[aria-expanded=true] .hamburger__line {
    background-color: transparent;
    /*インラインフレームの背景を透過させることができる*/
}

.hamburger[aria-expanded=true] .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}


@media screen and (min-width: 768px),
print {
    .hamburger {
        display: none;
    }
}


/* spmenu
---------------------------------------------------------*/


.spmenu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    background-color: rgb(255, 255, 255, 0.95);
    transition: opacity 3s;
    z-index: 10000;
}



.spmenu__link {
    padding-bottom: 10px;
    font-size: 35px;
}

@media screen and (min-width: 768px),
print {
    .spmenu {
        display: none !important;
        /*「!important」をつける：display:noneの優先度を上げる*/
    }
}

.spmenu__inner {
    padding: 60px 15px;
    text-align: center;
}

.spmenu__logo_cow {
    width: 55px;
    height: 53px;
}

.spmenu__logo_name {
    margin: 0 auto;
}

.spmenu__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 35px;
    padding-top: 40%;
}

.spmenu__item {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

.spmenu__link:focus,
.spmenu__link:hover {
    opacity: 1;
    color: #FED966;
}


/* ------------------------ 
クラスactiveがつくとハンバーガーアイコンが「×」になる
------------------------ */
.hamburger.active {
    border: none;
}

.hamburger__line.active {
    background: transparent;
}

.hamburger__line.active::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger__line.active::after {
    transform: rotate(-45deg);
    top: 0;
}

/*ハンバーガーアイコン修了*/


/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav,
.hamburger.scroll-nav {
    /* 背景を白にする */
    background: #ffffff8f;
    border: none;
    /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}





/*------------------------------------------------
slogan
-----------------------------------------------*/

.slogan {
    position: relative;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 120px;
    padding-bottom: 90px;
    text-align: center;
}


.slogan__title {
    text-align: center;
    padding-bottom: 30px;
    font-size: clamp(28px, 2.8vw, 32px);
}

.slogan__title span {
    display: block;
}

.slogan__text {
    font-size: 14px;
    letter-spacing: 0.05em;
}

.round {
    position: absolute;
    top: 55%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 400px;
    height: 280px;
    background-color: rgba(68, 51, 34, 0.068);
    border-radius: 30% 70% 35% 65% / 50% 50% 50% 50%;
    text-align: center;
}

/*その場でフェイドイン*/
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



@media screen and (min-width:768px),
print {

    .slogan {
        margin-top: 120px;
        padding-top: 130px;
        padding-bottom: 200px;
    }

    .slogan__title {
        font-size: clamp(30px, 4vw, 45px);
        letter-spacing: 0.3rem;
    }

    .slogan__text {
        font-size: 18px;
    }

    .round {
        top: 47%;
        width: 500px;
        height: 300px;
    }
}




/*--------------------------------------------
profile
---------------------------------------------------*/

.about__box {
    position: relative;
    text-align: left;
}


.about__img,
.skill__img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
}


.about__textContent {
    position: absolute;
    width: 80%;
    height: 60%;
    padding: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: #fca800ea;
}

.about__title,
.skill__title {
    text-align: center;
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 25px;
}

.about__text {
    padding-right: 8%;
    padding-left: 8%;
    line-height: 2.5;
    font-size: 14px;
}



.skill__box {
    position: relative;
    margin-top: 40px;
}



.skill__textContent {
    position: absolute;
    width: 80%;
    height: 60%;
    padding: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: #fca800ea;
}

.skill__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.skill__item {
    width: 30%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
}

.skill_icon {
    width: 70%;
    height: auto;
}

.skill__text {
    font-size: 14px;
}

/*オブジェクトがフェードイン*/
.boxRight {
    opacity: 0;
    visibility: hidden;
    transform: translateX(150px);
    transition: all 2s;
}

.boxLeft {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-150px);
    transition: all 2s;
}


.profile__fadein {
    opacity: 1;
    visibility: visible;
    transform: none;
}

@media screen and (min-width:478px),
print {
    .skill_icon {
        width: 43%;
    }
}



@media screen and (min-width:768px),
print {

    .about__box {
        position: relative;
        margin-left: 20px;
        margin-right: 20px;
        padding-top: 60px;
        padding-bottom: 50px;
    }


    .about__img {
        width: 70%;
        height: 45vh;
        object-fit: cover;
        object-position: top;
    }

    .about__title,
    .skill__title {
        padding-top: 20px;
        font-size: 35px;
        letter-spacing: 0.3rem;
    }

    .about__textContent {
        position: absolute;
        top: 19%;
        left: 30%;
        transform: translate(0, 0);
        width: 70%;
        height: 470px;
    }

    .about__text {
        line-height: 2;
        font-size: 1.3rem;
        padding-left: 25px;
        padding-right: 25px;
    }

    .skill__box {
        position: relative;
        margin-left: 10px;
        margin-right: 10px;
        padding-top: 100px;
        padding-bottom: 50px;
        height: 644px;
    }

    .skill__img {
        position: absolute;
        left: 30%;
        transform: translate(0, 0);
        width: 70%;
        height: 45vh;
    }

    .skill__textContent {
        position: absolute;
        top: 22.5%;
        left: 0;
        transform: translate(0, 0);
        width: 70%;
        height: 470px;
    }
    .skill_icon {
        width: 47%;
    }

}
/*
@media screen and (min-width:1024px),
print {
    .about__img {
        height: 76vh;
    }
    .about__text {
        line-height: 2.5;
    }
    .skill__img {
        height: 76vh;
    }
    .skill_icon {
        width: 49%;
    }
}
*/


/*-----------------------------------------------------------------
works
------------------------------------------------------------------*/
.swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 6px;
}

.works__title {
    text-align: center;
    position: relative;
    letter-spacing: 0.1em;
    line-height: 1;
    padding-bottom: 10px;
    font-size: clamp(16px, 2.1vw, 25px);

}

.works__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    height: 5px;
    background-image: repeating-linear-gradient(45deg, #fcaa00 0px, #fcaa00 1px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
    background-size: 6px 6px;
}

/*====================================================================
slick
====================================================================*/


.sliderArea {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.sliderArea.w300 {
    max-width: 300px;
}

.slick-slide {
    margin: 0 5px;
}

.slick-slide img {
    width: 100%;
    height: auto;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.thumb {
    margin: 20px 0 0;
}

.thumb .slick-slide {
    cursor: pointer;
}

.thumb .slick-slide:hover {
    opacity: .7;
}

/*====================================================================
.variable
====================================================================*/

.variable .slick-slide img {
    width: auto;
    height: 300px;
}


/*====================================================================
.section.full_w
====================================================================*/

.section.full_w {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0 110px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .section.full_w {
        padding: 30px 0 160px;

    }
}

.section.full_w h2 {
    text-align: center;
}

.section.full_w h2:after {
    left: 0;
    right: 0;
    margin: 0 auto;
}

/*====================================================================
.full-screen
====================================================================*/

.full-screen .slick-list {
    overflow: visible;
}

.full-screen.slider {
    max-width: 600px;
    margin: 0 auto;
}

/*====================================================================
.full-screen-o
====================================================================*/

.full-screen-o .slick-list {
    overflow: visible;
}

.full-screen-o.slider {
    max-width: 600px;
    margin: 0 auto;
}

.full-screen-o .slick-dots {
    bottom: -33px;
}

.full-screen-o .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full-screen-o .slick-dots li button {
    font-size: 0;
    line-height: 0;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    text-indent: -9999px;
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 8px;
    outline: 0;
    border-radius: 5px;
    transition-duration: 0.3s;
}

.full-screen-o .slick-dots li button:before {
    content: none;
}

.full-screen-o .slick-dots li:nth-child(1) button {
    background: #f5d1c3;
}

.full-screen-o .slick-dots li:nth-child(2) button {
    background: #a9b7ba;
}

.full-screen-o .slick-dots li:nth-child(3) button {
    background: #c4d7d1;
}

.full-screen-o .slick-dots li:nth-child(4) button {
    background: #b4b1a0;
}

.full-screen-o .slick-dots li:nth-child(5) button {
    background: #e5dfd3;
}

.full-screen-o .slick-dots li button:hover,
.full-screen-o .slick-dots li.slick-active button {
    border-radius: 0px;
    width: 12px;
    height: 12px;
}

/*====================================================================
.full-screen_one
====================================================================*/

.full-screen_one .slick-list {
    overflow: visible;
}

.full-screen_one.slider {
    max-width: 600px;
    margin: 0 auto;
}



.sliderArea__text {
    width: 100%;
    height: 20vh;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.sliderArea__text h4 {
    padding-top: 10px;
    padding-bottom: 15px;
    letter-spacing: 0.05em;
    font-size: 16px;
    color: #fcaa00;
}

.sliderArea__text p {
    font-size: 12px;
    letter-spacing: 0.05em;
}


.btn {
    width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 25px;
    letter-spacing: 0.1em;
    background-color: #fcaa00;
    color: #FFF;
}

.btn-center {
    margin-top: 50px;
}

.btn-center.profileBtn {
    margin-top: 100px;
}

.btn-center.worksBtn {
    margin-top: 0;
}

.btn a {
    color: #fff;
}

.btn:focus,
.btn:hover {
    opacity: 0.7;
    transition: 0.5s;
    cursor: pointer;
}


@media screen and (min-width: 768px) {
    .btn {
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 50px;
        font-size: 18px;
    }

    .btn-center.profileBtn {
        margin-top: 160px;
    }
}

/*====================================================================
.ads_area
====================================================================*/

.ads_area {
    max-width: 1240px;
    height: auto;
    margin: 2em auto;
    padding: 0 20px;
    overflow: hidden;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .ads_area .sp {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .ads_area .pc {
        display: none;
    }

    .ads_area .sp {
        max-width: 300px;
        margin: 0 auto;
        overflow: hidden;
    }
}




/*----------------------------------------------------
contect
--------------------------------------------------------*/



.contact__text {
    padding-bottom: 20px;
    text-align: center;
    letter-spacing: 0.1rem;
}


/* formタグ：フォーム全体 */
.contact_form {
    margin: 40px;
}

.contact__container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    border-radius: 50px;
    background-color: rgba(68, 51, 34, 0.068);
}

/* ------------------------------------ */
/* フォーム共通書式 */
/* ------------------------------------ */
/* labelタグ：項目のラベルと入力欄を囲うタグ */
.form_block {
    display: block;
    width: 100%;
    height: auto;
    border-top: 1px dotted #432;
    padding: 1em;
    align-items: center;

}

/* 必須アイコン */
.form-required {
    margin-left: 1.5em;
    color: #fff;
    background-color: #fcaa00;
    padding: 2px 8px;
    font-size: 0.8rem;
    border-radius: 3px;
}

/* 入力欄 */
.form_field {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5em 1em;
    width: 100%;
    border: none;
}

.form_field:focus {
    outline: 2px solid #fcaa00;
}

.form_label {
    padding-bottom: 15px;
    text-indent: 0.5em;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media screen and (min-width:1024px),
print {
    .form_block {
        display: grid;
        grid-template-columns: 17em 1fr;
        align-items: center;
        height: 5em;
    }
}


/* ------------------------------------ */
/* セレクト：プルダウン専用 */
/* ------------------------------------ */
.select_block {
    padding-left: 1em;
}

/* ------------------------------------ */
/* 段落入力 */
/* ------------------------------------ */
.form_block.--textfield {
    align-items: start;
    border-bottom: 1px dotted #606060;
    height: auto;
}

.form_field.--textfield {
    height: 20em;
    resize: none;
}

/* ------------------------------------ */
/* 個人情報保護 */
/* ------------------------------------ */
.privacy {
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5em;
}

/* ------------------------------------ */
/* 送信後のサンクスページ専用 */
/* ------------------------------------ */
.section-thanks {
    padding: 100px 40px;
}

.thanks_h1 {
    font-size: 2.8rem;
    text-align: center;
}

.thanks_a {
    background-color: #6695ED;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8rem;
    width: 12em;
    height: 3em;
}



/*-------------------------------------------------------
footer
---------------------------------------------------------*/

.footer-s__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background-color: #fcaa00;
    color: #fff;
}

.footer__logo {
    width: 50px;
    height: 50px;

}

.footer__logo-img {
    filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}