@charset "utf-8";
/*
Theme Name: DesignGet
Theme URI: http://www.no-b.co.jp
Description: 株式会社ノーブランド［デザインゲットテーマ］
Version: 1.0
Author: nobrand co.,ltd.
Author URI: http://www.no-b.co.jp
Tags: responsive

	nobrand_themes v1.0
	 http://www.no-b.co.jp

	This theme was designed and built by nobrand co.,ltd.,
	whose blog you will find at http://www.no-b.co.jp
*/


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

html {
    font-size: 62.5%;
    font-size: 10px;
}
body {
    font-family: -apple-system, BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    -webkit-text-size-adjust: none;
    text-align: justify;
    word-break: break-all;
    text-justify: inter-ideograph;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--back);
}

/*-------- リンク設定 --------*/
a {
    color: var(--link);
    padding: 0;
    margin: 0;
    text-decoration: none;
    background: transparent;
    outline: 0;
    vertical-align: baseline;
    transition: 0.3s;
}
a:hover,
a:active {
    outline: none;
    color: var(--link-h);
}
.hideAnchor {
    display: inline-block;
    height: 0;
    overflow: hidden;
    text-indent: -9999px;
    margin-top: -65px;
    padding-bottom: 65px;
}

/*-------- ベースレイアウト --------*/
* {
    box-sizing: border-box;
}
.inner {
    display: block;
    width: 80%;
    min-width: 1024px;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    width: 100%;
}
body:not(#toppage) header{
    margin-top: 200px;
}
article[id^="page-"],
article[id^="post-"],
.page-content,
.post-archive,
.single-content,
.search-archive,
.notfound {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 auto;
}
.text p {
    margin-bottom: 20px;
}
.text p:last-of-type {
    margin-bottom: 0;
}
#toppage #content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#content {
    width: 100%;
}
#sidebar {
    width: 270px;
}
#footer {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 200px;
    padding: 200px 0 100px;
    background-color: var(--box-back);
}
.wide-box {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
}
p:empty:before {
    content: initial !important;
}
.align-left {
    text-align: justify;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.btnA {
    display: block;
    width: 100%;
    color: #fff;
    line-height: 2.4;
    text-align: center;
    margin-top: 15px;
    background: var(--link);
}
.btnA:hover {
    color: #fff;
    background: var(--link-h);
}
.text.align-left,
.text.align-right,
.text.align-center {
    display: inline-block;
    width: 100%;
}


/*-------- 画像 --------*/
img,
.wp-caption,
.wp-video {
    max-width: 100%;
    vertical-align: bottom;
}
.wp-video {
    width: 100% !important;
    height: auto;
    vertical-align: bottom;
}
a img {
    transition: 0.3s ease-in-out;
}
a img:hover {
    transition: all 1s;
    filter: blur(3px);
    filter: brightness(80%);
}
.alignnone,
.aligncenter,
.alignleft,
.alignright {
    position: relative;
    display: block;
}
.alignnone,
.aligncenter {
    margin: 0 auto 20px;
}
.alignleft {
    float: left;
    margin: 0 30px 20px 0;
}
.alignright {
    float: right;
    margin: 0 0 20px 30px;
}
.size-full {
    max-width: 100%;
}
.alignnone + br {
    margin: 0 auto 20px;
}
img.position-right,
img.position-left,
img.position-center {
    width: 350px;
    height: auto;
}
img.position-right {
    float: right;
    margin: 0 0 20px 30px;
}
img.position-left {
    float: left;
    margin: 0 30px 20px 0;
}
img.position-center {
    display: block;
    width: auto;
    margin: 0 auto 20px;
}
img.position-full {
    width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
}
a .size-medium,
#content a img.right,
#content .gallery-box div a img,
.page-gallery .box div a img {
    cursor: url(images/zoom.png), auto;
}

/*-------- Google font --------*/
@font-face {
    font-display: swap;
    font-weight: 600;
    font-style: normal;    
    font-family: 'Jost';
    src: url('fonts/Jost-Light.ttf') format('truetype');
}



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

/*-------- ヘッダメニュー --------*/
@media only screen and (min-width: 1025px) {
    #nav-box {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: auto;
    }
    #mainNav .pullMain {
        position: relative;
        display: flex;
        justify-content: flex-end;
        z-index: 100;
    }
    #mainNav .pullMain li a {
        display: block;
        color: var(--sub);
        white-space: nowrap;
        padding: 7px 10px;
    }
    #mainNav .pullMain li a:hover {
        color: #fff;
        background: var(--sub);
        transition: all .8s;
    }
    #mainNav .has-sub {
        position: relative;
    }
    #mainNav .has-sub ul {
        position: absolute;
        height: 0;
        left: 0;
        margin-top: -20px;
        opacity: 0;
        pointer-events: none;
    }
    #mainNav .has-sub > a:after {
        content: "\f107";
        font-family: "icomoon";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.8rem;
    }
    #mainNav .has-sub:hover ul {
        transition: all 0.5s;
        transform: translateY(20px);
        opacity: 1;
        pointer-events: auto;
    }
    #mainNav .has-sub ul li a {
        color: #fff;
        font-size: 1.5rem;
        line-height: 1.4;
        white-space: nowrap;
        padding: 14px 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--sub);
    }
    #mainNav .has-sub ul li a:hover {
        color: #fff;
        background: var(--main);
    }
    #mainNav .has-sub:last-child ul {
        left: auto;
        right: 0;
    }
}


/* メインメニュー　PC用
----------------------------------------------------------------------------------------------------------*/

@media only screen and (min-width: 1025px) {
/*-------- メニュースクロール --------*/
.fixed {
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    transition: 1.5s;
}
.fixed .header-logo {
    width: 110px;
}
.fixed #nav-box {
    height: auto;
    white-space: nowrap;
}
.fixed ul li a {
    font-size: 1.5rem !important;
	padding: 10px 10px !important;
}
.fixed ul li:hover:after {
    top: 35px !important;
}
.fixed .has-sub ul li a {
    height: auto !important;
}
.fixed .has-sub > a:after {
    bottom: -8px !important;
}
.header-top.fixed {
    padding: 6px 2%;
}
}



/* メインメニュー　Mobile用
----------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
#nav-box {
    display: none;
}
.mean-container .mean-bar {
	width: 100%;
    height: 46px;
	padding: 0;
    background: var(--main);
	z-index: 999999;
}
.mean-container .mean-bar:before {
	content: "MENU";
    float: right;
	font-size: 1.2rem;
	color: #fff;
	margin: 14px 45px -40px 15px !important;
}
.mean-container a.meanmenu-reveal {
    position: absolute;
    top: 0;
	right: 0;
    display: block;
    width: 22px;
	height: 22px;
    color: #fff;
	text-indent: -9999em;
	line-height: 22px;
	padding: 12px;
    background: var(--main);
    z-index: 1000;
	cursor: pointer;
}
.mean-container a.meanmenu-reveal.meanclose {
    width: 100% !important;
    text-align: right!important;
}
.mean-container a.meanmenu-reveal span {
	display: block;
    width: 23px;
	height: 3px;
	margin-top: 3px;
    background: #fff;
}
.mean-container .mean-nav {
    position: relative;
	display: block;
	width: 100%;
    max-height: 550px;
    overflow-y: auto;
    overflow-x: hidden;
	top: 46px;
    background: var(--main);
    z-index: 1000;
}
.mean-container .mean-nav ul {
    width: 100%;
    list-style-type: none;
	padding: 0;
	margin: 0;
}
.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%;
    border-top: 1px solid rgba(255,255,255,0.25);
}
.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 90%;
    color: #fff;
    text-align: left;
    text-decoration: none;
	text-transform: uppercase;
	padding: 7px 5%;
	margin: 0;
}
.mean-container .mean-nav ul li li a {
    text-shadow: none !important;
	padding: 7px 0 7px 9%;
	filter: alpha(opacity=75);
	visibility: visible;
	opacity: 0.75;
}
.mean-container .mean-nav ul li li a br {
    display: none;
}
.mean-container .mean-nav ul li.mean-last a {
    margin-bottom: 0;
	border-bottom: none;
}
.mean-container .mean-nav ul li li li a {
	padding: 7px 0 7px 50px;
}
.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%;
}
.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%;
}
.mean-container .mean-nav ul li a:hover {
	background: rgba(255,255,255,0.2);
}
.mean-container .mean-nav ul li a.mean-expand {
	position: absolute;
    top: -1px;
	right: 0;
	width: 18px;
	height: 18px;
	text-align: center;
	font-weight: 700;
    padding: 7px 12px 16px !important;
    margin-top: 1px;
	background: rgba(255,255,255,0.2);
	border: none !important;
    z-index: 2;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
	background: rgba(255,255,255,0.3);
}
.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}
.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}
.mean-container .mean-bar,
.mean-container .mean-bar * {
	box-sizing: content-box;
}
.mean-remove {
	display: none !important;
}
.fixed {
    border: none !important;
}
}

/*-------- ヘッダトップ --------*/
.header-top {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 2%;
    z-index: 1;
}
.header-top .pc {
    display: block;
    height: auto;
}
.header-top .mobile {
    display: none;
    height: auto;
}
.header-logo-text {
    color: var(--main);
}
#top-tpl {
    margin-bottom: 300px;
}
#header-top-img .copy .top-hero-title {
    display: block;
    margin: 0;
    background-image: url(/img/top-header.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 470px;
}
#header-top-img .copy,
#toppage .merit {
    position: relative;
    width: 950px;
    text-align: center;
    font-weight: bold;
    margin: 70px auto 100px;
}
#header-top-img .copy p {
    width: 100%;
    color: var(--main);
    text-align: center;
}
#header-top-img .copy p:nth-of-type(1) {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #4770c5;
    font-size: 3.5rem;
}
#header-top-img .copy p:nth-of-type(2) {
    color: #ff5400;
    font-size: 4.3rem;
    margin-top: 20px;
}
#header-top-img .copy p:nth-of-type(3) {
    font-size: 3.2rem;
}
#header-top-img .copy h1 {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
#toppage .merit {
    width: 100%;
    margin-bottom: 150px;
}
#toppage .merit .flex {
    display: flex;
    justify-content: center;
    gap: 20px;
}
#toppage .merit .flex div:nth-child(1),
#toppage .merit .flex div:nth-child(3) {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--main);
    background: #fff;
}
#toppage .merit .flex div:nth-child(2) {
    padding-top: 80px;
}
#toppage .merit h2 {
    color: #4770c5;
    font-size: 3.5rem;
    line-height: 1.4;
    font-weight: bold;
}
#toppage .merit h2 span {
    display: block;
    color: #4770c5;
    font-size: 7rem;
    margin-bottom: 30px;
}
#toppage .merit h3 {
    color: #fff;
    font-size: 180%;
    text-align: center;
    font-weight: bold;
    padding: 7px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #f60;
}

/*-------- ヘッダホーム画像 --------*/
#header-top-img {
    position: relative;
}
#header-top-img .box {
    width: 100%;
    color: #333;
    text-align: center;
}
#header-top-img .box .slide-title {
    color: var(--main);
    font-size: 2rem;
}
#header-top-img .tel {
    width: 260px;
    font-family: 'Jost', serif;
    color: var(--main);
    font-size: 2.6rem;
    margin: 20px auto;
    border: 1px solid var(--main);
    border-radius: 30px;
    z-index: 2;
}
#header-top-img .tel i {
    color: var(--sub);
}
#header-top-img .tel .icon-phone {
    font-size: 2rem;
}
#header-top-img .tel .icon-envelope-o {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    line-height: 30px;
    margin-left: -15px;
    border-radius: 50%;
    background-color: var(--main);
}
#header-top-img .tel .icon-envelope-o:hover {
    color: #fff;
    background-color: var(--sub);
}
#header-top-img .tel span {
    font-size: 1.7rem;
}
#header-top-img .tel span i:hover {
    color: var(--main);
}
#toppage #price {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 120px 5% 5%;
    margin-top: 100px;
    border: 1px solid var(--main);
    border-radius: 20px;
    background: #fbfbfb;
}
#toppage #price .title {
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
}
#toppage #price p:nth-of-type(1) {
    position: relative;
    display: inline-block;
    width: auto;
    height: 40px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 40px;
    text-align: center;
    padding: 0 15px;
    margin: 10px auto 5px;
    border-radius: 5px;
    background: var(--main);
    z-index: 0;
}
#toppage #price p:nth-of-type(1):after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: block;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--main) transparent transparent transparent;
}
#toppage #price p:nth-of-type(2) {
    color: #f60;
    font-size: clamp(2rem, 1.714rem + 1.43vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 5px;
}
#toppage #price p:nth-of-type(3) {
    color: #000;
    font-size: clamp(1.8rem, 1.582rem + 1.09vw, 2.4rem);
    font-weight: bold;
}
#toppage #price p:nth-of-type(4) span {
    font-family: 'Jost', serif;
    color: #f30;
    font-size: 8rem;
    line-height: 1;
}
#toppage #price p:nth-of-type(5) {
    color: #f60;
    font-size: 2rem;
}
#toppage #price p:nth-of-type(5) span {
    white-space: nowrap;
    padding: 3px 5px;
    border: 1px solid var(--main);
    margin-right: 10px;
    background: #fbfbfb;
}
#toppage #price p:nth-of-type(6) {
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}
#toppage #price p:nth-of-type(7) {
    font-weight: bold;
}
#toppage #price img {
    position: absolute;
    right: -5%;
    bottom: 0;
    z-index: 0;
}

/*-------- ヘッダ画像 --------*/
body {
    background-image: url(images/back-page.jpg);
    background-size: contain; 
    background-position: top center;
    background-repeat: no-repeat;
}

/*-------- パンくず --------*/
#breadcrumb {
    display: block;
    width: 100%;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #999;
    margin: 0 auto 40px;
}
#breadcrumb li,
#breadcrumb li a {
    flex-grow: 0;
    font-size: 1.2rem;
    line-height: 2;
    margin-right: 5px;
}
#breadcrumb li br,
#mainNav .has-sub ul li a br {
    display: none !important;
}



/*-------------------------------------------------------------------------------------------*/
/* 　ホーム
/*-------------------------------------------------------------------------------------------*/

#content-page {
    width: 100%;
}

/*-------- ホームタイトル --------*/
#toppage h2.top-title {
    position: relative;
    color: #222;
    font-size: clamp(2.6rem, 2.433rem + 0.84vw, 4rem);
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin: 0 auto 50px;
}
#toppage h2.top-title span {
    position: absolute;
    top: 0;
    right: 15%;
    color: #ff5722;
    font-size: clamp(4rem, 3.522rem + 2.39vw, 8rem);
    font-weight: normal;
}
#toppage h2.top-title span:first-child {
    right: auto;
    left: 15%;
}
#toppage h2.title {
    margin-bottom: 100px;
}
#toppage h2.title span {
    position: relative;
    color: #222;
    font-size: clamp(2.6rem, 2.091rem + 2.55vw, 4rem);
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    padding: 1em 2em;
    margin: 0 auto 50px;
}
#toppage h2.title span:before,
#toppage h2.title span:after { 
    content:'';
    width: 80px;
    height: 80px;
    position: absolute;
    display: inline-block;
}
#toppage h2.title span:before {
    border-left: solid 10px #ff5722;
    border-top: solid 10px #ff5722;
    top:0;
    left: 0;
}
#toppage h2.title span:after {
    border-right: solid 10px #ff5722;
    border-bottom: solid 10px #ff5722;
    bottom:0;
    right: 0;
}
#toppage .top-copy {
    color: #333;
    font-size: clamp(1.7rem, 1.643rem + 0.29vw, 2rem);
    text-align: center;
    font-weight: bold;
}
#toppage .top-copy h3 {
    color: var(--main);
    font-size: clamp(1.9rem, 1.718rem + 0.91vw, 2.4rem);
    text-align: center;
    font-weight: bold;
}
#toppage .top-copy ruby {
    color: #ff5722;
}
#toppage .top-copy ruby.ruby {
    color: #555;
}
ruby {
  line-break: anywhere;    /* 折返し可 */
  overflow-wrap: break-word;
  word-break: break-word;
}
#toppage .title-english {
    font-size: clamp(8rem, 6.806rem + 5.97vw, 18rem);
    margin-bottom: -20px !important;
}
#toppage .title-english span {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    display: block;
    font-size: 2.6rem;
    letter-spacing: 15px;
    margin-right: -15px;
    margin-bottom: -30px;
}

