@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
/*
Theme Name: smapot
Theme URI: null
Description: Description
Author: 81bridge - SGX
Version: 1.0
*/

.aligncenter {
	display: block;
	margin: 0 auto;
}
.alignright {
	float: right;
}
.alignleft {
	float: left;
}
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
	max-width: 100%;
}
.wp-block-image figure,
.wp-block-image figcaption {
	display: block;
}
a.nolink,
a.nolink:hover {
	opacity: 1;
	cursor: default;
	pointer-events: none;
}


/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
    font-family: "Noto Sans JP", sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: var(--text-color-black);
	text-decoration: none;
    transition: .3s;
	-webkit-transition: .3s;
}
a:visited {
	color: var(--text-color-black);
}
a:hover {
	color: var(--text-color-black);
}
a:active {
	color: var(--text-color-black);
}
p {
    color: var(--text-color-black);
    font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
    font-weight: 500;
	line-height: 2.4;
    letter-spacing: 0.14em;
}
address {
    font-style: normal;
}
svg {
    position: relative;
    z-index: 1;
}
/* タブレット */
@media all and (max-width: 960px) {
    p {
        font-size: 1.3rem;
    }
}
/* sp */
@media all and (max-width: 428px) {
    p {
        font-size: 1.2rem;
    }
}

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: var(--color-text-black);
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
    background: var(--color-main-white);
    /* background-image: url("https://www.transparenttextures.com/patterns/egg-shell.png"); */
    overflow-x: hidden;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	overflow: hidden;
	text-align: left;
}
#main {
    display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 961px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 960px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
    #main {

    }
	#container {
        padding-top: 20px;
	}
}

/*------------------------------------------------------------
	ブレイクポイント br
------------------------------------------------------------*/
.sp768 {
    display: none;
}
@media all and (max-width: 768px) {
    .sp768  {
        display: block;
    }
}
.sp428 {
    display: none;
}
@media all and (max-width: 428px) {
    .sp428 {
        display: block;
    }
}


/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media all and (max-width: 896px) {
    .content {
        max-width: inherit;
        padding: 0 24px;
    }
}


/* ===========================================================
アニメーション設定
============================================================== */
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	-webkit-transform: translateY(60px);
	transform: translateY(60px);
	transition: transform 1s, opacity 1.8s;
}
.fadeInUp.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.blur {
    animation-name: blur;
    animation-duration: 2s;
}

    @keyframes blur {
        0% {
        filter: blur(10px);
        }
        100% {
        filter: blur(0);
        }
    }


/* ===========================================================
パンくずリスト
============================================================== */
/*------------------------------------------------------------
	topBg
------------------------------------------------------------*/
.topBg {
    position: relative;
}
/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
#page-path {
    position: relative;
    margin: 20px auto 40px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1200px;
    z-index: 3;
}
#page-path li {
	margin: 0 10px 0 0;
	display: inline;
	letter-spacing: 0.08em;
    color: var(--text-color-black);
}
#page-path li a {
	padding: 0 30px 0 0;
	display: inline-block;
	background: url("img/icon/icon-path-arrow.png") no-repeat right center;
	background-size: 9px auto;
    color: var(--text-color-black);
}
#page-path li img {
    margin: -3px 0 0;
    display: inline-block;
    vertical-align: middle;
}
#page-path li a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
    #page-path {
        max-width: inherit;
        margin: 20px auto 40px;
        padding: 0 24px;
    }
    #page-path li {
        margin: 0 10px 0 0;
    }
    #page-path li a {
        padding: 0 24px 0 0;
        background-size: 8px auto;
    }
    #page-path li img {
        margin: -3px 0 0;
    }
}