/*-------- ホームテンプレート --------*/
.total-posts {
    display: block;
    width: 100%;
    text-align: center;
}
.total-posts p {
    width: 230px;
    color: var(--main);
    text-align: center;
    margin: 0 auto 5px;
    border: 1px solid var(--main);
    border-radius: 20px;
}
.total-posts .count {
    display: block;
}
.total-posts .count span {
    font-family: 'Jost', serif;
    color: var(--main);
    font-size: 5rem;
    line-height: 1.3;
}
#tpl-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 2%;
    margin-top: -50px;
}
#tpl-box div {
    width: 48%;
    padding: 4% 4%;
    border-radius: 20px;
    background-color: #e3effc;
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: bottom right -30px;
}
#tpl-box div:nth-child(1) {
    background-image: url(images/top-tpl01.png);
}
#tpl-box div:nth-child(2) {
    background-image: url(images/top-tpl02.png);
}
#tpl-box div:nth-child(3) {
    background-image: url(images/top-tpl03.png);
}
#tpl-box div:nth-child(4) {
    background-image: url(images/top-tpl08.png);
}
#tpl-box div:nth-child(5) {
    background-image: url(images/top-tpl09.png);
}
#tpl-box div:nth-child(6) {
    background-image: url(images/top-tpl05.png);
}
#tpl-box div:nth-child(7) {
    background-image: url(images/top-tpl06.png);
}
#tpl-box div:nth-child(8) {
    background-image: url(images/top-tpl07.png);
}
#tpl-box h3 {
    color: var(--main);
    font-size: 2.4rem;
    font-weight: bold;
}
#tpl-box .price {
    font-family: 'Jost', serif;
    color: #ff5722;
    font-size: 3.4rem;
}
#tpl-box .price span {
    font-size: 1.6rem;
}
#tpl-box a {
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--link);
    background: var(--link) ;
}
#tpl-box a:hover {
    color: var(--link) ;
    background-color: rgba(255,255,255,.5);
}
#content .tpl.full-width {
    padding: 0 10%;
}
#content [class^="tpl-box"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 3%;
}
#content [class^="tpl-box"] .box {
    flex: 1 0 0%;
    position: relative;
    flex-basis: 31.33333333%;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
    background: var(--box-back);
}
#content [class^="tpl-box"] .box img {
    border-radius: 20px 20px 0 0;
}
#content [class^="tpl-box"] .box h3 {
    color: var(--main);
    font-size: 2.2rem;
    margin: 15px 0;
}
#content [class^="tpl-box"] .box .price {
    color: #f30;
    font-family: 'Jost', serif;
    font-size: 2.2rem;
}
#content [class^="tpl-box"] .box .btnA {
    line-height: 3.4;
    margin-top: 15px;
    border-radius: 0 0 20px 20px;
}
#demo09-tpl .swiper-slide {
    width: 400px !important;
    margin-right: 0 !important;
}
#demo09-tpl .slide {
    width: var(--slide-width);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    --slide-width: 300px;
    width: 400px;
    transition: .5s;
}
#demo09-tpl .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

/*-------- オリジナルデザイン --------*/
.original-design {
    display: block !important;
    padding: 0 !important;
    margin-bottom: -200px;
}
.original-design .column {
    display: flex;
    flex-wrap: wrap;
    overflow: initial !important;
}
.original-design .column div {
    position: relative;
    width: 50%;
    padding: 50px 10% 200px;
}
.original-design .column div h4 {
    color: #fff;
    font-size: 2rem;
}
.original-design .column .title {
    color: rgba(255,255,255,.3);
    font-family: 'Jost', serif;
    font-size: clamp(3rem, 2.273rem + 3.64vw, 5rem);
    line-height: 1.2;
}
.original-design .column img {
    position: absolute;
    bottom: -100px;
    width: 300px;
}
.original-design .column a {
    display: inline-block;
    color: #fff;
    padding: 10px 15px;
    margin-top: 30px;
    border: 1px solid #fff;
    border-radius: 5px;
}
.original-design .column a:hover {
    color: var(--link-h);
    background: rgba(255,255,255,.3);
}
.original-design .column a:after {
    font-family: "icomoon";
    content: "\f24d";
}
.original-design .column div:first-child img {
    left: 8%;
}
.original-design .column div:last-child img {
    right: 8%;
}
.original-design .column div:first-child {
    text-align: right;
    background-image: linear-gradient(90deg, rgba(65, 164, 253, 1), rgba(14, 208, 255, 1));
}
.original-design .column div:last-child {
    background-image: linear-gradient(90deg, rgba(123, 204, 2, 1), rgba(21, 175, 37, 1));
}


/*-------- ホームコンテンツ --------*/
.comparison-title {
    color: #222;
    font-size: clamp(2.6rem, 2.433rem + 0.84vw, 4rem);
    font-weight: bold;
    text-align: center;
}
.comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 6%;
}
.comparison .box {
    position: relative;
    width: 47%;
    font-size: 1.8rem;
    padding: 4% 4% 20%;
    border-radius: 15px;
    background: #f8f8f8;
}
.comparison .box span {
    color: #ff5722;
    font-weight: bold;
}
.comparison .box:first-child {
    border: 5px solid #ddd;
}
.comparison .box:last-child {
    border: 5px solid var(--main);
}
.comparison .box:first-child:after {
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    right: -15px;
    margin-top: -10px;
    border-style: solid;
    border-width: 30px 30px 30px 0;
    border-color: transparent #f90 transparent transparent;
}
.comparison .box:last-child:after {
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    left: -15px;
    margin-top: -10px;
    border-style: solid;
    border-width: 30px 0 30px 30px;
    border-color: transparent transparent transparent #f90;
}
.comparison .box h3 {
    color: var(--main);
    height: 67px;
    font-size: clamp(2rem, 1.76rem + 0.64vw, 2.4rem);
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}
.comparison .box img.alignnone {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 80%;
    max-width: 80%;
    margin: 0;
}
.wpz-insta-lightbox-wrapper>.swiper .swiper-button-prev,
.wpz-insta-lightbox-wrapper>.swiper .swiper-button-next {
    top: 40%;
}
.top-column .column1 div {
    position: relative;
    padding: 50px 4% 4%;
    border-radius: 20px;
}
.top-column .column1 h4 {
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2.2rem;
    white-space: nowrap;
    padding: 8px 25px;
    border: none;
    border-radius: 30px;
    background: var(--main);
}
.top-column .column1 img {
    width: 60%;
}
.top-column .column1 p:has(img) {
    border-radius: 20px;
    background: #fff;
}
.top-step {
    display: flex;
    gap: 20px 3%;
    justify-content: center;
    margin-top: -60px;
}
.top-step div {
    position: relative;
    width: 100%;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--box-back);
}
.top-step div:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 0;
    height: 0;
    z-index: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--main);
}
.top-step div img {
    border-radius: 10px;
}
.top-step div span {
    color: #f30;
}
.top-step div p:last-of-type {
    text-align: left;
}
.top-step div:last-child:before {
    content: initial;
}
.top-step div .tpl-top-btn {
    padding: 0;
}
.top-step div .tpl-top-btn a {
    margin: 30px auto 0;
}
.top-step .no {
    display: block;
    font-family: 'Jost', serif;
    color: var(--main);
    text-align: center;
    line-height: 30px;
}
.top-step .no span {
    display: block;
    color: #ff5722;
    font-size: 4rem;
    line-height: 30px;
}
.top-step h4 {
    display: block;
    color: var(--main);
    font-size: 2rem;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px dotted var(--main);
}
.print-price {
    position: relative;
    padding: 30px 20px;
    border: 3px solid #ee7f63;
    border-radius: 20px;
}
.print-price h2 {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
}
.print-price .w6.copy {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
}
.print-price .w6.copy img {
    margin: 0 0 20px;
}
.print-price .w6.copy .case {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: normal;
    padding: 1px 15px 5px 10px;
    margin-bottom: 30px;
    border: 1px solid #ee7f63;
    border-radius: 40px;
}
.print-price .w6.copy .case br {
    display: none;
}
.print-price .w6.copy .case .icon {
    display: inline-block;
    height: 30px;
    color: #fff;
    font-size: 1.5rem !important;
    font-weight: normal;
    text-align: center;
    line-height: 30px;
    padding: 0 10px;
    margin-right: 10px;
    border-radius: 20px;
    background: #e94c3c;
}
.print-price .w6.copy .case span {
    color: #e94c3c;
    font-size: 2rem !important;
    font-weight: bold;
}
.print-price .w6.copy .case p {
    margin-bottom: 0;
}
.print-price .w6.copy span {
    font-size: 1.7vw;
    line-height: 2;
}
.print-price .w6.copy ruby,
.print-price .w6.copy ruby rt {
    color: #e94c3c;
    line-height: 2;
}
.print-price .flex-box:last-child .w6 {
    position: relative;
    font-size: 1.4rem;
    padding: 40px 30px 10px;
    border-radius: 10px;
    background: #f9f9f9;
}
.print-price .flex-box:last-child .w6 h3 {
    position: absolute;
    top: -20px;
    color: #fff;
    font-size: 1.8rem;
    padding: 5px 20px;
    border-radius: 30px;
    background: #ee7f63;
}
.merit-title.full-width {
    padding: 0 10% 0;
}
.merit-title .title-english {
    font-size: clamp(3rem, -0.963rem + 19.82vw, 30rem) !important;
    line-height: 0.5;
    margin-top: 150px !important;
    margin-bottom: -100px !important;
}
.merit-title .title-english span {
    margin-bottom: 80px !important;
}
.merit-title h2.title span,
.merit-title h2.title:after {
    display: none !important;
}
#toppage .merit1 {
    width: 100vw;
    text-align: center;
    padding: 50px calc(50vw - 50% + 8px) 0;
    margin: 0 calc(50% - 50vw);
    background: url(images/top-back.png);background-position: 0 1px;
    background-size: 22.5px;
}
#toppage .merit1 .box {
    position: relative;
    display: flex;
    justify-content: center;
}
#toppage .merit1 .box img {
    width: 90%;
    max-width: 600px;
}
#toppage .merit4.column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 6%;
    padding-top: 30px;
    margin-bottom: 20px;
}
#toppage .merit4.column div {
    position: relative;
    width: 29.3333333%;
    font-size: 1.7rem;
    padding: 30px;
    border-radius: 10px;
    background: var(--box-back);
}
#toppage .merit4.column h4 {
    width: 100%;
    color: #fff;
    font-size: clamp(1.6rem, 1.481rem + 0.6vw, 2.6rem);
    text-align: center;
    padding: 4px 5px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: var(--main);
}
#toppage .merit4.column h4 .sub {
    position: absolute;
    top: -20px;
    right: 5px;
    width: 130px;
    color: #fff;
    font-size: 1.6rem;
    padding: 7px 5px 1px;
    border-radius: 30px;
    background: #ff5722;
}
#toppage .merit4.column h4 .sub span {
    font-family: 'Jost', serif;
    font-size: 2.4rem;
    line-height: 1;
    margin-left: 10px;
}
.tpl-top-btn a {
    display: block;
    width: 300px;
    color: #fff;
    font-size: clamp(1.7rem, 1.643rem + 0.29vw, 2rem);
    line-height: 4;
    text-align: center;
    margin: 50px auto 0;
    border-radius: 40px;
    border: 1px solid var(--link);
    background: var(--link);
}
.tpl-top-btn a:hover {
    color: var(--link);
    background: #fff;
}



/*-------------------------------------------------------------------------------------------*/
/* 　コンテンツ
/*-------------------------------------------------------------------------------------------*/
#content .table,
#content .column,
#content .tab,
#content .download,
#content .gallery,
#content .movie {
    width: 100%;
    overflow: hidden;
}
#content .list {
    overflow: hidden;
}
#content h3 {
    margin-top: 50px;
    clear: both;
}
#content h3:first-of-type {
    margin-top: 0;
}
.full-width {
    width: 100vw !important;
    padding: 50px 10%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
/*-------- 文章 --------*/


/*-------- 画像 --------*/
#content img.right,
#content img.left,
#content img.center {
    width: 400px;
    height: auto;
}
#content img.right {
    float: right;
    margin-left: 30px;
}
#content img.left {
    float: left;
    margin-right: 30px;
}
#content img.center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
#content img.full {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    object-fit: cover;
}

/*-------- リスト --------*/
#content .list.typeA {
    color: #333;
}
#content .list.typeA p {
    padding: 7px 0 5px;
    padding-left: calc(1em + 13px);
    text-indent: calc(-1em + -9px);
}
#content .list.typeA p:first-of-type {
    margin-left: 6px;
    padding-left: calc(1em + 8px);
    text-indent: calc(-1em + -3px);
}
#content .list.typeA p + p,
#content .list.typeB p + p {
    border-top: 1px dotted #CCC;
}
#content .list.typeA p:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.4rem;
    margin-right: 7px;
}
#content .list.typeA p:first-of-type:before {
    margin-left: -6px;
    margin-right: 10px;
}
#content .list.typeA p.title-english:before,
#content .list.typeB p.title-english:before {
    content: initial;
}
#content .list.typeB {
    counter-reset: p;
    color: #333;
}
#content .list.typeB p {
    padding: 7px 0 5px;
    text-indent: -1.2em;
    padding-left: 1.2em;
}
#content .list.typeB p:before {
    content: counter(p, decimal) ". ";
    counter-increment: p;
    color: var(--sub);
}

/*-------- テーブル --------*/
.table-note {
    display: none;
}
.tableA {
    width: 100%;
    border-collapse: collapse;
    border-top: #ddd 1px solid;
}
.tableA th {
    color: var(--main);
    text-align: left;
    padding: 10px 0;
    font-weight: 400;
    border: 1px solid #ddd;
}
.tableA td {
    text-align: left;
    padding: 10px 10px 10px 15px;
    border: 1px solid #ddd;
}
.tableA th.last,
.tableA td.last {
    border-bottom: none;
}
.tableA td ul {
    margin-top: -28px;
}
#page-price .price {
    padding: 30px;
    background: var(--box-back);
}
#page-price .price .tableA tr td:last-child {
    text-align: right;
}
.tableB {
    width: 100%;
    border-collapse: collapse;
    background: var(--box-back);
}
.tableB th {
    width: 20%;
    color: var(--main);
    vertical-align: middle;
    padding: 12px;
    border: 1px solid #ddd;
    background: var(--box-back);
}
.tableB th:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 5px;
}
.tableB td {
    vertical-align: middle;
    padding: 12px;
    border: 1px solid #f8f8f8;
}
.tableC {
    width: 100%;
    border-collapse: collapse;
    border-top: #f8f8f8 1px solid;
}
.tableC th {
    color: var(--main);
    text-align: left;
    padding: 10px 0;
    font-weight: 400;
    vertical-align: top;
    border-bottom: #f8f8f8 1px solid;
}
.tableC td {
    position: relative;
    text-align: left;
    padding: 10px 10px 10px 15px;
    border-bottom: 1px solid #f8f8f8;
}
.tableC td:before {
    content: "";
    position: absolute;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    margin-left: -15px;
    background: var(--link);
}
.tableC th.last,
.tableC td.last {
    border-bottom: none;
}
.tableC td ul {
    margin-top: -10px;
}
.tableC ul.sns {
    border-top: none;
}
.tableD {
    width: 100%;
    border-collapse: collapse;
    border-top: #ccc 1px dotted;
}
.tableD th {
    color: var(--main);
    text-align: left;
    padding: 8px 0;
    font-weight: 400;
    vertical-align: top;
    border-bottom: #ccc 1px dotted;
}
.tableD td {
    position: relative;
    text-align: left;
    padding: 8px 8px 8px 15px;
    border-bottom: 1px dotted #ccc;
}
.tableD td:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 5px;
}
.table-comparison {
    width: 100%;
    border-collapse: collapse;
    border-top: #ddd 1px solid;
}
.table-comparison th {
    color: #007c7e;
    font-size: 1.8rem;
    text-align: center;
    vertical-align: middle;
    padding: 10px 0;
    border: 1px solid #ddd;
    background: #f9f9f9;
}
.table-comparison td {
    text-align: left;
    text-align: center;
    padding: 10px 10px 10px 15px;
    border: 1px solid #ddd;
}
.table-comparison th.last,
.table-comparison td.last {
    border-bottom: none;
}
.table-comparison td .mark {
    color: #f60;
    font-size: 2.8rem;
    margin: -10px auto -10px;
}
.table-comparison td span {
    color: #000;
    font-size: 2rem;
    font-weight: bold;
}
.table-comparison th .title {
    font-weight: bold;
}
.table-comparison tr:nth-child(1) th:nth-child(2) {
    color: #fff;
    font-weight: bold;
    background: #ffb628;
}
.table-comparison tr:nth-child(1) th:nth-child(2) p {
    font-size: 2.6rem;
}
.table-comparison td:nth-child(2) {
    background: #fff4df;
}
.table-comparison th span {
    font-size: 1.8rem;
    font-weight: normal;
}
.table-comparison tbody tr:last-of-type {
    border-top: 2px solid #f90;
}

/*-------- カラム --------*/
#content [class^="column-box"] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px 3%;
}
#content [class^="column-box"] .box {
    flex: 1 0 0%;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
}
@-moz-document url-prefix() {
#content [class^="column-box"] .box {
    padding-bottom: 50px;
}
}
#content [class^="column-box"] .box:has(a){
    padding-bottom: 50px;
}
#content [class^="column-box"] img {
    margin-bottom: 10px;
    object-fit: cover;
    aspect-ratio: 6/4;
}
#content [class^="column-box"] h3 {
    color: var(--main);
    text-align: center;
    margin-bottom: 5px;
}
#content [class^="column-box"] a {
    position: absolute;
    bottom: 0;
}
#content .columnA [class^="column-box"] .box {
    padding: 30px 30px 85px;
    background: var(--box-back);
}
#content .columnA [class^="column-box"] a {
    width: calc(100% - 60px);
    bottom: 30px;
}

/*-------- タブ --------*/
#toppage ul[class^="tab"],
.basic-format ul[class^="tab"] {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
#toppage ul[class^="tab"] li,
.basic-format ul[class^="tab"] li {
    display: block;
    height: calc(100% + 1px);
    color: #222;
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 12px 20px;
    padding-left: calc(1em + 20px);
    text-indent: calc(-1em + 0px);
    text-transform: uppercase;
    background: #ddd;
    margin: 1px  0 -2px;
}
#toppage ul[class^="tab"] li a,
.basic-format ul[class^="tab"] li a {
    color: #222;
}
#toppage ul[class^="tab"] li:last-of-type a,
.basic-format ul[class^="tab"] li:last-of-type a {
    margin-right: 0;
}
#toppage ul[class^="tab"] li a:before,
.basic-format ul[class^="tab"] li a:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--link);
    font-size: 1.2rem;
    margin-right: 5px;
    vertical-align: 2px;
}
#toppage ul[class^="tab"] li:hover,
.basic-format ul[class^="tab"] li:hover {
    background: var(--link);
}
#toppage ul[class^="tab"] li:hover a,
.basic-format ul[class^="tab"] li:hover a {
    color: #fff;
}
#toppage ul[class^="tab"] li:hover a:before,
.basic-format ul[class^="tab"] li:hover a:before {
    color: #fff;
}
#toppage ul[class^="tab"] li.active,
.basic-format ul[class^="tab"] li.active {
    color: #222;
    border-top: 2px solid var(--link);
    background: var(--box-back);
}
#toppage ul[class^="tab"] li.active:hover a,
.basic-format ul[class^="tab"] li.active:hover a {
    color: #222;
}
#toppage ul[class^="tab"] li.active:hover a:before,
.basic-format ul[class^="tab"] li.active:hover a:before {
    color: var(--link);
}
#toppage .tab-detail,
.basic-format .tab-detail {
    width: 100%;
    padding: 60px;
    border-radius: 0 0 10px 10px;
    background: var(--box-back);
    overflow: hidden;
}
#toppage [class^="tabbox"],
.basic-format [class^="tabbox"] {
    display: none;
}

/*-------- ダウンロード --------*/
#content .download a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    width: 100%;
    color: #333;
    padding: 10px 20px 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-left: 2px solid var(--link);
    background: var(--box-back);
}
#content .download a i {
    color: var(--link);
}
#content .download a:hover {
    color: var(--link);
    background: var(--box-back);
}

/*-------- ギャラリー --------*/
#content .gallery.full-width {
    background: var(--box-back);
}
#content .gallery-box {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 2%;
}
#content .gallery-box div {
    position: relative;
    width: 23.5%;
}
#content .gallery-box div img {
    margin-bottom: 10px;
    object-fit: cover;
    aspect-ratio: 6/4.5;
}
#content .gallery-box div h4 {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 5px;
    background: var(--main);
    transition: all .5s;
    opacity: 0;
}
#content .gallery-box div h4:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--main) transparent transparent transparent;
}
#content .gallery-box div:hover h4 {
    top: -40px;
    opacity: 1;
}
/*-------- 動画 --------*/
.movie-bace {
    width: 100%;
    overflow: auto;
}
.movie-box {
    position: relative;
    max-width: 100%;
    height: auto;
    padding-top: 56.25%;
    margin-bottom: 20px;
    overflow: hidden;
}
.movie-box iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
.movie-box.position-right,
.movie-box.position-left,
.movie-box.position-center {
    width: 400px;
    height: 225px;
    padding-top: 0;
}
.movie-box.position-right {
    float: right;
    margin-left: 30px;
}
.movie-box.position-left {
    float: left;
    margin-right: 30px;
}
.movie-box.position-center {
    margin-right: auto;
    margin-left: auto;
}

/*-------- ステップ --------*/
.step-box {
    counter-reset: item;
}
.step-box .detail {
	position: relative;
	display: inline-block;
	padding: 25px 25px 17px 100px;
	width: 100%;
	margin-bottom: 30px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	background: var(--box-back);
}
.step-box .detail:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 34.5px 0 34.5px;
    border-color: #ccc transparent transparent transparent;
    position: absolute;
    left: 15px;
    bottom: -25px;
}
.step-box .detail:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 34.5px 0 34.5px;
    border-color: #F6F6F6 transparent transparent transparent;
    position: absolute;
    left: 15px;
    bottom: -22px;
}
.step-box .detail h4.step-title {
    display: block;
	font-size: 2rem;
	color: var(--main);
	font-weight: normal;
    margin-bottom: 10px;
}
.step-box .detail h4.step-title:before {
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: 'Jost', serif;
    color: var(--sub);
    font-size: 6rem;
    line-height: 1;
    margin-top: -10px;
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
}
.step-box .detail:last-child:before,
.step-box .detail:last-child:after {
    display: none;
}

/*-------- ヒストリー --------*/
.history {
    position: relative;
    counter-reset: item;
    padding-top: 25px;
    overflow: hidden;
}
.history:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    margin-left: -2px;
    background: var(--sub);
}
.history .round {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: 15px;
    border-radius: 50%;
    background: var(--sub);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.history .content {
    position: relative;
    width: 46.5%;
    padding: 30px;
    margin: 0;
    background: var(--box-back);
}
.history .content:after {
    content: "";
    top: 24px;
    left: 100%;
    display: table;
    border-color: transparent;
    border-left-color: var(--sub);
    clear: both;
}
.history .content:before {
    content: '';
    position: absolute;
    top: 24px;
    left: 100%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left: 15px solid var(--sub);
}
.history .content .day {
    width: 100px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 2px 8px;
    margin-bottom: 8px;
    background: var(--main);
}
.history .content h4 {
    color: var(--main);
    padding-bottom: 8px;
    margin-bottom: 7px;
    border-bottom: 1px dotted var(--main);
}
.history .content h4:before {
    position: absolute;
    top: -70px;
    left: 30px;
    font-family: 'Jost', serif;
    color: var(--sub);
    font-size: 7rem;
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
}
.history .block {
    position: relative;
}
.history .block:after {
    content: "";
    display: table;
    clear: both;
}
.history .block:nth-child(even) .content {
    float: right;
}
.history .block:nth-child(even) .content:before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: var(--sub);
}
.history .content img {
    width: 250px !important;
}


/*-------------------------------------------------------------------------------------------*/
/* 　お知らせ（スライダー）
/*-------------------------------------------------------------------------------------------*/
[id^="news"] {
    width: 100vw;
    padding: 80px 7% 120px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 50px;
    background-position: center;
    background-size: cover;
}
[id^="news"] h2.title {
    margin-bottom: 0;
}
[id^="news"] h2.title:after {
    display: none;
}
.content-slider .slide-media {
    margin-bottom: 20px;
    background: var(--main);
    overflow: hidden;
}
.content-slider .slide-media img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 6/4;
    transition: .8s;
}
.content-slider .swiper-area {
    position: relative;
}
.content-slider .swiper-button-prev,
.content-slider .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    font-size: 3rem;
    margin: auto;
}
.content-slider .swiper-button-prev {
    right: calc(100% + 2.4rem);
    left: initial;
}
.content-slider .swiper-button-next {
    left: calc(100% + 2.4rem);
}
[id^="news"] .swiper-slide.tpl-list {
    display: block;
}
[id^="news"] .swiper-slide .cal {
    position: absolute;
    top: 30px;
    left: 30px;
}
[id^="news"] .swiper-slide h4 {
    height: 30px;
    color: var(--main);
    font-size: 1.6rem;
    text-align: center;
    padding-top: 5px;
}
[id^="news"] .swiper-slide .info:before {
    bottom: 30px;
}
[id^="news"] .swiper-slide .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 3.2em;
}
[id^="news"] .swiper-slide .slide-btn {
    color: #fff;
    line-height: 2;
    text-align: center;
    margin-top: 15px;
    background: var(--link);
}
[id^="news"] .swiper-slide a {
    display: block;
    width: 100%;
    color: #666;
    font-size: 1.5rem;
}
[id^="news"] .swiper-slide a:hover img {
    opacity: 1;
}
[id^="news"] .swiper-slide a:hover .slide-btn {
    background: var(--link-h);
}
.swiper-button-prev i,
.swiper-button-next i {
    color: var(--link);
}
#news-typeB {
    width: 80%;
    min-width: 1024px;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    transform: translateX(0);
}
#toppage #news-typeB {
    width: 100%;
}
#news-typeB .news {
    margin-top: 30px;
}
#news-typeB .news li {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 5px 20px;
    margin-bottom: 7px;
    background: var(--box-back);
}
#news-typeB .news li a {
    display: -webkit-box;
    width: 100%;
    height: 100%;
    color: #333;
    line-height: 45px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
#news-typeB .news li a:hover {
    background: #f1f1f1;
}
#news-typeB .news .ymd {
    color: #FFF;
    font-size: 1.3rem;
    padding: 3px 6px 4px;
    margin-right: 12px;
    border-radius: 3px;
    background: var(--sub);
}
#news-typeB .news li i {
    color: var(--main);
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    display: none;
}



/*-------------------------------------------------------------------------------------------*/
/* 　固定ページ
/*-------------------------------------------------------------------------------------------*/
/*-------- 固定タイトル --------*/
h1.page-title,
#single-template h1,
#single-template h2.title {
    display: inline-block;
    width: 100%;
    color: #333;
    font-size: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 20px;
}
#single-template h2.title {
    margin-bottom: 60px;
}
.title-english {
    font-family: 'Jost', serif;
    color: var(--main);
    font-size: clamp(4rem, 0.952rem + 15.24vw, 20rem);
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 auto !important;
}
.single-content .title-english {
    margin: 0 auto 50px !important;
}
h2.title {
    display: inline-block;
    width: 100%;
    color: var(--main);
    font-size: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 40px;
}
h2.title:after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin: 10px auto 0;
    background: var(--sub);
}
h3.title {
    display: flex;
    align-items: center;
    color: var(--main);
    font-size: clamp(1.8rem, 1.754rem + 0.25vw, 2rem);
    line-height: 1.4;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--main);
}
h3.title:before {
    content: "";
    width: 20px;
    height: 2px;
    margin-right: 10px;
    background: var(--sub);
}
p.notfound {
    display: block;
    text-align: center;
}

/*-------- テーブル --------*/
.table-time {
    width: 100%;
    border-collapse: collapse;
    border: 1px #ccc solid;
    margin-bottom: 10px;
}
.table-time th {
    color: var(--main);
    font-size: 1.4rem;
    border: 1px #ccc solid;
    background-color: #f4f4f4;
    text-align: center;
    font-weight: normal;
}
.table-time td {
    font-size: 1.2rem;
    border: 1px solid #DADADA;
    border: 1px #ccc solid;
    text-align: center;
}
.table1 {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}
.table1 th {
    color: var(--main);
    text-align: left;
    padding: 10px 0;
    font-weight: 400;
    border-bottom: #e3e3e3 1px solid;
}
.table1 td {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #e3e3e3;
    margin-top: 5px;
}
.table1 th.last,
.table1 td.last {
    border-bottom: none;
}

/*-------- 固定コンテンツ --------*/