/* ===========================================================
ボタン リンク
============================================================== */
/*------------------------------------------------------------
	button
------------------------------------------------------------*/
.buttonWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.buttonWrap a {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 240px;
    color: var(--coler-text);
    border-bottom: 1px solid var(--coler-text);
    letter-spacing: 0.08em;
    overflow: hidden;
}
.buttonWrap a:before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid var(--coler-text);
    border-right: 2px solid var(--coler-text);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.buttonWrap .button {
    position: relative;
    overflow: hidden;
    color: var(--coler-text);
    display: table;
}
.buttonWrap .button .linktext {
    overflow: hidden; /* 1つ目の影を隠す */
    color: transparent; /* テキスト本体は透明にする */
    /*
     影の設定
     1つ目：Y方向の位置にマイナスに設定してテキスト本体の上に配置、ぼかしなし
     2つ目：位置はテキスト本体と同じ、ぼかしなし
    */
    text-shadow: 0 1.5em 0 var(--coler-text), 0 0 0 var(--coler-text);
    transition: text-shadow 0.3s;
    font-weight: 400;    
}
/* ホバー */
@media all and (min-width: 961px) {
    .buttonWrap a:hover:before {
        right: 15px;
        background-size: 17px auto;
    }
    .buttonWrap a:hover .linktext {
        text-shadow: 0 0 0 var(--coler-text), 0 -1.5em 0 var(--coler-text); /* 2つの影の位置を上方向に1.5emずつずらす */
    }
}
/* タブレット  */
@media all and (max-width: 960px) {

}
/* sp  */
@media all and (max-width: 428px) {
    .buttonWrap {
        margin-top: 40px;
        justify-content: center;
    }
    .buttonWrap a {
        height: 40px;
    }
}
/*------------------------------------------------------------
	button white
------------------------------------------------------------*/
.buttonWrapWhite {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}
.buttonWrapWhite a {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    height: 60px;
    width: 100%;
    color: var(--coler-white);
    border-bottom: 1px solid var(--coler-white);
    letter-spacing: 0.08em;
    overflow: hidden;
}
.buttonWrapWhite a:before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid var(--coler-white);
    border-right: 2px solid var(--coler-white);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.buttonWrapWhite .button {
    position: relative;
    overflow: hidden;
    color: var(--coler-white);
    display: table;
}
.buttonWrapWhite .button .linktext {
    overflow: hidden; /* 1つ目の影を隠す */
    color: transparent; /* テキスト本体は透明にする */
    /*
     影の設定
     1つ目：Y方向の位置にマイナスに設定してテキスト本体の上に配置、ぼかしなし
     2つ目：位置はテキスト本体と同じ、ぼかしなし
    */
    text-shadow: 0 1.5em 0 var(--coler-white), 0 0 0 var(--coler-white);
    transition: text-shadow 0.3s;
    font-weight: 400;   
}
/* ホバー */
@media all and (min-width: 961px) {
    .buttonWrapWhite a:hover:before {
        right: 15px;
        background-size: 17px auto;
    }
    .buttonWrapWhite a:hover .linktext {
        text-shadow: 0 0 0 var(--coler-white), 0 -1.5em 0 var(--coler-white); /* 2つの影の位置を上方向に1.5emずつずらす */
    }
}

/*------------------------------------------------------------
    button ずらした枠線と背景色、矢印のボタン
------------------------------------------------------------*/
.button a {
    position: relative;
    margin: 0 auto;
    padding: 1em 2em;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 300px;
    font-family: "Shippori Mincho", serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--coler-main);
    background: var(--coler-text);
    transition: 0.3s;
}
.button a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid var(--coler-white);
    transition: 0.2s;
}

.button a::after {
    content: '';
    position: absolute;
    right: 40px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--coler-main);
    border-right: 2px solid var(--coler-main);
    transform: rotate(45deg);
    transition: 0.2s;
}


@media (min-width: 961px) {
    .button a:hover {
        text-decoration: none;
        /* color: var(--coler-text); */
        background: var(--coler-sub);
    }
    .button a:hover::before {
        top: 0;
        left: 0;
    }
    .button a:hover::after {
        content: '';
        right: 35px;
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--coler-main);
        border-right: 2px solid var(--coler-main);
        transform: rotate(45deg);
    }
}
/* タブレット  */
@media all and (max-width: 960px) {
    .button a {
        padding: 1em 2em;
        width: 240px;
    }
}


/*------------------------------------------------------------
    indexPage
------------------------------------------------------------*/
.indexPage {
    padding: 120px 0 0;
}

/*-----------------------
news
-------------------------*/
.indexPage .newsSec{
    padding: 80px 0;
    display: flex;
    gap:80px;
    justify-content: center;
}
.indexPage .newsSec .news-wrap{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:80px;
    justify-content: center;
}

/*------news-right-----*/
.indexPage .newsSec .news-right{
  margin-top: 50px;
}

.indexPage .newsSec .news-item{
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap:30px;
    width: 480px;
    color: var(--color-text-black);
    border-bottom: 1px #494845 dotted;
    transition: color 0.2s ease;
}

.indexPage .newsSec .news-item p{
    transition: color 0.2s ease;
}

.indexPage .newsSec .news-item .day{
    font-size: 1.4rem;
    font-family: "Roboto", sans-serif;
}