/*-------------------------------------------------------------------------------------------*/
/* 　紹介者
/*-------------------------------------------------------------------------------------------*/
.tableA.introducer {
    background: #fff;
}
.tableA.introducer th {
    width: 20%;
    text-align: center;
    vertical-align: middle;
}
.tableA.introducer tr:nth-child(3n) {
    border-top: 2px solid var(--main);
}
.tableA.introducer td.name {
    width: 170px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　検索結果
/*-------------------------------------------------------------------------------------------*/
.search-archive #no-image {
    display: none;
}
.search-archive .post-list {
    position: relative;
    padding: 30px 160px 30px 30px;
    margin-bottom: 30px;
    background: var(--box-back);
}
h2.post-list-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 5px;
}
h2.post-list-title a {
    color: #222;
}
h2.post-list-title.typeB {
    padding-left: calc(1em + 5px);
    text-indent: calc(-1em + 7px);
}
h2.post-list-title i {
    color: var(--main);
}
.search-archive .blog-button {
    right: 30px;
    bottom: 30px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　スタッフ
/*-------------------------------------------------------------------------------------------*/
.page-staff-big .box {
    display: flex;
    column-gap: 4%;
    padding: 30px;
    margin-bottom: 50px;
    background: var(--box-back);
}
.page-staff-big .box picture {
    width: 30%;
}
.page-staff-big .box .staff {
    height: 100%;
    max-height: 400px;
    object-fit: cover;
}
.page-staff-big .box .text-box {
    width: 66%;
}
.page-staff-big .box h3 {
    font: 500 2.4rem/1.2em "Cinzel", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
.page-staff-big .box div.text {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dotted #ccc;
}
.page-staff-big .box picture.icon,
.page-staff-small .box picture.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    background: #f1f1f1;
}
.page-staff-small .box picture.icon {
    height: auto;
    margin-bottom: 15px;
    aspect-ratio: 6/5;
}
[class^="page-staff-"] .box h3 span {
    color: #666;
    font-size: 1.2rem;
    margin-left: 10px;
}
[class^="page-staff-"] .box dt {
    color: var(--main);
    padding-left: 3px;
    margin: 20px 0 10px;
    border-left: 2px solid var(--sub);
}
ul.sns {
    display: flex;
    column-gap: 10px;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px dotted #ccc;
}
.page-staff-big ul.sns {
    padding-top: 25px;
    margin-top: 20px;
}
ul.sns a {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    line-height: 1em;
}
ul.sns li img {
    width: 26px;
    height: 26px;
    padding: 4px;
    object-fit: cover;
}
ul.sns .twi {
    background: #000;
}
ul.sns .fac {
    background: #537bbd;
}
ul.sns .ins {
    background: #f2117b;
}
ul.sns .lin {
    background: #06c755;
}
ul.sns .not {
    background: #41c9b4;
}
.sns .blo {
    background: #f90;
}
ul.sns li span {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 5px;
    background: var(--main);
    transition: all .5s;
    opacity: 0;
}
ul.sns li span:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--main) transparent transparent transparent;
}
ul.sns a:hover span {
    opacity: 1;
}
.page-staff-small {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
}
.page-staff-small .box {
    position: relative;
    width: 32%;
    padding: 20px 20px 70px;
    background: var(--box-back);
}
.page-staff-small .box .staff {
    margin-bottom: 15px;
    object-fit: cover;
    aspect-ratio: 6/5;
}
.page-staff-small .box h3 {
    font: 500 2.2rem/1.2em "Cinzel", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
.page-staff-small .box .post {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
[class^="page-staff-"] .box .role {
    font-size: 1.4rem;
    padding: 3px 3px 3px 48px;
    text-indent: -48px;
    line-height: 1.4;
    margin-bottom: 15px;
    background: #f1f1f1;
}
[class^="page-staff-"] .box .role span {
    color: var(--main);
    font-size: 1.4rem;
    padding: 3px;
    background: #f1f1f1;
}
.page-staff-small .box dt {
    color: var(--main);
    margin: 10px 0;
}
.page-staff-small .box dd {
    font-size: 1.4rem;
}
.page-staff-small .box ul {
    justify-content: center;
    position: absolute;
    bottom: 15px;
    width: calc(100% - 40px);
}



/*-------------------------------------------------------------------------------------------*/
/* 　ギャラリー
/*-------------------------------------------------------------------------------------------*/
.page-gallery {
    width: 100%;
    column-count: 3;
    column-width: 7em;
    column-gap: 2%;
    overflow: hidden;
}
.page-gallery .box {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    background: var(--box-back);
    transition: .8s;
}
.page-gallery .box div {
    overflow: hidden;
}
.page-gallery .box img:hover {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}
.page-gallery .box h3 {
    color: #fff;
    font-size: 1.4rem;
    padding: 3px 5px;
    margin: 15px 0 15px !important;
    border-left: 2px solid var(--sub);
    background: var(--main);
}
.page-gallery .box .comment {
    font-size: 1.4rem;
}



/*-------------------------------------------------------------------------------------------*/
/* 　カレンダー
/*-------------------------------------------------------------------------------------------*/
.calendar {
    width: 100%;
    padding: 30px 30px 20px;
    background: var(--box-back);
}
.calendar iframe {
    width: 100%;
}
.qtip-title,
.qtip-content {
    font-size: 1.4rem;
    line-height: 1.4;
}
.fc-toolbar .fc-left h2 {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border: 1px solid #d3d3d3;
}
.calendar-text {
    color: #f50;
    font-size: 1.4rem;
    margin-bottom: 10px !important;
}



/*-------------------------------------------------------------------------------------------*/
/* 　予約
/*-------------------------------------------------------------------------------------------*/
.reserve {
    width: 100%;
    padding: 30px 30px 20px;
    background: var(--box-back);
}
.reserve ul {
    display: flex;
    column-gap: 20px;
    margin-top: 10px;
}
.reserve ul li {
    color: #000;
    border-bottom: 1px dotted #f30;
}



/*-------------------------------------------------------------------------------------------*/
/* 　Q&A
/*-------------------------------------------------------------------------------------------*/
.faq-box {
    overflow: hidden;
}
.faq-box.logbox {
    width: 100%;
    height: 600px;
    padding-bottom: 80px;
    overflow: auto;
}
.accordion {
    width: 100%;
    margin: 0 auto;
    overflow: auto;
}
.accordion .ac-header {
    position: relative;
    color: #222;
    font-size: 1.8rem;
    padding: 20px 45px 20px 40px;
    border-top: 1px dotted #ddd;
    cursor: pointer;
    transition-duration: 0.2s;
}
.accordion .ac-header:hover,
.accordion .ac-header.open {
    background: var(--box-back);
}
.accordion .ac-header:before {
    content: "\ea0a";
    font-family: "icomoon";
    float: right;
    color: var(--sub);
	font-size: 2rem;
    font-weight: 900;
    margin-right: -35px;
    transition: .5s;
}
.accordion .ac-header.open {
    color: var(--main);
}
.accordion .ac-header.open:before {
    content: "\ea0b";
    font-family: "icomoon";
    transform: rotate(180deg);
}
.accordion .ac-header:after,
.accordion .ac-inner:after {
    position: absolute;
    left: 10px;
    width: 25px;
    height: 25px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    border-radius: 50%;
}
.accordion .ac-header:after {
    content: "Q";
    top: 22px;
    background: var(--main);
}
.accordion .ac-inner {
    position: relative;
    display: none;
    line-height: 1.6;
    padding: 0 80px 20px 50px;
    margin-top: 10px;
    box-sizing: border-box;
}
.accordion .ac-inner:after {
    content: "A";
    top: 0;
    background: var(--sub);
}
.accordion:last-child .ac-header:after.open {
    content: "\f068";
}



/*-------------------------------------------------------------------------------------------*/
/* 　求人情報
/*-------------------------------------------------------------------------------------------*/
.job-box {
    padding: 30px;
    background: var(--box-back);
}
.job-box .job {
    overflow: auto;
}
.job-box .job h3 {
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    background: var(--main);
}
.job-box table li {
    display: block;
}
.job-box table .mail {
    width: 80px;
    color: var(--link);
    text-align: center;
    line-height: 1.2;
    padding: 3px;
    border: 1px solid var(--link);
}
.job-box table .mail:hover {
    color: var(--link-h);
    border: 1px solid var(--link-h);
}
.job-box .btn {
    display: block;
    width: 160px;
    color: #fff;
    text-align: center;
    line-height: 2;
    margin: 5px auto;
    border-radius: 3px;
    background: var(--link);
}
.job-box .btn:hover {
    background: var(--link-h);
}



/*-------------------------------------------------------------------------------------------*/
/* 　会社概要
/*-------------------------------------------------------------------------------------------*/
.campany-format .tableA .sns {
    display: flex;
    column-gap: 10px;
}
.campany-format .tableA .sns a,
.campany-format .tableA .sns li img {
    width: 30px;
    height: 30px;
}
.campany-format .sns-line {
    display: flex;
    column-gap: 15px;
    margin-top: 20px;
}
.campany-format .sns-line img {
    height: 40px;
}
#map-top {
    width: 100%;
}
.acf-map {
    width: 100%;
    height: 400px;
    margin: 0;
    border: 20px solid #f8f8f8;
}
.acf-map img {
    max-width: inherit !important;
}
.company-box {
    position: relative;
    padding: 25px 30px 20px;
    margin-top: 15px;
    border: 1px solid #ffe0e0;
    background: #fff4f4;
}
.company-box i {
    position: absolute;
    top: -15px;
    left: 15px;
    color: #f30;
    font-size: 3.5rem;
}
.company-box h5 {
    color: var(--main);
    font-size: 1.6rem;
    font-weight: bold;
}
.sdgs-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
    margin-bottom: 20px;
}
.sdgs-box div {
    width: 32%;
    padding: 20px;
    background: #fff;
}
.sdgs-box div h4 {
    color: var(--main);
    text-align: center;
    margin-bottom: 8px;
}
.sdgs-box div h4 span {
    display: block;
    color: #fff;
    padding: 3px;
    margin-bottom: 8px;
    background: var(--main);
}
.sdgs-box div p {
    font-size: 1.6rem;
}
.tableC .site li:before {
    content: "\f138";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 3px;
}
.tableC .site li:after {
    content: "\f24d";
    font-family: "icomoon";
    font-size: 1.2rem;
    margin-left: 3px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　投稿ページ
/*-------------------------------------------------------------------------------------------*/
/*-------- 投稿ヘッダ --------*/
.single-content .header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    background: none;
}
.cal {
    position: relative;
    width: 80px;
    min-width: 80px;
    height: 80px;
    color: #FFF;
    text-align: center;
    padding: 3px 10px 5px;
    margin: 0 10px 0 0;
    border-radius: 3px;
    background: var(--main);
}
.cal p:nth-child(1) {
    width: 30px;
    font-size: 1.8rem;
    font-weight: bold;
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.cal p:nth-child(2) {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 0;
}
.cal p:nth-child(3) {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.2;
    border-radius: 0 0 3px 3px;
    background: var(--link);
}
.blog-info {
    flex-grow: 1;
    color: #666;
    font-size: 1.2rem;
    padding: 0;
}
.blog-info ul {
    display: flex;
    min-height: 30px;
    padding: 5px 0;
    margin-top: 13px;
    border-top: 1px solid var(--main);
    border-bottom: 1px solid var(--main);
}

/*-------- 投稿タイトル --------*/
.post-title {
    color: #222;
    font-size: clamp(2rem, 1.908rem + 0.49vw, 2.4rem);
    line-height: 1.4;
    margin-bottom: 8px;
}

/*-------- 投稿コンテンツ --------*/
.single-post {
    word-wrap: break-word;
    padding: 30px;
    margin-bottom: 20px;
    background: var(--box-back);
    overflow: auto;
}
#content.point .text p {
    line-height: 2.2;
    letter-spacing: .03em;
    margin-right: -.03em;
}
#content.point p.page-title {
    width: 100%;
    color: #333;
    font-size: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 20px;
}
#content.point .header {
    display: block;
}
#content.point h1 {
    width: 100%;
    color: #fff;
    font-size: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
    line-height: 1.4em;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    padding: 20px 10px;
    margin-bottom: 20px;
    border: double 6px #FFF;
    background-color:  var(--main);
}
.blog-info ul {
    margin-top: -15px;
    border-top: none;
}
.single-post-point .summary {
    padding: 30px;
    border: 1px solid #ccc;
    background: var(--box-back);
}
.single-post-point .summary h2 {
    color: var(--main);
    font-size: clamp(2rem, 1.855rem + 0.73vw, 2.4rem);
    line-height: 1.4em;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--main);
    background: none;
}
.single-post-point .text {
    overflow: auto;
}
.single-post-point h2 {
    width: 100%;
    color: #fff;
    font-size: clamp(2.1rem, 1.8rem + 0.8vw, 2.6rem);
    line-height: 1.4em;
    padding: 10px 12px;
    margin-bottom: 30px;
    background: var(--main);
}
.single-post-point .repeat {
    counter-reset: item;
}
.single-post-point .repeat h3 {
    display: block;
    color: #333;
    padding: 3px 15px;
    margin-bottom: 10px;
    border: 1px solid var(--main);
    background-color: #d9eaea;
}
.single-post-point .repeat h3:before {
    display: inline-block;
    margin-right: 3px;
    counter-increment: item;
    content: counter(item)'.';
}
.single-post-point .list-box {
    padding: 50px;
    margin-bottom: 20px;
    background: var(--box-back);
}
.single-post-point .list-box p {
    width: 100%;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    line-height: 2;
    margin-bottom: 20px !important;
    background: var(--main);
}
.single-post-point .list-box ul {
    color: #333;
}
.single-post-point .list-box li {
    position: relative;
    line-height: 1.4;
    padding: 5px 0;
    padding-left: calc(1.7em + 10px);
    text-indent: calc(-1.7em + -10px);
    border-bottom: 1px dotted #ddd;
}
.single-post-point .list-box li a {
    display: block;
    color: #008385;
}
.single-post-point .list-box li a:after {
    content: "\e945";
    font-family: "icomoon";
    position: absolute;
    top: -15px;
    right: -20px;
    color: var(--link);
    transition: .8s;
    opacity: 0;
}
.single-post-point .list-box li a:hover:after {
    top: 9px;
    opacity: 1;
}
.single-post-point .list-box li a:hover {
    color: var(--link);
}
.single-post-point .list-box li a span,
.single-post-point h2 span {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 1.8rem;
    line-height: 30px;
    text-align: center;
    text-indent: 0;
    margin: 0 7px 0 0;
    background-color: var(--sub);
}
.single-post-point h2 span {
    vertical-align: middle;
    margin-top: -4px;
    border: 1px solid rgba(255,255,255,.7);
}
.single-post-point .list-box li a.sub {
    color: #555;
    font-size: 1.4rem;
    margin-left: 30px;
    margin-top: 4px;
}
.single-post-point .list-box li a.sub:hover {
    color: var(--link);
}
.single-post-point .list-box li a.sub span {
    width: 10px;
    height: 10px;
    font-size: 1.4rem;
    line-height: 22px;
}


/*-------- 投稿ソーシャルボタン --------*/
.social-sharing {
    height: 32px;
    margin-top: 70px;
}
.social-sharing img,
.social-sharing .line,
.social-sharing .line iframe {
    border-radius: 50%;
}
.social-sharing ul {
    display: flex;
    justify-content: center;
}
.social-sharing li {
    margin: 0 5px;
}
.social-sharing li img:hover {
    transform: scale(1, 1);
}
.social-sharing .line {
    width: 32px;
    height: 32px;
    padding: 1px;
    background: #00b900;
}
.social-sharing .facebook {
    width: 32px;
    height: 32px;
    padding: 1px;
    border-radius: 50%;
    background: #4770c5;
}
.social-sharing .twitter {
    width: 32px;
    height: 32px;
    padding: 1px;
    border-radius: 50%;
    background: #000;
}
.social-sharing a img:hover {
    opacity: 1;
    transform: scale(1);
}

/*-------- 投稿ページナビ --------*/
.pagenav {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.pagenav .prev,
.pagenav .next {
    width: 100px;
}
.pagenav a {
    display: inline-block;
    width: 100px;
    text-align: center;
    padding: 6px 15px;
    border-radius: 30px;
    border: 1px solid var(--link);
}
.pagenav a:hover {
    border: 1px solid var(--link-h);
}
.prev a:before {
    content: "\f104";
    font-family: "icomoon";
    color: var(--sub);
    margin-right: 10px;
}
.next a:after {
    content: "\f105";
    font-family: "icomoon";
    color: var(--sub);
    margin-left: 10px;
}

/*-------- ツールチップ --------*/
[data-tooltip] {
    position: relative;
    display: inline-block;
    color: #F60;
    border-bottom: 1px dotted #F60;
}
[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
}
[data-tooltip]:before {
    content: '';
    position: absolute;
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
}
[data-tooltip]:after {
    height: 22px;
    padding: 11px 11px 0;
    font-size: 1.2rem;
    line-height: 11px;
    content: attr(data-tooltip);
    white-space: nowrap;
    border-radius: 30px;
}
[data-tooltip]:hover,
[data-tooltip]:focus {
    background-color: transparent;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after {
    visibility: visible;
    opacity: 1;
}
.tooltip-top.tooltip-movable:before,
.tooltip-top.tooltip-movable:after {
    transition: all .1s linear;
}
.tooltip-top.tooltip-movable:before {
    margin-bottom: -15px;
}
.tooltip-top.tooltip-movable:after {
    margin-bottom: -3px;
}
.tooltip-top.tooltip-movable:hover:before,
.tooltip-top.tooltip-movable:hover:after {
    transform: translateY(-10px);
}
.tooltip-top:before,
.tooltip-top:after {
    left: 30%;
}
.tooltip-top:after {
    margin-left: -120px;
    height: auto;
    width: 150px;
    padding: 11px;
    line-height: 19px;
    white-space: normal;
    text-align: left;
}
.tooltip-top:after {
    margin-bottom: 7px;
}
[data-tooltip].tooltip-top:after {
    color: #fff;
    background: var(--sub);
}
[data-tooltip].tooltip-top:before {
    border-top-color: var(--sub);
}
.tooltip-top:before,
.tooltip-top:after {
    bottom: 100%;
}
.tooltip-top:before {
    margin-bottom: -5px;
}
[data-tooltip].social {
    border-bottom: none;
}
[data-tooltip].social:after {
    text-align: center;
    width: 120px;
}




/*-------------------------------------------------------------------------------------------*/
/* 　Web詳細ページ
/*-------------------------------------------------------------------------------------------*/
#web-tpl .tpl-slider {
    display: block;
    width: 1024px;
    height: 604px;
    margin: 0 auto 50px;
    background: url(images/tpl-back.png) no-repeat center top;
    background-size: contain;
}
#web-tpl .tpl-slider .box {
    position: relative;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
    width: 723px;
    height: 451px;
    overflow: hidden;
}
#web-tpl .tpl-slider .box img {
    position: absolute;
    top: 0;
    bottom: initial;
    animation: tpl-top1 8s forwards;
}
#web-tpl .tpl-slider .box:hover img {
    animation: tpl-top2 8s forwards;
}
@keyframes tpl-top2 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(calc(-100% + 451px));
  }
}
@keyframes tpl-top1 {
   0% {
    transform: translateY(calc(-100% + 451px));
  }
  100% {
    transform: translateY(0%);
  }
}
#web-tpl .tpl-slider .box:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url(images/scroll.png);
    background-position: center;
    background-repeat: no-repeat;
    transition: .5s;
    z-index: 1;
    opacity: 1;
}
#web-tpl .tpl-slider .box:hover:after {
    opacity: 0;
    transition: .5s;
}
#web-tpl .work-mobile {
    position: relative;
    width: 250px;
    height: auto;
    margin: 0 auto 100px;
}
#web-tpl .work-mobile p {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Jost', sans-serif;
    color: var(--main);
    font-size: 2.6rem;
    line-height: 30px;
}
#web-tpl .work-mobile p:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: var(--main);
}
#web-tpl .work-mobile .img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/scroll.png);
    background-position: center top 180px;
    background-repeat: no-repeat;
    transition: .5s;
    z-index: 1;
}
#web-tpl .work-mobile .img:hover:after {
    display: none;
    transition: .5s;
}
#web-tpl .work-mobile .img:before {
    content: url(images/mobile-back.png);
    position: absolute;
    top: -1px;
    left: 0;
    width: 250px;
    height: 516px;
}
#web-tpl .work-mobile .img {
    position: relative;
	width: 250px;
	height: 505px;
    margin: 0;
    border-radius: 20px;
    background-size: cover;
    background-position: center top 12px;
	transition: 8s;
}
#web-tpl .work-mobile .img:hover {
    background-position: bottom;
	transition: 15s;
}
#web-tpl .tpl-page {
    display: flex;
    column-gap: 2%;
}
#web-tpl .tpl-page .box {
    position: relative;
    width: 23.5%;
    padding-top: 50px;
    overflow: hidden;
}
#web-tpl .tpl-page .box img {
    border: 1px solid #e3e3e3;
}
#web-tpl .tpl-page .box .title {
    position: absolute;
    top: -0;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    padding: 5px;
    background: var(--main);
    transition: all .5s;
}
#web-tpl .tpl-page .box .title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--main) transparent transparent transparent;
}
#web-tpl .box .title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--main) transparent transparent transparent;
}
#web-tpl .function-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 4%;
}
#web-tpl  .function-box .flex-box {
    display: block;
    width: 30.6666666%;
    padding: 20px;
    border: 1px solid #ddd;
}
.function-box .text:last-of-type h3,
#web-tpl .function-box:last-of-type h3 {
    margin-top: 0 !important;
}
#web-tpl .function-box:last-of-type .number {
    margin-top: 10px;
}
#web-tpl .function .img,
#web-tpl .function .text {
    width: 100%;
}
#web-tpl .function .text {
    padding-top: 0;
    margin-top: -20px;
}
#web-tpl .function .text .number {
    color: var(--main);
    font-family: 'Jost', sans-serif;
    font-size: 5rem;
    margin-bottom: -10px;
}
#web-tpl .function .text h3 {
    color: #000;
    font-size: 2.4rem;
}
#web-tpl .function .text h3 span {
    font-size: 1.6rem;
}
#web-tpl .function-box .flex-box:nth-child(even) .text {
    margin-bottom: 20px;
}
#web-tpl .function-box .flex-box:last-child {
    width: 65.3333332%;
}
#web-tpl .function-box .flex-box:last-child p {
    margin-bottom: 0;
}
#web-tpl .function-box .flex-box:last-child .number {
    line-height: 1;
    margin-top: 20px;
}
#web-tpl .price-box {
    text-align: center;
    margin-bottom: 70px;
}
#web-tpl .price-box .price span {
    color: #f30;
    font-family: 'Jost', sans-serif;
    font-size: 3.8rem;
}
#web-tpl .price-box .price {
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 30px;
}
#web-tpl .price-box .price br:first-of-type {
    display: none;
}
#web-tpl .price-box ul {
    display: flex;
    justify-content: center;
    column-gap: 2%;
}
#web-tpl .price-detail h3 {
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    line-height: 2.4;
    font-feature-settings: "palt";
    margin-bottom: 15px;
    background: var(--main);
}
#web-tpl .price-detail h3 sapn {
    color: #000;
    font-size: 1.9rem;
}
#web-tpl .line-list li span {
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 1.8rem;
    font-feature-settings: "palt";
}
#web-tpl .line-list li .price {
    color: var(--link) !important;
    font-family: 'Jost', sans-serif;
    font-size: 2.4rem;
    white-space: nowrap;
}
#web-tpl .payment .box {
    padding: 15px;
    margin-bottom: 5px;
    background: #f8f8f8;
}
#web-tpl .line-list li {
    display: flex;
    align-items: center;
}
#web-tpl .line-list li i {
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 5px;
}
#web-tpl .line-list li p {
    color: var(--sub);
    white-space: nowrap;
    font-feature-settings: "palt";
}
#web-tpl .line-list .dotted {
    flex: 1 1 auto;
    height: 5px;
    margin-left: 10px;
    margin-right: 10px;
    background-image: -webkit-radial-gradient(circle closest-side, rgba(0, 0, 0, .4) 99%, transparent 1%);
    background-image: radial-gradient(circle closest-side, rgba(0, 0, 0, .4) 99%, transparent 1%);
    background-size: 6px 2px;
    background-repeat: repeat-x;
}
#web-tpl .line-list .cancel {
    position: relative;
}
#web-tpl .line-list .cancel::before {
    position: absolute;
    content: "";
    display: block;
    transform: rotate(10deg);
    background-color: #f30;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}
#web-tpl .line-list .line {
    padding-top: 13px;
    margin-top: 13px;
    border-top: 2px solid var(--main);
}
#web-tpl .line-list li span:first-of-type {
    color: var(--main);
}
#web-tpl .price-detail strong {
    color: #f30;
    text-decoration: none;
    font-weight: normal;
}
#web-tpl .line-list .total .price {
    color: #f30 !important;
    font-size: 2.8rem;
    font-weight: bold !important;
}
#web-tpl .tab-detail #tab1 .accordion .ac-header {
    width: 700px;
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.8;
    margin: 20px auto;
    border-radius: 10px;
    background: #f30;
}
#web-tpl .tab-detail #tab1 .accordion :before {
    color: #fff;
}
#web-tpl .tab-detail #tab1 .accordion .ac-header span {
    border-bottom: 1px solid rgba(255,255,255,.6);
}
#web-tpl .tab-detail #tab1 .accordion .ac-header:hover {
    background: #ff6139;
}
#web-tpl .tab-detail #tab1 .accordion .ac-inner {
    padding: 0;
}
#web-tpl .tab-detail #tab1 .top-support {
    width: calc(100% - 4px);
    padding: 20px 2%;
    margin: 2px auto 30px;
}
#web-tpl .tab-detail #tab1 .accordion .ac-header:after,
#web-tpl .tab-detail #tab1 .accordion .ac-inner:after,
#web-tpl .tab-detail #tab1 .top-support:before {
    display: none;
}
#web-tpl .tab-detail #tab1 .top-support {
    width: calc(100% - 4px);
    padding: 20px 2%;
    margin: 2px auto 30px;
}
#web-tpl .tab-detail #tab1 .accordion .ac-header:after,
#web-tpl .tab-detail #tab1 .accordion .ac-inner:after,
#web-tpl .tab-detail #tab1 .top-support:before {
    display: none;
}
#web-tpl .tab-detail #tab1 .accordion .flex-box {
    margin-bottom: 20px;
}
#web-tpl .tab-detail #tab1 .accordion .flex-box .w6 {
    font-size: 1.4rem;
}
#web-tpl .tab-detail #tab1 .top-support .w6 .title {
    margin-top: 15px;
}
#web-tpl .top-support {
    position: relative;
    padding: 40px 4%;
    border: 10px solid #fff;
    background: #f8f8f8;
    box-shadow: 0px 0px 3px 0px #f30;
}
#web-tpl .top-support:before {
    content: "";
    position: absolute;
    top: -100px;
    right: 20px;
    width: 250px;
    height: 234px;
    background: url(images/icon01.png) no-repeat;
    background-size: contain;
}
#web-tpl .top-support .w6 {
    text-align: left;
    padding: 20px;
    margin-top: 10px;
    background: #fff;
}
#web-tpl .list1 li:before {
    color: var(--main) !important;
}
#web-tpl .top-support .w6 h4 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    line-height: 2;
    margin-bottom: 15px;
    background: #f30;
}
#web-tpl .tab-detail h4:before {
    display: none;
}
#web-tpl .top-support .w6 .title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: -15px;
}
#web-tpl .top-support .w6:first-child:after {
    content: "\f067";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "icomoon";
    color: #f30;
    font-size: 3rem;
}
#web-tpl .paypal-box {
    display: flex;
    align-items: center;
    column-gap: 2%;
    padding: 20px;
    margin: 20px 0 0;
    background: #f8f8f8;
}
#web-tpl .paypal-box h4 {
    color: var(--text);
    font-size: 1.8rem;
    margin-bottom: 3px !important;
}
#web-tpl .paypal-box img {
    border: none !important;
}
#web-tpl #tab2 .line-list li .price {
    color: var(--link);
    font-size: 2.2rem;
}
#web-tpl .line-list .comment {
    margin-top: -10px;
}
.step-box {
    counter-reset: item;
}
.step-box .box {
	position: relative;
	display: flex;
    justify-content: space-between;
    column-gap: 2%;
	padding: 15px 25px 17px 90px;
	width: 100%;
	margin-bottom: 30px;
	box-sizing: border-box;
	background: #f8f8f8;
}
.step-box .box:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 34.5px 0 34.5px;
    border-color: #f8f8f8 transparent transparent transparent;
    position: absolute;
    left: 10px;
    bottom: -25px;
}
.step-box .box:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 34.5px 0 34.5px;
    border-color: #f8f8f8 transparent transparent transparent;
    position: absolute;
    left: 10px;
    bottom: -22px;
}
#tab3 .step-box h4 {
    display: block;
	font-size: 2rem !important;
    margin-bottom: 0 !important;
}
#tab3 .step-box h4:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: 'Jost', serif;
    color: var(--link);
    font-size: 4rem;
    line-height: 1;
    margin-top: -10px;
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
}
.step-box .box:last-child:before,
.step-box .box:last-child:after {
    display: none;
}
.step-box .box .customer {
    width: 300px;
    min-width: 300px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    background: rgba(255,255,255,.7);
}
.step-box .box .customer span {
    display: block;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    background: var(--sub);
}
#web-tpl .deadline {
    position: relative;
    width: 80%;
    text-align: center;
    padding: 30px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #ddd;
}
#web-tpl .deadline h4 {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    color: #fff !important;
    text-align: center;
    line-height: 40px;
    background: var(--main);
}
#web-tpl .tableB {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
#web-tpl .tableB td:nth-child(1) {
    width: 25% !important;
    color: var(--main) !important;
}
#web-tpl .tableB td {
    width: 75%;
    font-size: 1.6rem;
    text-align: left;
    vertical-align: middle;
    padding: 12px;
    border: 1px solid #ddd;
}
#web-tpl .tableB tr td:first-child {
    width: 25%;
    color: var(--text);
    background: #f8f8f8;
}
#web-tpl .tableB tr:nth-child(2) td,
#web-tpl .tableB tr:nth-child(3) td,
#web-tpl .tableB tr:nth-child(4) td {
    font-family: initial !important;
    font-size: 1.6rem !important;
}
#web-tpl .tableB tr:first-child td {
    padding: 12px !important;
}
#web-tpl .tableB tr:first-child td {
    padding: 12px !important;
}
#web-tpl .tableB tr:first-child td:last-of-type {
    color: #555 !important;
}
#web-tpl .tableB tr:nth-child(4) {
    color: #555 !important;
    border-top: initial !important;
}
.tab-detail h2 {
    color: var(--main);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}
#web-tpl .btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}
#web-tpl .btn-box .btn {
    position: relative;
    width: 300px;
    font-size: 1.8rem;
    text-align: center;
    padding: 20px 15px;
    border-radius: 40px;
    background: var(--link);
}
#web-tpl .btn-box .btn:first-of-type span {
    position: absolute;
    top: -45px;
    left: 0;
    color: #fff;
    font-size: 1.6rem;
    padding: 3px 20px;
    border-radius: 30px;
    background: #f30;
    animation: blinkBorder 1s ease infinite alternate;
}
@keyframes blinkBorder{
    0% {opacity:0.3;}
    100% {opacity:1;}
}
#web-tpl .btn-box .btn:first-of-type span:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 25%;
    margin-left: -10px;
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #f30 transparent transparent transparent;
}
#web-tpl .btn-box .btn a {
    color: #fff;
}
#web-tpl .btn-box .btn:hover {
    background: var(--link-h);
}
#web-tpl p.copy {
    color: #000;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}




/*-------------------------------------------------------------------------------------------*/
/* 　投稿テキストエディタボタン
/*-------------------------------------------------------------------------------------------*/
strong {
    color: var(--main);
    text-decoration: underline dotted #f10;
}
del {
    text-decoration: var(--link) line-through;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
h3.editor {
    position: relative;
    color: var(--main);
    font-size: clamp(2rem, 1.88rem + 0.32vw, 2.2rem);
    line-height: 1.6;
    padding-left: 0.5em;
    padding-bottom: 8px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--main);
}
h3.editor:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    width: 4px;
    height: 22px;
    background: var(--main);
}
h4.editor {
    display: inline-block;
    color: var(--main);
    font-size: 1.7rem;
    line-height: 1.7;
    padding-bottom: 3px;
    margin: 10px 0;
    border-bottom: 1px solid var(--main);
}
span.big {
    color: var(--sub);
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
}
.btn1,
.btn2 {
    position: relative;
    display: inline-block;
    color: var(--main);
    line-height: 1.6;
    padding: 3px 50px 3px 0;
    margin: 10px 0;
    border-bottom: 1px solid var(--link);
}
.btn1:hover,
.btn2:hover {
    color: #fff;
    padding: 3px 50px 3px 10px;
    border: 1px solid var(--link);
    background: var(--link);
}
.btn2:after {
    content: "\e92e";
    font-family: "icomoon";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.box1 {
    padding: 40px;
    margin: 20px 0;
    background: #fbfbfb;
}
.box2 {
    padding: 40px;
    margin: 20px 0;
    border: 1px solid #ddd;
}
.box3 {
    position: relative;
    padding: 40px;
    margin: 20px 0;
    border: 1px solid #f1d8d4;
    background: #faf3f2;
}
.column1,
.column2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 2%;
    margin-bottom: 20px;
}
.column1 div {
    padding: 30px;
    background: #fbfbfb;
}
.column1 div.two,
.column2 div.two {
    flex: 0 0 49%;
}
.column1 div.three,
.column2 div.three {
    flex: 0 0 32%;
}
.column1 div.four,
.column2 div.four {
    flex: 0 0 23.5%;
}
.column1 div.five,
.column1 div.others,
.column2 div.five,
.column2 div.others {
    flex: 0 0 18.4%;
}
.column1 h4,
.column2 h4 {
    color: var(--main);
    font-size: 1.8rem;
    padding-bottom: 2px;
    margin-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}
.column2 div {
    padding: 30px;
    border: 1px solid #ddd;
}
.column1 div p,
.column2 div p {
    line-height: 1.8;
    margin-bottom: 20px !important;
}
.column1 div p:last-of-type,
.column2 div p:last-of-type {
    margin-bottom: 0 !important;
}
.list1 {
    color: #333;
    margin: 10px 0;
}
.list1 li {
    padding: 8px 0;
    padding-left: calc(1em + 5px);
    text-indent: calc(-1em + -4px);
}
.list1 li + li {
    border-top: 1px dotted #ccc;
}
.list1 li:before {
    content: "\ea42";
    font-family: "icomoon";
    color: var(--main);
    font-size: 1.4rem;
    margin-right: 7px;
}
.list2 {
    counter-reset: li;
    color: #333;
    margin: 10px 0;
}
.list2 li {
    padding: 4px 0;
    text-indent: -1.2em;
    padding-left: 1.2em;
}
.list2 li:before {
    content: counter(li, decimal) ". ";
    counter-increment: li;
    color: var(--main);
}
.line-list1 {
    width: 200px;
    margin: 30px auto;
    border-style: none;
    border-width: 0;
}
.list2 li + li {
    border-top: 1px dotted #ccc;
}
.list3 {
    display: flex;
    column-gap: 4%;
}
.list3 li {
    color: var(--main);
    padding: 5px 15px;
    border: 1px solid var(--sub);
}
.line-list1::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle farthest-side, #eee, #eee 60%, transparent 60%, transparent);
    background-size: 20px 20px;
}
.space {
    height: 20px;
    border-style: none;
    border-width: 0;
}