.indexPage .newsSec .news-item .title{
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.indexPage .newsSec .news-item:hover p{
    color: var(--accent-color-1);
}

.indexPage .newsSec .news-item:hover{
    color: var(--accent-color-1);
    border-bottom: 1px var(--accent-color-1) dotted;
}


/* ホバー */
@media all and (min-width: 769px) {

}

/* sp */
@media all and (max-width: 768px) {
    .indexPage .newsSec .news-wrap {
        gap: 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .indexPage .newsSec .news-item {
        margin: 0 0 16px 0;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        width: 300px;
    }
    .indexPage .newsSec .news-item .title {
        font-size: 1.5rem;
    }
}


/*-----------------------
keyword
-------------------------*/
.keyword{
    margin: 120px 0px;
    padding:50px;
    position: relative;
    text-align: center;
    border-radius: 50px;
    z-index: 100;
    background-color:var(--accent-color-1) ;
    box-shadow: 0px 0px 15px -5px #b1afaf;
}

.keyword .title{
    color: var(--main-color-white);
    margin: 0 0 20px;
}
.keyword h2{
    font-size: 4rem;
    color: var(--main-color-white);
}
.keyword .title p{
    font-weight: 100;
    letter-spacing: 1px;
    color: var(--main-color-white);
}
.keyword-contents p{
    margin: 8px;
    padding: 4px 24px;
    display: inline-block;
    border-radius: 100px;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text-black);
    background: var(--main-color-white);
    border: 1.5px solid transparent;
    transition: 0.4s ease;
}
.keyword-contents p:hover{
    color:var(--accent-color-1);
    background: var(--main-color-orange);
    border-color: var(--accent-color-1);
}


@media screen and (max-width: 768px) {
    .keyword {
        margin: 60px 0px;
        padding: 20px;
    }
    .keyword h2 {
        font-size: 3rem;
    }
}


/*-----------------------
banner
-------------------------*/
.banner{
    margin: 80px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.banner img{
    width: 300px;
    height: auto;
}
.banner a{
    margin: 0 24px;
    transition: transform 0.4s ease;
}
.banner a:hover {
    transform: scale(1.05);
}


@media screen and (max-width: 768px) {
    .banner {
        margin: 40px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px 0;
    }
}


/*-----------------------
message
-------------------------*/
.message{
    margin: -8px 0 0;
    text-align: center;
    background-color: #FEF3ED;
    position: relative;
}
.message-contents h2{
    margin: 0 0 50px;
    font-size: 28px;
    color: var(--accent-color-1);
}
.message-contents p{
    margin: 0 0 50px;
    line-height:2em;
}
.message-btn {
    margin: 80px 0 0;
}
.message::before{
    position: absolute;
    content: "";
    top:-30px;
    left: 50px;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background: var(--main-color-white);
    z-index: 10;
}
.message::after{
    position: absolute;
    content: "";
    bottom:-100px;
    right: -60px;
    height: 350px;
    width: 350px;
    border-radius: 50%;
    background: var(--main-color-white);
    z-index: 10;
}


/*------------------------------------------------------------
	privacy
------------------------------------------------------------*/
.privacy {
    margin-bottom: 240px;
}
.privacy p {
    margin-bottom: 4px;
    line-height: 2.3;
    letter-spacing: 0.06em;
}
.privacy h5 {
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.privacy .txt01 {
    margin-bottom: 65px;
}
.privacy .txt02 {
    margin-bottom: 72px;
}
.privacy .txt03 {
    margin-bottom: 35px;
}
.privacy .txt04 {
    margin-bottom: 0;
}
@media all and (max-width: 896px) {
    .privacy {
        margin-bottom: 110px;
    }
	.privacy .pageTitle {
		padding: 28px 0 30px;
	}
	.privacy .pageTitle .headLine01 .en {
		margin-bottom: 8px;
		font-size: 3.2rem;
	}
	.privacy .pageTitle .headLine01 .jp {
		font-size: 2rem;
	}
	.privacy #pagePath {
		margin-bottom: 56px;
	}
    .privacy p {
        margin-bottom: 3px;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
    .privacy h5 {
        margin-bottom: 3px;
        letter-spacing: 0.01em;
    }
    .privacy .txt01 {
        margin-bottom: 57px;
    }
    .privacy .txt02 {
        margin-bottom: 60px;
    }
    .privacy .txt03 {
        margin-bottom: 27px;
    }
    .privacy .txt04 {
        margin-bottom: 0;
    }
}
.wpcf7-response-output {
    display: none !important;
}