/*-------------------------------------------------------------------------------------------*/
/* 　テンプレート詳細
/*-------------------------------------------------------------------------------------------*/
#single-template .header {
    position: relative;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    background: var(--main);
}
#single-template .header .ranking {
    position: absolute;
    top: -30px;
    right: 10px;
}
#single-template .header h2 {
    display: flex;
    align-items: flex-end;
    color: #fff;
    font-size: 1.6rem;
}
#single-template .header h2 span,
#single-template .tpl-number {
    font-family: 'Jost', serif;
    color: #000;
    font-size: 5.2rem;
    line-height: .8;
}
#single-template .header h2 div {
    line-height: 1.4;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 2px solid rgba(255,255,255,.5);
}
#single-template .header-tag {
    padding: 10px 30px 20px;
    margin-bottom: 70px;
    border-radius: 0 0 20px 20px;
    background: var(--box-back);
}
#single-template .header-tag div {
    width: 100%;
}
#single-template .header-tag ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--main);
}
#single-template .header-tag li:first-child {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    margin-right: 10px;
    background-color: var(--main);
}
#single-template .header-tag li:first-child:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    margin-top: -10px;
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--main);
}
#single-template .header-tag ul li {
    color: var(--main);
    font-size: 1.3rem;
    line-height: 35px;
    padding: 0 8px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    background: #fff;
}
#single-template .template-box .images img {
    height: auto;
    border: 1px solid #ddd;
}
#single-template .template-box .content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 8%;
    position: relative;
    width: 100%;
    font-size: 1.4rem;
    padding: 5%;
    margin-top: 50px;
    border-radius: 20px;
    background: var(--box-back);
}
#single-template .template-box .content i {
    position: relative;
    bottom: -3px;
    float: left;
    color: var(--main);
    font-size: 1.8rem;
    margin-right: 5px;
}
#single-template .template-box .content .box:first-child {
    width: 42%;
}
#single-template .template-box .content .box:nth-of-type(2) {
    width: 50%;
    padding-left: 6%;
    border-left: 3px solid var(--link);
}
#single-template .template-box .content ul.price-rist {
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
#single-template .price-rist li {
    display: flex;
    gap: 0 5px;
    font-size: 1.6rem;
    margin-top: 5px;
}
#single-template .price-rist li span {
    color: var(--main);
    font-size: 1.6rem;
}
#single-template .price-rist li .dotted {
    flex: 1 1 auto;
    margin-right: 10px;
    background-image: -webkit-radial-gradient(circle closest-side, rgba(0, 0, 0, .3) 99%, transparent 1%);
    background-image: radial-gradient(circle closest-side, rgba(0, 0, 0, .3) 99%, transparent 1%);
    background-position: center;
    background-size: 6px 2px;
    background-repeat: repeat-x;
}
#single-template .price-rist li .count {
    font-family: 'Jost', serif;
    color: #f00;
    font-size: 2.4rem;
    line-height: 1.1;
}
#single-template .template-box .content .title {
    color: #000;
    margin-bottom: 5px;
}
#single-template .template-box .content .price {
    font-family: 'Jost', serif;
    color: #f00;
    font-size: 4rem;
    line-height: 1;
}
#single-template .template-box .content .included {
    position: relative;
    font-size: 1.2rem;
    padding: 10px 15px;
    margin-top: 15px;
    border: 1px solid #ddd;
}
#single-template .template-box .content .included:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--main) transparent;
}
#single-template .template-box .content .included h4 {
    color: var(--main);
}
#single-template .template-box .content .included ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
}
#single-template .template-box .content .included li,
#single-template .template-box .content .included li i {
    font-size: 1.2rem;
    padding-top: 2px;
}
#single-template .template-box .content .btn-box {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
#single-template .template-box .content .btn1,
#single-template .template-box .content .btn,
#single-template .tab-detail .btn {
    width: 40%;
    font-size: 1.6rem;
    text-align: center;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 40px;
    background-color: var(--link);
}
#single-template .template-box .content .btn1 {
    background: #bbb;
}
#single-template .tab-detail .btn {
    margin: 30px auto 0;
}
#single-template .template-box .content .btn1 a,
#single-template .template-box .content .btn a,
#single-template .tab-detail .btn a {
    display: block;
    color: #fff;
    padding: 15px;
}
#single-template .template-box .content .btn1:hover,
#single-template .template-box .content .btn:hover,
#single-template .tab-detail .btn:hover {
    background: var(--link-h);
}
#single-template ul[class^="tab"] li {
    position: relative;
    bottom: 1px;
    font-size: 1.6rem;
    padding-top: 17px;
    padding-bottom: 17px;
    border-radius: 20px 20px 0 0;
    border-bottom: 2px solid var(--link);
}
#single-template ul[class^="tab"] li.active {
    border: 2px solid var(--link);
    border-bottom: none;
}
#single-template .tab-detail {
    position: relative;
    top: -1px;
    padding: 40px 5% 60px;
    border-top: 2px solid var(--link);
    border-radius: 20px;
    z-index: -1;
}
#single-template .tab-detail .tax {
    color: #f30;
    text-align: center;
    margin: -20px auto 30px;
}
#single-template .tab-detail h4 {
    color: var(--sub);
    font-size: 1.8rem;
    margin-bottom: 20px;
    clear: both;
}
#single-template .tab-detail h4:before {
    font-family: "icomoon";
    content: "\ea55";
    color: var(--sub);
    font-size: 1.7rem;
    margin-bottom: 20px;
}
#single-template .tab-detail h4 br {
    display: none;
}
#single-template .tab-detail .paper {
    color: #222;
    margin-bottom: 10px;
}
#single-template .tab-detail .paper span {
    color: var(--sub);
    padding: 3px 8px;
    margin-right: 5px;
    border: 1px solid var(--sub);
}
#single-template .tab-detail .price-rist li {
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin: 0 0 2px;
    background: #fff;
}
#single-template .tab-detail .price-rist .price {
    flex: 0 1 auto;
    margin: auto 0;
    font-family: 'Jost', serif;
    color: #555;
    font-size: 1.8rem;
    white-space: nowrap;
}
#single-template .tab-detail .price-rist .notes {
    display: block;
    width: 100%;
    color: #888;
    line-height: 1.3;
    margin-top: 5px;
}
#single-template .tab-detail .price-rist li {
    gap: 0 15px;
}
#single-template .basic-format.tpl .tab-detail {
    padding: 40px 8% 60px;
    border-right: 2px solid var(--link);
    border-left: 2px solid var(--link);
    border-bottom: 2px solid var(--link);
    background-color: #fff;
}
#single-template .basic-format.tpl ul[class^="tab"] li.active {
    background-color: #fff;
}
#single-template .basic-format.tpl .detail-title {
    color: var(--main);
    font-size: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
    text-align: center;
    margin-bottom: 15px;
}
.table-scroll .note {
    display: none;
}
#single-template table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}
#single-template table tr:first-child td {
    color: var(--main);
    padding: 10px 2px;
}
#single-template table tr td {
    width: 12.5%;
    font-size: 1.3rem;
    text-align: center;
    padding: 15px 2px;
    border: 1px solid #ddd;
    background: #fff;
}
#single-template table tr:nth-child(2) td,
#single-template table tr:nth-child(3) td,
#single-template table tr:nth-child(4) td {
    font-family: 'Jost', serif;
    font-size: clamp(1.6rem, 1.562rem + 0.19vw, 1.8rem);
}
#single-template table tr:nth-child(2) td:nth-child(1),
#single-template table tr:nth-child(3) td:nth-child(1) {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.3rem;
}
#single-template table span {
    color: #f30;
    font-size: 1.3rem;
    padding-left: 3px;
}
#single-template table tr:nth-child(4) {
    color: #f30;
    border-top: 2px solid var(--main);
}
#single-template .warning li {
    font-size: 1.4rem;
    line-height: 1.6;
    padding-left: 2.8em;
    text-indent: -2.8em;
    margin-bottom: 10px;
}
#single-template .warning li span {
    color: #f30;
}
#single-template .tab .step {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 0;
}
#single-template .tab .step p {
    position: relative;
    writing-mode: vertical-lr;
    letter-spacing: .1em;
    padding: 15px 20px 40px 20px;
    margin-bottom: 0;
    background: #fff;
}
#single-template .tab .step p span {
    writing-mode: initial;
    font-family: 'Jost', serif;
    color: #f00;
    font-size: 2rem;
    margin-bottom: 13px;
}
#single-template .tab .step .fachevron-right {
    color: var(--link);
    margin: auto;
}
#single-template .tab .step a:before {
    content: "\ea43";
    font-family: "icomoon";
    font-style:normal;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
#single-template .tab .step .comment {
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    display: none;
    width: 250px;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0;
    padding: 10px;
    border: 1px solid var(--link);
    border-radius: 5px;
    background: #fff;
    transition: all .5s;
    z-index: 1;
}
#single-template .tab .step .comment:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--link) transparent;
}
#single-template .tab .step a:hover .comment {
    display: block;
}
#single-template .table1 tr th {
    width: 35%;
    padding: 5px 5px 5px 30px;
}
#single-template .table1 tr td {
    width: 15%;
    padding: 5px 30px 5px 5px !important;
    border: none;
    background: none;
}

/*-------- スライダー --------*/
.swiper-main2 .swiper-wrapper,
.swiper-main3 .swiper-wrapper,
.swiper-main4 .swiper-wrapper,
.swiper-main5 .swiper-wrapper,
.swiper-main6 .swiper-wrapper {
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--box-back);
}
#single-template .swiper {
    padding: 1px;
    margin: auto;
}
#single-template .swiper-main,
#single-template .swiper-main2,
#single-template .swiper-main3,
#single-template .swiper-main4,
#single-template .swiper-main5,
#single-template .swiper-main6 {
    overflow: visible;
}
#single-template .swiper-fade .swiper-slide {
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    -webkit-transition-property: opacity, -webkit-transform !important;
    pointer-events: none;
    position: relative;
}
#single-template .swiper-fade .swiper-slide figure {
    margin: 0;
}
#single-template .swiper-fade .swiper-slide .btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    padding: 3%;
    border-radius: 0;
    background-image: linear-gradient(-45deg, rgba(255,0,0,.7) 50px, transparent 10px);
    background-color: transparent;
}
#single-template .swiper-fade .swiper-slide .btn:hover {
    background-image: linear-gradient(-45deg, rgba(255,0,0,1) 50px, transparent 10px);
}
#single-template .swiper-fade .swiper-slide .btn:before {
    font-family: "icomoon";
    content: "\e989";
    position: absolute;
    right: 10px;
    top: 23px;
    color: #fff;
    font-size: 14px;
    transition: .3s;
}
#single-template .swiper-fade .swiper-slide .btn:after {
    content: "拡大";
    position: absolute;
    right: 10px;
    bottom: 1px;
    color: #fff;
    font-size: 16px;
    transition: .3s;
}
#single-template .swiper-fade .swiper-slide .btn:hover:before {
    right: 8px;
    bottom: 1px;
    font-size: 18px;
}
#single-template .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}
.gallery-box .swiper-slide figure {
    margin: 0;
}
#single-template .swiper-slide figure img {
    object-fit: cover;
    width: 100%;
}
#single-template .cat-16 {
    margin-bottom: 20px;
}
#single-template .cat-16 .swiper-slide:nth-child(2) figure img,
#single-template .cat-16 .swiper-slide:nth-child(3) figure img {
    width: 64%;
    aspect-ratio: initial !important;
    float: right;
}
#single-template figcaption {
    width: 100%;
    height: 35px;
    color: var(--main);
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 3px;
    padding: 5px;
}
/* サムネイル */
#single-template div[class^="swiper-thumb"] .swiper-slide {
    position: relative;
    padding: 6px 10px 10px;
    background: var(--box-back);
    box-shadow: 0 0 0 1px #ddd;
    transition: .8s;
}
#single-template div[class^="swiper-thumb"] .swiper-slide img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 6/4;
    transition: .8s;
}
#single-template div[class^="swiper-thumb"] .swiper-slide:before {
    content: "";
    position: absolute;
    top: -7px;
}
#single-template div[class^="swiper-thumb"] .swiper-slide:hover {
    opacity: .6;
}
#single-template div[class^="swiper-thumb"] .swiper-slide:hover:before,
#single-template .swiper-slide-thumb-active:before {
    content: "";
    position: absolute;
    top: 0 !important;
    left: 0;
    display: block;
    width: 100%;
    height: 7px;
    background: var(--link);
    transition: .8s;
}
#single-template .swiper-slide-thumb-active figcaption {
    border: 2px solid #db8413 !important;
    background-color: #db8413;
}
#single-template .template-box .swiper-slide-thumb-active img {
    height: auto;
    padding: 1px;
    border: 2px solid #db8413;
}
#single-template .swiper-slide-thumb-active.swiper-slide figcaption {
    color: #fff;
}
/* ナビボタン */
#single-template .controller {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 73%;
}
#single-template .swiper-button-prev {
    left: -30px;
}
#single-template .swiper-button-next {
    right: -30px;
}
#single-template .swiper-button-prev svg,
#single-template .swiper-button-next svg {
    color: var(--sub);
    font-size: 4rem;
}




/*-------------------------------------------------------------------------------------------*/
/* 　事例詳細
/*-------------------------------------------------------------------------------------------*/
.single-case {
    padding: 80px;
    background: var(--box-back);
}
.work .header-tag {
    display: flex;
    gap: 4%;
}
.single-case .image-orver img,
.case-list .image-orver img {
    object-fit: cover;
    aspect-ratio: 6/3;
}
.single-case .case-info,
.case-list .case-info {
    position: relative;
    padding-top: 70px;
}
.single-case .case-info {
    padding-top: 100px;
}
.case-list h3 {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    color: var(--main);
    font-size: clamp(2rem, 1.862rem + 0.74vw, 2.6rem);
    line-height: 1.6;
    text-align: center;
    background: var(--box-back);
}
.single-case h2 {
    width: 80%;
    color: var(--main);
    font-size: clamp(2rem, 1.862rem + 0.74vw, 2.6rem);
    line-height: 1.6;
    text-align: center;
    margin: -50px auto 60px;
    background: var(--box-back);
}
.single-case h3,
.case-list h4 {
    color: var(--main);
    font-size: 1.8rem;
    line-height: 1.6;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px dotted #ccc;
}
.single-case .day,
.case-list .day {
    line-height: 30px;
    margin-bottom: 20px;
}
.single-case .day span,
.case-list .day span {
    position: relative;
    display: inline-block;
    width: 80px;
    color: #fff;
    font-size: 1.4rem;
    line-height: 30px;
    text-align: center;
    padding: 0 15px;
    margin-right: 20px;
    background: var(--main);
    z-index: 0;
}
.single-case .day span:after,
.case-list .day span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    display: block;
    width: 0;
    height: 0;
    margin-top: -10px;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--main);
}
.single-case .comment {
    margin-bottom: 100px;
}
.single-case .free {
    margin-bottom: 50px;
    overflow: auto;
}
.single-case .free:last-child {
    margin-bottom: 0;
}
.single-case .gallery-box img {
    margin-bottom: 10px;
}
.single-case .gallery-box div h5 {
    display: block;
    width: 100%;
    color: var(--main);
    font-size: 1.8rem;
    text-align: center;
    padding: 5px;
}
#content .single-case .gallery-box {
    gap: 30px 4%;
}
#content .single-case .gallery-box div {
    width: 22%;
}
.work-box .images img {
    border-radius: 20px;
}
.work-box .content h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    padding: 10px;
    border-radius: 10px;
    background: var(--main);
}
.work-box .content h4:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    margin-top: -20px;
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent var(--main);
}
.work-box .content ul {
    width: calc(100% - 240px);
}
.work-box .content li {
    display: block;
    padding-top: 8px;
    margin-bottom: 8px;
}
.work-box .content li + li {
    border-top: 1px dotted #CCC;
}
.work-box .btn-box {
    display: flex;
    justify-content: center;
    column-gap: 6%;
}





/*-------------------------------------------------------------------------------------------*/
/* 　投稿一覧
/*-------------------------------------------------------------------------------------------*/

/*-------- 投稿一覧リスト --------*/
.post-archive .post-list {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--box-back);
}
.post-archive section:last-child {
    margin-bottom: 150px;
}

/*-------- アイキャッチ --------*/
.post-archive .image-orver {
    width: 300px;
}
.post-archive .image-orver img {
    transition: .8s;
}
.post-archive .image-orver img:hover {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}

/*-------- 投稿情報 --------*/
.post-archive .blog-info {
    flex-basis: 100%;
    flex-shrink: 20;
    position: relative;
    padding-bottom: 40px;
}
.post-archive .blog-info ul {
    display: flex;
    flex-wrap: wrap;
    min-height: 35px;
    color: #666;
    padding: 8px 0 4px;
    margin: 10px 0;
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
}
.post-archive .blog-info li,
.post-archive .blog-info li a {
    font-size: 1.2rem;
}
.blog-comment {
    display: block;
    font-size: 1.4rem;
    overflow: hidden;
}
.blog-button {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    font-size: 1.2rem;
    padding: 5px 20px 3px;
    margin-top: 16px;
    border: 1px solid var(--link);
}
.blog-button:before {
    content: "\f054";
    font-family: "icomoon";
    color: var(--sub);
    font-size: 1rem;
    margin-right: 7px;
}
.blog-button:hover {
    color: #FFF;
    border: 1px solid var(--link-h);
    background: var(--link-h);
}
.blog-info li {
    margin: 0 15px 0 5px;
    justify-content: center;
}
.blog-info li {
    font-size: 1.2rem;
}
.blog-info li a {
    color: #666;
}
.blog-info li a:hover,
.blog-info-single li a:hover {
    color: var(--link-h);
}
.blog-info li:before {
    font-family: "icomoon";
    color: var(--sub);
    margin-right: 7px;
}
.blog-info li.cat:before {
    content: "\e930";
}
.blog-info li.tag:before {
    content: "\e935";
}

/*-------- ページナビゲーション --------*/
.pagination {
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: center;
    margin: 20px 0 150px;
    border-radius: 25px;
}
.pagination .current {
    margin: 0 2px;
    width: 30px;
    height: 30px;
    color: #fff;
    padding-top: 3px;
    padding-bottom: 5px;
    border-radius: 15px;
    background: var(--link);
}
.pagination a {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    padding-top: 3px;
    padding-bottom: 5px;
    border-radius: 25px;
}
.pagination a:hover {
    color: #fff;
    border-radius: 15px;
    background: var(--link-h);
}
.pagination a:before {
    display: inline-block;
    color: var(--link);
    font-size: 2rem;
    margin-top: -5px;
}
.pagination a:hover:before {
    color: #fff;
}
.previous-button a:before {
    font-family: "icomoon";
    content: "\e946";
}
.first-button a:before {
    font-family: "icomoon";
    content: "\e94e";
}
.next-button a:before {
    font-family: "icomoon";
    content: "\e940";
}
.last-button a:before {
    font-family: "icomoon";
    content: "\e94d";
}


/*-------------------------------------------------------------------------------------------*/
/* 　テンプレート一覧
/*-------------------------------------------------------------------------------------------*/
h2.choice-title {
    display: inline-block;
    width: 100%;
    color: #333;
    font-size: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 10px; 
}
.tpl-point {
    position: relative;
    width: 900px;
    color: #000;
    font-size: 1.8rem;
    text-align: center;
    padding: 10px 20px 10px 110px;
    margin: 20px auto;
    border-radius: 30px;
    background-color: #fc0;
}
#single-template .tpl-point {
    width: 700px;
}
.tpl-point:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 20px;
    width: 80px;
    height: 94px;
    background: url(images/icon03.png) no-repeat;
    background-size: contain;
}
.choice-title-img {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 30px; 
}
.type-box {
    display: flex;
    align-items: center;
    width: 300px;
    height: 300px;
    padding: 5px;
    margin: 0 auto 80px;
    border-radius: 20px;
    border: 1px solid var(--main);
}
.size-box,
.size-box2 {
    position: relative;
    padding: 58px 5% 40px;
    border-radius: 20px;
    border: 1px solid var(--main);
}
.size-box h2,
.size-box2 h2 {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: clamp(1.8rem, 1.704rem + 0.48vw, 2.6rem);
    text-align: center;
    white-space: nowrap;
    padding: 5px 25px;
    margin-bottom: 50px;
    border-radius: 30px;
    background-color: var(--main);
}
.size-box2 .included {
    display: flex;
    flex-wrap: wrap;
    gap: 0 6%;
}
.size-box2 .included div {
    width: 47%;
}
.size-box2 .included li {
    padding-top: 10px;
    margin-top: 10px;
}
.size-box2 .included li + li {
    border-top: 1px dotted #CCC;
}
.size-box2 .included p {
    font-size: 1.4rem;
    margin-left: 40px;
}
.line-list01 .number {
    display: inline-block;
    width: 30px;
    height: 30px;
    font-family: 'Jost', serif;
    color: #fff;
    font-size: 2rem;
    line-height: 30px;
    text-align: center;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--sub);
}
.line-list01 .text {
    color: var(--main);
    font-size: 2rem;
    line-height: 1.4;
}
.inner-tpl {
    width: 90%;
    margin: 0 auto;
}
.tpl-list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px 3%;
}
.tpl-list .ranking {
    position: absolute;
    top: -30px;
    right: 10px;
    z-index: 1;
}
.tpl-list .image,
.tpl-list .image2 {
    position: relative;
    width: 100%;
    height: 50%;
    border-radius: 20px !important;
    object-fit: cover;
    aspect-ratio: 6 / 4.23;
    opacity: 1;
}
.tpl-list a:hover .image,
.tpl-list a:hover .image2 {
    top: 0;
    transition: all 1s;
    filter: brightness(30%);
    opacity: 1;
}
.tpl-list.web {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 3%;
}
.tpl-list .tpl {
    position: relative;
}
.tpl-list .tpl .priceA {
    position: absolute;
    left: 20px;
    bottom: 5px;
    color: #fff;
    font-family: 'Jost', serif;
    font-size: 2rem;
    z-index: 10;
}
.tpl-list .tpl:hover .priceA {
    opacity: 0;
}
.tpl-list a .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 15px 30px;
    opacity: 0;
    z-index: 10;
    transition: 1s;
}
.tpl-list a:hover .info {
    opacity: 1;
}
.tpl-list a .info h3 {
    font-family: 'Jost', serif;
    font-size: 4rem;
    margin-bottom: 15px;
}
.tpl-list a .info h3 span {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    display: block;
    font-size: 1.2rem;
    margin: 15px 0 5px;
}
.tpl-list a .info .price {
    font-family: 'Jost', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.tpl-list a .info ul li {
    display: flex;
    margin-top: 5px;
}
.tpl-list a .info ul li .dotted {
    flex: 1 1 auto;
    margin-right: 10px;
    background-image: -webkit-radial-gradient(circle closest-side, rgba(255, 255, 255, .5) 99%, transparent 1%);
    background-image: radial-gradient(circle closest-side, rgba(255, 255, 255, .5) 99%, transparent 1%);
    background-position: center;
    background-size: 6px 2px;
    background-repeat: repeat-x;
}
.tpl-list a .info:before {
    content: "詳細";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    text-align: right;
    line-height: 110px;
    padding: 7px;
    border-radius: 20px;
    background-image: linear-gradient(-45deg, rgba(255, 60, 0, 1) 50px, transparent 10px);
}




.tpl-work-slider .slide-media {
    position: relative;
    overflow: hidden;
}
.tpl-work-slider .slide-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.tpl-work-slider .swiper-area {
    position: relative;
}
.tpl-work-slider .swiper-pagination {
    margin-top: 30px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: initial !important;
}
.tpl-work-slider .swiper-pagination-bullet {
    width: 1.6rem;
    height: 3px;
    vertical-align: top;
    border-radius: 0;
    background-color: #f30;
    cursor: pointer;
    transition: .3s;
}
.tpl-work-slider .swiper-pagination-bullet-active {
    width: 4rem;
    background-color: #f90;
}
.tpl-work-slider .swiper-button-prev,
.tpl-work-slider .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    font-size: 3rem;
    margin: auto;
}
.tpl-work-slider .swiper-button-prev {
    right: calc(100% + 2.4rem);
    left: initial;
}
.tpl-work-slider .swiper-button-next {
    left: calc(100% + 2.4rem);
}
.tpl-work-slider .slide-media {
    padding-top: 62.5%;
    border-radius: 4px;
}
.tpl-work-slider .swiper {
    max-width: 100% !important;
}
.tpl-work-slider .swiper-button-prev,
.tpl-work-slider .swiper-button-next {
    top: 0 !important;
}
.tpl-work-slider .swiper-button-next {
    left: auto;
}
.tpl-work-slider .button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--link);
    z-index: 10;
    opacity: 0;
}
.tpl-work-slider .slide-media:hover .button {
    opacity: 1;
}
.tpl-work-slider .slide-media {
    border-radius: 20px 20px 0 0;
}
.tpl-work-slider .work-title {
    color: #333;
    font-size: 1.4rem;
    padding: 7px 10px;
    background: #f8f8f8;
    border-radius: 0 0 20px 20px;
}
#single-template.work .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1050px;
    margin: auto;
}
#single-template.work .header-tag {
    max-width: 1050px;
    margin: 0 auto 40px;
}
#single-template.work .work-box {
    max-width: 1050px;
    margin: 0 auto 100px;
}
#single-template.work .header h2 span {
    font-family: 'Jost', serif;
    color: #000;
    font-size: clamp(2rem, 1.924rem + 0.38vw, 2.4rem);
    line-height: .8;
}
#single-template.work .tpl-btn {
    display: block;
    width: 300px;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    padding: 30px 10px;
    margin: 50px auto 0;
    border-radius: 50px;
    background: var(--link);
}
#single-template.work .tpl-btn span {
    font-family: 'Jost', serif;
    font-size: 2rem;
}
#single-template.work .tpl-btn:hover {
    background: var(--link-h);
}
#single-template.work .swiper img {
    border: 1px solid #ddd;
}



/*-------------------------------------------------------------------------------------------*/
/* 　事例一覧
/*-------------------------------------------------------------------------------------------*/
.case-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 4%;
    overflow: hidden;
}
.case-list .case {
    position: relative;
    width: 48%;
    min-width: 48%;
    padding: 30px;
    background: var(--box-back);
}
.case-list .case img {
    aspect-ratio: 6/4;
}
.case-list .case h3 {
    top: -35px;
    font-size: 1.8rem;
    padding: 25px 5% 5px;
}
.case-list .case h4 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}
.case-list .day {
    margin-bottom: 15px;
}
.case-list .comment {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: -25px;
}
.case-list .comment.detail {
    margin-top: 0;
    margin-bottom: 25px;
}
.case-list a {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 100px;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    background: var(--link);
}
.case-list a:hover {
    background: var(--link-h);
}
.case-list a:hover i {
    margin-left: 10px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　サイドバー
/*-------------------------------------------------------------------------------------------*/
.post-archive #content .flex,
.single-content #content .flex {
    display: flex;
    justify-content: space-between;
}
.post-archive #content .flex .content,
.single-content #content .flex .content {
    width: 100%;
}
.post-archive #content .flex .content.sidebar,
.single-content #content .flex .content.sidebar {
    width: calc(100% - 320px);
}

/*-------- ブロック --------*/
#sidebar .widget {
    font-size: 1.4rem;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--box-back);
}

/*-------- タイトル --------*/
#sidebar .widget h3 {
    color: var(--main);
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-bottom: 3px solid var(--main);
}

/*-------- 最近の投稿 --------*/
.new-postA .post,
.new-postB .post {
    position: relative;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    transition: .3s;
}
.new-postA a .post .img {
    width: 100%;
    background: var(--main);
    overflow: hidden;
}
.new-postA a .post img {
    transition: .8s;
}
.new-postA a:hover .post img {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}
.new-postA a:last-child .post,
.new-postB a:last-child .post {
    margin-bottom: 0;
}
.new-postA h4,
.new-postB h4 {
    color: var(--main);
    line-height: 1.4;
    margin-top: 8px;
}
.new-postA .date,
.new-postB .date {
    font-size: 1.2rem;
}
.new-postA .date:before {
    content: "\e94b";
    font-family: "icomoon";
    color: #999;
    font-size: 1.2rem;
    margin-right: 7px;
}
.new-postA img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 6/4;
}
.new-postA .cal {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 3px 5px 5px;
    margin: 0;
}
.new-postA .cal p:nth-child(1),
.new-postB .cal p:nth-child(1) {
    font-size: 1.1rem;
    line-height: 1.5;
}
.new-postA .cal p:nth-child(2),
.new-postB .cal p:nth-child(2) {
    line-height: 1;
}
.new-postA .cal p:nth-child(3),
.new-postB .cal p:nth-child(3) {
    font-size: 1.1rem;
    line-height: 1.2;
}
.new-postB .post {
    display: flex;
    align-items: center;
    column-gap: 7px;
    border: none;
    border-bottom: 1px solid #eee;
}
.new-postB .cal {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 3px 5px 5px;
    margin: 0;
}
.new-postA h4,
.new-postB h4 {
    margin-top: 0;
}

/*-------- カテゴリー --------*/
.widget_categories li a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}
.widget_categories li a:before {
    content: "\e930";
    font-family: "icomoon";
    color: var(--sub);
    margin-right: 10px;
}

/*-------- アーカイブ --------*/
label.screen-reader-text {
    display: none;
}
.widget_archive select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin: 0;
    padding: 11px 15px 11px 35px;
    line-height: 1.5;
    background-color: var(--box-back);
    background-image: -webkit-linear-gradient(top, #f8f8f8 0%, #dfe0d9 100%);
    background-image: linear-gradient(top, #f8f8f8 0%, #dfe0d9 100%);
    border: 1px solid #c0c0c0;
}
.widget_archive:after {
    content: "\e945";
    font-family: "icomoon";
    position: absolute;
    color: var(--sub);
    font-size: 1.4rem;
    padding-left: 5px;
    margin-top: -32px;
    margin-left: 10px;
    z-index: 2;
}

/*-------- タグ --------*/
.tag-box .ac-header {
    font-size: 1.4rem;
    padding: 10px 40px 10px 20px;
    border: 1px dotted #ccc;
}
.tag-box .ac-header:before {
    font-size: 1.4rem;
}
.tag-box .ac-header:after,
.tag-box .ac-inner:after {
    display: none;
}
.tag-box .ac-inner {
    padding: 10px;
    border: 1px dotted #ccc;
    border-top: none;
}
.tagcloud {
    display: flex;
    flex-wrap: wrap;
}
.widget_tag_cloud a {
    color: #fff;
    font-size: 1.2rem !important;
    text-align: center;
    line-height: 1.2;
    padding: 4px 10px;
    margin: 5px 3px 0 0;
    border-radius: 3px;
    background: var(--link);
    transition: 0.5s;
}
.widget_tag_cloud a:hover {
    color: #fff;
    background: var(--link-h);
}

/*-------- カレンダー --------*/
#wp-calendar {
    width: 100%;
    font-size: 1.2rem;
    border: none
}
#wp-calendar caption {
    color: var(--main);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
#wp-calendar thead {
    font-size: 1.2rem;
}
#wp-calendar thead th {
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 26px;
    text-align: center;
    padding: 0;
    border: 1px solid #f8f8f8;
    background: var(--main);
}
#wp-calendar tfoot,
#wp-calendar tfoot td {
    background: none;
    border: none;
    font-size: 1.2rem;
    text-align: left;
    padding: 0;
}
#wp-calendar tfoot tr {
    border: none;
}
#wp-calendar td:first-child {
    font-weight: normal;
}
#wp-calendar tbody td {
    color: #555;
    font-size: 1.2rem;
    text-align: center;
    padding: 3px 0 2px;
    border: 1px solid #f8f8f8;
    background: #eee;
}
#wp-calendar tbody td a {
    font-size: 1.2rem;
}
#wp-calendar tbody .pad {
    background: none;
}
#wp-calendar tfoot #next {
    text-align: right;
}



/*-------------------------------------------------------------------------------------------*/
/* 　フッダ
/*-------------------------------------------------------------------------------------------*/
/*-------- フッダコンテンツ --------*/
#footer li.name {
    color: var(--main);
    font-size: 1.8rem;
}
#footer li.tel {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Jost', serif;
    color: var(--link);
    font-size: clamp(2rem, 1.418rem + 2.91vw, 3.6rem);
}
#footer li.tel img {
    height: 35px;
}
#footer li.mail a {
    color: #fff;
    font-size: 2rem;
    padding: 10px 40px;
    border-radius: 3px;
    background: var(--link);
}
#footer li.mail a:hover {
    background: var(--link-h);
}
#footer .footer-content {
    display: flex;
    justify-content: center;
    gap: 30px 6%;
    margin-top: 40px;
}
#footer .footer-content div {
    width: 100%;
}
#footer h3 {
    color: var(--main);
    font-size: 1.8rem;
    padding-bottom: 5px;
}
#footer a {
    color: #666;
}
#footer a:hover {
    color: var(--link-h);
}
.footer-logo {
    width: 250px;
    margin-bottom: 10px;
}
.footer-logo-text {
    color: var(--main);
}
.under-btn {
    display: none;
}
.footer-under {
    text-align: center;
    padding: 20px 10px;
    background: var(--main);
}
.copyright {
    font-size: 1.2rem;
    color: #FFF;
    margin-top: -5px;
}
#footer ul.sns {
    justify-content: center;
    padding-top: 30px;
    margin-top: 50px;
}
#footer-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 4%;
    overflow: hidden;
}
#footer-btn a {
    width: 22%;
}

/*-------- ページスクロール --------*/
#page-scroll {
    position: fixed;
    right: 20px;
    bottom: 31px;
    text-align: center;
    z-index: 100;
}
#page-scroll .fa-angle-up {
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: var(--sub);
    transition: all 0.3s;
}
#page-scroll .fa-angle-up:hover {
    border-radius: 5px;
    background: var(--sub);
}
#chatplusview.closed #outline #eye_catcher img {
    width: 150px;
}



/*-------------------------------------------------------------------------------------------*/
/* 　フォーム
/*-------------------------------------------------------------------------------------------*/
div.wpcf7 {
    margin: 0;
    padding: 0;
}
form.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wpcf7 span.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-not-valid {
    background: #fef0f0;
}
.wpcf7 .wpcf7-response-output {
    margin: 25px auto 0 !important;
    padding: 12px 20px !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid #f33 !important;
    border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
    width: 100%;
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
    margin-bottom: 20px;
}
.wpcf7 .wpcf7-mail-sent-ok {
    width: 100%;
    color: #3A87AD;
    background-color: #D9EDF7;
    border: 1px solid #BCE8F1;
    margin-bottom: 20px;
}
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=tel],
.wpcf7 select {
    width: 100%;
    height: 40px;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 10px;
    margin-top: 5px;
    nowhitespace: afterproperty;
    -webkit-appearance: none;
    border: solid 1px #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
textarea {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 10px;
    margin-top: 5px;
    nowhitespace: afterproperty;
    -webkit-appearance: none;
    border: solid 1px #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}
form.wpcf7-form input[type=text]:focus,
form.wpcf7-form input[type=password]:focus,
form.wpcf7-form input[type=email]:focus,
form.wpcf7-form input[type=url]:focus,
form.wpcf7-form input[type=tel]:focus,
form.wpcf7-form textarea:focus {
    box-shadow: 0 0 8px rgba(116, 115, 6, 0.28);
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=tel]:focus,
textarea:focus,
input[type=reset]:hover {
    border-color: var(--link);
}
.wpcf7 form {
    display: flex;
    column-gap: 5%;
}
.wpcf7 p {
    color: var(--sub);
    margin-bottom: 20px;
}
.wpcf7 label {
    color: #555;
}
.wpcf7 .dual {
    width: 47.5%;
}
.wpcf7 .full {
    width: 100%;
}
.wpcf7 .approval {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    margin-top: 15px;
}
.wpcf7 .approval .wpcf7-form-control-wrap {
    display: block;
    width: 255px;
    font-size: 1.8rem;
    text-align: center;
    padding: 20px 10px;
    border: none;
    border-radius: 3px;
    background: var(--link);
    transition: 0.5s;
}
.wpcf7 .approval .wpcf7-form-control-wrap label {
    color: #fff !important;
}
.wpcf7 .approval input[type="checkbox" i] {
    width: 25px;
    height: 25px;
    vertical-align: top;
}
input[type=submit] {
    display: block;
    width: 33%;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.5rem;
    padding: 10px 10px;
    border: none;
    border-radius: 3px;
    background: var(--link);
    transition: 0.5s;
    -webkit-appearance: none;
}
#page-contact input[type=submit] {
    margin: initial;
}
input[type=submit]:hover {
    color: #fff;
    background: var(--link-h);
}
.wpcf7-spinner {
    margin: 0 !important;
}
.wpcf7 .approval .wpcf7-list-item {
    margin: 0;
}
.wpcf7-spinner {
    position: absolute !important;
    bottom: -40px;
    display: block !important;
}
.wpcf7 .star:before {
    content: "必須";
    color: #fff;
    font-size: 1.1rem;
    padding: 3px 5px;
    margin-left: 5px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 3px;
    background: #f33;
}
.wpcf7 .full.list .wpcf7-list-item {
    color: #555;
    margin-top: 5px;
}

/*-------- reCAPTCHA --------*/
.grecaptcha-badge {
    visibility: hidden;
}
.recaptcha_policy {
    width: 100%;
    color: #444 !important;
    font-size: 11px !important;
    text-align: center;
    padding: 0;
    margin: 0;
}
.recaptcha_policy a {
    color: #111 !important;
    font-size: 11px !important;
}




/*-------------------------------------------------------------------------------------------*/
/* 　スライダー
/*-------------------------------------------------------------------------------------------*/
/*-------- トップヘッダー --------*/
#header-top-img .slider-fadeIn .swiper-pagination {
    bottom: 50px !important;
}
#header-top-img .swiper-slide .slide-media img {
    transform: scale(1);
}
#header-top-img .swiper-slide[class*="-active"] .slide-media img {
    animation: mv01-fadeIn 6s;
}
@keyframes mv01-fadeIn {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



/*-------------------------------------------------------------------------------------------*/
/* 　検索
/*-------------------------------------------------------------------------------------------*/
#search-wrap #searchform {
    position: relative;
    width: 100%;
    display: flex;
    height: 46px;
}
#search-wrap #s {
    width: calc(100% - 120px);
    height: 46px;
    font-size: 1.4rem;
    padding: 0 8px;
    margin-top: 0;
    border: none;
    background: #fff;
    z-index: 10;
    outline: 0;
}
#search-wrap #searchsubmit {
    position: absolute;
    right: 0;
    height: 46px;
    padding: 0 30px;
    border-radius: 5px;
    background: var(--link);
    z-index: 90;
}
#search-wrap #searchsubmit:hover {
    background: var(--link-h);
}
#search-wrap {
    opacity: 0;
}
#search-wrap.panelactive {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    z-index: 30;
    transition: all 0.6s;
    opacity: 1;
}
#search-wrap #search {
    display: none;
}
#search-wrap.panelactive #search {
    display: block;
    width: 50%;
}
.open-btn {
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 1.8rem;
    line-height: 35px;
    text-align: center;
    margin-left: 3px;
    border-radius: 50%;
    background: var(--link);
    cursor: pointer;
    z-index: 31;
}
.open-btn:hover {
    background: var(--link-h);
}
.close-btn {
    display: none;
}
#search-wrap.panelactive .close-btn {
    position: relative;
    top: -50px;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 2rem;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--link);
    cursor: pointer;
    z-index: 2;
}
.close-btn:hover {
    background: var(--link-h);
    animation: spin 3s linear infinite;
    animation-iteration-count: 1;
}





/*-------------------------------------------------------------------------------------------*/
/* 　コンテンツフェードイン
/*-------------------------------------------------------------------------------------------*/
.fadein,
.fadein [class^="column-box"] .box,
.fadein .gallery-box div,
.faq-box .accordion,
.page-gallery .box,
.download.fadein div a,
#footer-btn a,
#service .box img,
#service .box div,
.step-box .detail,
.case-list .case,
.page-staff-big .box,
.page-staff-small .box,
.history .block .content,
.tab [class^="tab"],
.tab .tab-detail {
    opacity: 0;
    transition-duration: .8s;
    transition-property: opacity, transform;
}
.fadein-up {
    transform: translate(0, 200px);
}
.fadein-down {
    transform: translate(0, -200px);
}
.fadein-left {
    transform: translate(-200px, 0);
}
.fadein-right {
    transform: translate(200px, 0);
}
/*-------- カラム --------*/
.fadein [class^="column-box"] .box {
    transform: translate(0, 500px);
}
.fadein [class^="column-box"] .box:first-child {
    transform: translate(-500px, 0);
}
.fadein [class^="column-box"] .box:last-child {
    transform: translate(500px, 0);
}
/*-------- 画像ギャラリー --------*/
.fadein .gallery-box div {
    transform: translate(0, 500px);
}
.fadein .gallery-box div:nth-child(1),
.fadein .gallery-box div:nth-child(5),
.fadein .gallery-box div:nth-child(9) {
    transform: translate(-500px, 0);
}
.fadein .gallery-box div:nth-child(4n) {
    transform: translate(500px, 0);
}
/*-------- Q&A --------*/
.faq-box .accordion:nth-child(odd) {
    transform: translate(-500px, 0);
}
.faq-box .accordion:nth-child(even) {
    transform: translate(500px, 0);
    transition-delay: .6s;
}
/*-------- ギャラリーページ --------*/
.page-gallery .box:nth-child(odd) {
    transform: translate(-500px, 0);
}
.page-gallery .box:nth-child(even) {
    transform: translate(500px, 0);
    transition-delay: .6s;
}
/*-------- ダウンロード --------*/
.download a:nth-child(odd) {
    transform: translate(-500px, 0);
}
.download a:nth-child(even) {
    transform: translate(500px, 0);
    transition-delay: .6s;
}
/*-------- ステップ --------*/
.step-box .detail {
    transform: translate(0, 200px);
}
/*-------- 事例 --------*/
.case-list .case:nth-child(odd) {
    transform: translate(-500px, 0);
}
.case-list .case:nth-child(even) {
    transform: translate(500px, 0);
}
/*-------- スタッフ --------*/
.page-staff-big .box,
.page-staff-small .box {
    transform: translate(0, 200px);
}
/*-------- ヒストリー --------*/
.history .block:nth-child(odd) .content {
    transform: translate(-200px, 0);
}
.history .block:nth-child(even) .content {
    transform: translate(200px, 0);
}
/*-------- タブ --------*/
.tab [class^="tab"] {
    transform: translate(0, -200px);
}
.tab .tab-detail {
    transform: translate(0, 200px);
}
/*-------- フッダーボタン --------*/
#footer-btn a {
    transform: translate(0, 200px);
}
#footer-btn a:first-child {
    transform: translate(-200px, 0);
}
#footer-btn a:last-child {
    transform: translate(200px, 0);
}
/*-------- サービス --------*/
#service .box:nth-child(odd) img {
    transform: translate(-500px, 0);
}
#service .box:nth-child(even) img {
    transform: translate(500px, 0);
}
#service .box:nth-child(odd) div {
    transform: translate(500px, 0);
}
#service .box:nth-child(even) div {
    transform: translate(-500px, 0);
}

.scroll-in,
.fadein.scroll-in [class^="column-box"] .box,
.fadein.scroll-in .gallery-box div,
.faq-box.scroll-in .accordion,
.page-gallery.scroll-in .box,
.download.fadein.scroll-in div a,
#footer-btn.scroll-in a,
#service .box.scroll-in img,
#service .box.scroll-in div,
.step-box .detail.scroll-in,
.case-list .case.scroll-in,
.page-staff-big .box.scroll-in,
.page-staff-small .box.scroll-in,
.history  .block.scroll-in .content,
.tab.scroll-in [class^="tab"],
.tab.scroll-in .tab-detail {
    opacity: 1;
    transform: translate(0, 0);
}



/*-------------------------------------------------------------------------------------------*/
/* 　サイドコンテンツ
/*-------------------------------------------------------------------------------------------*/
#sidenbtn-box {
    position: fixed;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    z-index: 9999;
}
[id^="side-content"] {
    position: fixed;
    top: 0;
    right: -120%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 100vh;
    color: #fff;
    padding: 5%;
    background: var(--main);
    z-index: 999;
    transition: all 0.6s;
}
#side-contentA {
    text-align: center;
}
[id^="side-content"] div {
    width: 100%;
}
[id^="side-content"] h3 {
    font-family: 'Jost', serif;
    font-size: clamp(3rem, 2.636rem + 1.82vw, 4rem);
}
[id^="side-content"] li a {
    display: block;
    color: #fff;
    padding: 3px 5px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,.5);
}
[id^="side-content"] li a:hover {
    color: var(--main);
    background: rgba(255,255,255,.7);
}
[id^="side-content"].panelactive {
    right: 0;
}
/*高さ超えた場合縦スクロール*/
[id^="side-content"].panelactive #side-contentA-list,
[id^="side-content"].panelactive #side-contentB-list {
    right: 0;
    width: 450px;
    height: 100vh;
    padding: 70px;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
[class^="sidenbtn"] {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 210px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    line-height: 50px;
    margin: 5px 0;
    background: var(--sub);
    writing-mode: vertical-lr;
    transition: .3s;
}
[class^="sidenbtn"]:hover {
    background: #264b98;
}
[class^="sidenbtn"]:hover span {
    opacity: 1;
}
[class^="sidenbtn"]:hover.active span {
    opacity: 0;
}
[class^="sidenbtn"]:before {
    font-family: "icomoon";
    content: "\f009";
    margin-bottom: 5px;
}
.sidenbtnB:before {
    font-family: "icomoon";
    content: "\f095";
    margin-bottom: 5px;
}
.sidenbtnB:after {
    font-family: "icomoon";
    content: "\f003";
    margin-top: 5px;
}
.twitter-timeline {
    background: var(--box-back);
}
.instagram-media  {
    width: 100% !important;
    min-width: 100% !important;
}
#side-contentB-list .tel {
    width: 100%;
    margin-bottom: 15px;
}
#side-contentB-list .tel span {
    display: block;
    line-height: 1.2;
}
#side-contentB-list .tel span:before {
    font-family: "icomoon";
    content: "\f095";
    font-size: 2.4rem;
    margin-right: 5px;
}
#side-contentB-list .tel span {
    font-family: 'Jost', serif;
    font-size: 3rem;
}
#side-contentB-list .dual {
    width: 100%;
}
#side-contentB-list .wpcf7 p {
    color: #fff;
    margin-bottom: 3px;
}
#side-contentB-list textarea {
    height: 150px;
}
#side-contentB-list input[type=text] {
    height: 34px;
    padding: 5px 10px;
}
#side-contentB-list .wpcf7 .approval {
    flex-wrap: wrap;
    gap: 15px 0;
    margin-top: 5px;
}
#side-contentB-list .wpcf7 .approval .wpcf7-form-control-wrap {
    width: 100%;
    padding: 5px 10px;
}
.aaa {
    display: block;
    padding: 10px;font-size: 3rem;
    border: 3px solid #f30;
}



/*-------------------------------------------------------------------------------------------*/
/* 　社会貢献　一覧
/*-------------------------------------------------------------------------------------------*/
img.wp-image-17161 {
    display: none;
}
.support-list {
    padding: 40px;
    background: #f8f8f8;
}
.support-list + .support-list {
    margin-top: 30px;
}
.support-list h4 {
    color: #222;
    font-size: 1.9rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
.support-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}
.support-list li {
    padding: 2px 5px;
    border: 1px solid #ddd;
    background: #fff;
}
.support-list li:first-child {
    position: relative;
    color: #fff;
    margin-right: 10px;
    border: 1px solid var(--main);
    background: var(--main);
}
.support-list li:first-child:after {
    content: "";
    position: absolute;
    top: 25px;
    right: -10px;
    display: block;
    width: 0px;
    height: 0px;
    margin-top: -20px;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--main);
    z-index: 1000;
}
.support-list a {
    display: block;
    width: 190px;
    color: #fff;
    font-size: 110%;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    background: var(--link);
}
.support-list a:hover {
    color: #fff;
    background: var(--main);
}
.support-list img {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/4;
}



/*-------------------------------------------------------------------------------------------*/
/* 　社会貢献　詳細
/*-------------------------------------------------------------------------------------------*/
.contributions-format .content {
    width: 80%;
    min-width: 1024px;
    max-width: 1024px;
    margin: 0 auto;
}
.contributions-format h1 {
    color: var(--main);
    font-size: clamp(2.6rem, 1.511rem + 2.49vw, 4rem);
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 20px;
}
h2.page-title {
    position: relative;
    color: var(--main);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.4em;
    padding: 10px 15px 10px 30px;
    margin-bottom: 30px;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid var(--link);
    background: #f8f8f8;
}
h2.page-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 30px;
    background: var(--link);
    margin-right: 7px;
}
.contributions-format .flex-box {
    gap: 30px 0;
}
.contributions-format .image-title {
    color: #fff;
    text-align: center;
    padding: 5px;
    margin: -10px 0 10px;
    background: var(--main);
}
.contributions-format .box {
    overflow: auto;
}
.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

