@charset "UTF-8";
/*-----------------------------共通設定-----------------------------*/
html {
    font-size: 100%;
}
body {
    min-width: 1200px;
    color:#3C3C1E;
    font-family: "M PLUS Rounded 1c", Arial, Helvetica, sans-serif;/*M PLUS Rounded 1c 400 500 700 の3種類*/
    font-weight: 400;
    margin: 0 auto;
    background: #F0E6C8;
}
body::before {
    z-index: -1;
	content:"";
	display:block;
	position:fixed;
    top: 0;
	left: 0;
	width: 80%;
	height: 100%;
    background: #F9F6EC;
}
body::after {
    z-index: -1;
	content:"";
	display:block;
	position:fixed;
	right: 0;
	top: 0;
	width: 15%;
	height: 100%;
    background: linear-gradient(
    -45deg,
    #F9F6EC 20%,
	#F0E6C8 20%,
    #F0E6C8 50%,
	#F9F6EC 50%,
    #F9F6EC 70%,
	#F0E6C8 70%,
    #F0E6C8);
	background-size: 30px 30px;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
li {
    list-style: none;
}
a {
    color:#3C3C1E;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    opacity: .7;
}
iframe {
    vertical-align: bottom;
}
address {
    font-style: normal;
}
/*-----------------------------メイン共通用-----------------------------*/
main {
    padding-top: 160px;
    min-height: calc(100vh - 150px);
}
/*-----------------------------header設定-----------------------------*/
.header {
    height: 160px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
.header .header-inner {
    background: linear-gradient( to bottom, #433B93 0%, #433B93 50%, #1D1E63 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}
.header-logo a {
    display: flex;
    flex-direction: column;
    color: #fff;
    white-space: nowrap;
    padding: 20px;
}
.logo-catch{
    font-size:1rem;
}

.logo-name-ja{
    font-size:1.2rem;
}

.logo-name-en{
    font-size:1.75rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
.header-links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-links .header-shop{
    margin-right: 10px;
}
.header-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}
.header-contact .header-tel ,
.header-contact .header-fax ,
.header-contact .header-mail {
    white-space: nowrap;
    text-align: center;
    font-size: 1.3rem;
    border-left: solid 1px #fff;
    padding: 0 10px;
}
.header-contact .header-mail {
    border-right: solid 1px #fff;
}
.header-contact .header-tel a,
.header-contact .header-fax a,
.header-contact .header-mail a {
    color: #fff;
}
.header-contact .header-tel a .main,
.header-contact .header-fax a .main,
.header-contact .header-mail a .main {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
}
.header-contact .header-tel a .main::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../img/common/header/tel-icon.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.header-contact .header-fax a .main::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../img/common/header/fax-icon.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.header-contact .header-mail a .main::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../img/common/header/mail-icon.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.header-contact .header-tel a .sub,
.header-contact .header-fax a .sub,
.header-contact .header-mail a .sub {
    display:inline-block;
    line-height:1.5;
    font-size: 0.8rem;
}
/*-----------------------------ナビゲーション-----------------------------*/
.navi {
    color: #fff;
    background-color: #3C3C1E;
    height: 40px;
}
.navi .menu {
    display: flex;
    justify-content: center;
    padding-top: 9px;
    font-size: clamp(0.7rem, 1.4vw, 1rem)
}
.navi .menu li a {
    color: #fff;
}
.navi .menu > li {
    margin-left: 40px;
}
.navi .menu .menu-first {
    position: relative;
    justify-content: center;
}
.navi .menu .menu-first span {
    cursor: pointer;
}
.navi .menu .menu-first span::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    margin: 0 auto;
    transform: rotate(135deg);
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
}
.navi .menu .menu-first .menu-second {
    width: 200px;
    background-color: #3C3C1E;
    padding: 10px 20px;
    position: absolute;
    top: 30px;
    display: none;
}
.navi .menu .menu-first .menu-second li {
    margin-bottom: 10px;
}
.mask {
    display: none;
}
.menu-link,
.menu-webcat,
.menu-contact {
    display: none;
}
.menu-contact {
    background-color: #fff;
}
.menu-link {
    background-color: #433B93;
}
.menu-webcat {
    background-color: #68b7c8;
}
.menu-link a,
.menu-webcat a {
    color: #fff;
    line-height: 1.2;
}
.menu-link-sub {
    font-size: .8rem;
}
/*-----------------------------main-----------------------------*/
.inner-link {
    scroll-margin-top: 160px;
}
.page-mv {
    max-width: 1200px;
    margin: 0 auto;
    }
.page-mv img{
    display: block;
    margin: 50px auto 50px;
    padding: 0 50px;
}
.section-inner {
    max-width: 1000px;
    padding: 30px;
    margin: 0 auto 50px;
    background-color: white;
    border-radius: 30px;
}
.section-title {
    padding-left: 1rem;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    border-bottom: 1px solid #3C3C1E;
    border-left: 15px solid #3C3C1E;
}
.section-title-sub {
    font-weight: normal;
    padding: 10px;
}
.section-p {
    padding: 10px;
}
.check {
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #C33C39;
    border-radius: 10px;
    margin-right: 10px;
}
.check2 {
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #424ab5;
    border-radius: 10px;
    margin-right: 10px;
}
.step-r {
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #C33C39;
    border-radius: 10px;
    margin-right: 10px;
}
.step-g {
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #697f0f;
    border-radius: 10px;
    margin-right: 10px;
}
.step-b {
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #424ab5;
    border-radius: 10px;
    margin-right: 10px;
}
.step-p {
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #e03467;
    border-radius: 10px;
    margin-right: 10px;
}
.original-list,
.service-list,
.catalogue-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.original-item,
.service-item {
    flex-basis: calc((100% - 20px) / 2);
}
.catalogue-item {
    flex-basis: calc((100% - 60px) / 4);
    padding: 15px;
    background-color: #F9F6EC;
    border-radius: 10px;
}
.catalogue-item img {
    box-shadow: 0 0px 8px rgba(0,0,0,.5);
}
.original-item p {
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    background-color: #f0e7d1;
    border-radius: 10px;
}
.catalogue-item P {
    padding-top: .5rem;
}
.original-item a,
.service-item a,
.catalogue-item a {
    display: block;
    text-align: center;
}
.web-cat-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #68b7c8;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.web-cat-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconOtherSite.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.web-cat-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.form-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f09722;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.form-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconForm.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.form-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.mail-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4154b5;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.mail-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconMail.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.mail-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.support-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5e9848;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.support-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconAdvice.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.support-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.print-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #988548;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.print-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconGear.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.print-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.nyuko-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e38511;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.nyuko-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconCheck.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.nyuko-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.nyuko-check-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b8230f;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.nyuko-check-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconCheck.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.nyuko-check-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.price-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #15a4bd;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.price-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconPen.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.price-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.fax-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a92d1a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.fax-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconFax.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.fax-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.tel-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a91a9;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.tel-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconTel.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.tel-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.illustrator-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.illustrator-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconIllustrator.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.illustrator-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.photoshop-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.photoshop-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconPhotoshop.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.photoshop-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.pdf-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.pdf-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconPDF.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.pdf-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.jpg-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.jpg-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconJPG.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.jpg-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.png-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.png-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconPNG.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.png-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.gif-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.gif-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconGIF.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.gif-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.tiff-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.tiff-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconTIFF.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.tiff-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.word-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.word-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconWord.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.word-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.exel-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.exel-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconExel.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.exel-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.powerpoint-btn {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #50381a;
    border-radius: 15px;
    box-shadow: 0 5px 0 0 #aaa;
    padding: 20px;
    margin: 0 auto 20px;
    text-align: center;
}
.powerpoint-btn::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background: url(../img/common/icon/iconPowerPoint.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.powerpoint-btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.section-inner .caution {
    text-align: center;
    margin-top: 20px;
    color: #C33C39;
}
.caution-2 {
    color: #C33C39;
}
.caution-3 {
    text-align: center;
    background-color: #C33C39;
    color: #fff;
    padding: 5px;
    margin: 10px;
}
.info-list {
    display: flex;
    flex-wrap: wrap;
}
.info-list dt {
    width: 200px;
    border-bottom: dashed 1px #AB954F;
    padding: 20px;
}
.info-list dd {
    width: calc(100% - 200px);
    border-bottom: dashed 1px #AB954F;
    padding: 20px;
}
.map {
    display: flex;
    flex-direction: column;
}
.map a {
    width: 130px;
    height: 35px;
    padding: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3C3C1E;
    color: #fff;
}
.map iframe {
    width: 100%;
}
.contact-title {
    display: flex;
    background-color: #e6d00c;
    font-weight: 500;
    padding: 15px;
    align-items: center;
    justify-content: center;
    outline:dashed 1px #3C3C1E;
    outline-offset:-8px;
}
.contact-title::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background: url(../img/common/icon/contact-icon-01.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.contact-title::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background: url(../img/common/icon/contact-icon-02.png) no-repeat center;
    background-size: contain;
    vertical-align: baseline;
}
.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.contact-link {
    width: calc((100% - 40px) / 3);
}
.contact-links .contact-link a{
    display: flex;
    flex-direction: column;
    background-color: #e0506b;
    color: #fff;
    outline:dashed 1px #fff;
    outline-offset:-5px;
    padding: 10px;
    align-items: center;
    justify-content: center;
}
.contact-link a .sub {
    font-size: 0.8rem;
}
.contact-link a .main {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}
.contact-link:nth-child(1) a .sub::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../img/common/header/tel-icon.png) no-repeat center;
    background-size: contain;
    vertical-align: top;
}
.contact-link:nth-child(2) a .sub::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../img/common/header/mail-icon.png) no-repeat center;
    background-size: contain;
    vertical-align: top;
}
.contact-link:nth-child(3) a .sub::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../img/common/header/fax-icon.png) no-repeat center;
    background-size: contain;
    vertical-align: top;
}
footer {
    background-color: #3C3C1E;
    padding: 30px;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer-logo {
    width: 80px;
}
.footer-links ul li a{
    color: #fff;
}
.copy {
    text-align: center;
}
.copy small {
    color: #fff;
}
.page-top {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 160px;
    opacity: 0;
}
.page-top.show {
    opacity: 0.6;
}
.arrow {
    width:10rem;
    height:1.5rem;
    margin:auto;
    background:
        linear-gradient(
            to top right,
            transparent 50%,
            #C33C39 50.5%
        ) no-repeat top left / 50% 100%,
        linear-gradient(
            to top left,
            transparent 50%,
            #C33C39 50.5%
        ) no-repeat top right / 50% 100%;
}
.arrow2 {
    width: 1.5rem;
    height: 10rem;
    margin: auto;
    background:
        linear-gradient(
            to bottom left,
            transparent 50%,
            #3C3C1E 50.5%
        ) no-repeat top left / 100% 50%,

        linear-gradient(
            to top left,
            transparent 50%,
            #3C3C1E 50.5%
        ) no-repeat bottom left / 100% 50%;
}
.modal-inner {
    width: 45%;
}
.modal-inner p {
    margin-bottom: 10px;
}
.modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(60, 60, 30, 80%);
    padding: 80px 80px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    transition: 0.3s;
    z-index: 20;
}
.modal-container.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    width: 100%;
    display: inline-block;
}
.modal-close {
    width: 3rem;
}
.font-list {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    margin-top: 20px;
}
.color-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    gap: 10px;
}
.color-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    color: #fff;
    width: 100px;
    height: 100px;
}
.color-name{
    font-size: .8rem;
}
.color-197{
    background-color: rgba(179,28,49,1.00);
}
.color-199{
    background-color: rgba(189,52,44,1.00);
}
.color-159{
    background-color: rgba(249,55,40,1.00);
}
.color-154{
    background-color: rgba(215,0,133,1.00);
}
.color-51{
    background-color: rgba(254,99,119,1.00);
}
.color-259{
    background-color: rgba(238,177,180,1.00);
}
.color-645{
    background-color: rgba(169,66,15,1.00);
}
.color-121{
    background-color: rgba(255,135,28,1.00);
}
.color-166{
    background-color: rgba(254,202,0,1.00);
}
.color-9{
    background-color: rgba(245,221,122,1.00);
}
.color-2351{
    background-color: rgba(49,88,69,1.00);
}
.color-638{
    background-color: rgba(0,155,74,1.00);
}
.color-642{
    background-color: rgba(70,183,42,1.00);
}
.color-11{
    background-color: rgba(196,226,128,1.00);
}
.color-255{
    background-color: rgba(4,61,120,1.00);
}
.color-579{
    background-color: rgba(0,98,185,1.00);
}
.color-577{
    background-color:  rgba(0,160,289,1.00);
}
.color-135{
    background-color: rgba(0,168,173,1.00);
}
.color-121{
    background-color: rgba(181,211,229,1.00);
}
.color-581{
    background-color: rgba(77,0,138,1.00);
}
.color-104{
    background-color: rgba(135,141,220,1.00);
}
.color-23{
    background-color: rgba(221,186,208,1.00);
}
.color-654{
    background-color: rgba(103,105,108,1.00);
}
.color-651{
    background-color: rgba(159,161,159,1.00);
}
.color-650{
    background-color: rgba(182,183,180,1.00);
}
.section-title img {
    display: inline-block;
    width: 2rem;
    margin: 5px;
}
.privacy-inner {
    padding: 20px;
}
.privacy-item {
    padding-bottom: 10px;
}
.privacy-item dt {
    background-color: #f8eecc;
    padding: 10px;
}
.privacy-item dd {
    padding: 10px;
}
.sitemap-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}
.sitemap-inner {
    background-color: #f8eecc;
    padding: 20px;
}
.sitemap-title {
    border-bottom: 1px solid#3C3C1E;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.sitemap-item a {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
/*-------------------------------------------------------------------*/
/*---------------------------タブレット用------------------------------*/
/*-------------------------------------------------------------------*/
@media screen and (max-width:1024px) {
body {
    min-width: auto;
}    
main {
    padding-top: 130px;
}
.inner-link {
    scroll-margin-top: 130px;
}
.page-mv img{
    display: block;
    margin: 20px auto 20px;
    padding: 0 20px;
}
.section-inner {
    max-width: auto;
    margin: 0 20px 20px;
}
.header .header-inner {
    height: 90px;
}    
.logo-catch{
    display: none;
}

.logo-name-ja{
    font-size:1rem;
}

.logo-name-en{
    font-size:1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
.header-links {
    width: 300px;
}
.header-contact .header-tel a .main,
.header-contact .header-fax a .main,
.header-contact .header-mail a .main {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
}
.header-contact .header-tel a .main::before {
    width: 15px;
    height: 15px;
}
.header-contact .header-fax a .main::before {
    width: 15px;
    height: 15px;
}
.header-contact .header-mail a .main::before {
    width: 15px;
    height: 15px;
}
.header-contact .header-tel a .sub,
.header-contact .header-fax a .sub,
.header-contact .header-mail a .sub {
    display: none;
}

.navi .menu > li {
    margin-left: 30px;
}
.font-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
    
}

/*-----------------------------スマホ用------------------------------*/

@media screen and (max-width:767px) {
    .inner-link {
    scroll-margin-top: 0;
    }
    .header {
        position: static;
        height: auto;
    }
    main {
        padding-top: 0;
        min-height: calc(100vh - 240px);
    }
    .header .header-inner {
    justify-content: flex-start;
    }    
    .header-links,
    .header-contact {
        display: none;
    }
    .header .navi {
        width: 80%;
        height: 100vh;
        background-color: #e9debd;
        position: fixed;
        top: 0;
        left: -120%;
        z-index: 20;
        transition: all 0.6s;
    }
    .header .navi.active {
        left: 0;
    }
    .navi {
    color: #3C3C1E;
    }
    .header .navi .menu {
        width: 100%;
        height: 100vh;
        font-size: 1rem;
        flex-direction: column;
        padding: 60px 0;
        overflow: auto;
    }
    .header .navi .menu > li {
        text-align: center;
        width: 100%;
        border-top: solid 1px #8e8763;
        margin-left: 0;
    }
    .header .navi .menu > li:last-child {
        border-bottom: solid 1px #8e8763;
    }
    .navi .menu li a {
    color: #3C3C1E;
    }    
    .header .navi .menu > li a {
        width: 100%;
        display: block;
        padding: 20px;
    }
    .header .navi .menu .menu-first span {
        display: block;
        padding: 20px;
    }
    .header .navi .menu .menu-first span::before {
        content: "";
        width: 15px;
        height: 1px;
        background-color: #3C3C1E;
        position: absolute;
        top: 30px;
        right: 20px;
    }
    .header .navi .menu .menu-first span::after {
        content: "";
        width: 1px;
        height: 15px;
        background-color: #3C3C1E;
        border: none;
        transform: none;
        position: absolute;
        top: 23px;
        right: 27px;
        left: auto;
    }
    .header .navi .menu .menu-first span.active::after {
        content: none;
    }
    .header .navi .menu .menu-first .menu-second {
        background-color: #ebe5d3;
        color: #3C3C1E;
        width: 100%;
        position: static;
        padding: 0;
    }
    .header .navi .menu .menu-first .menu-second li {
        border-top: solid 1px #8e8763;
        margin-bottom: 0;
    }
    .menu-link,
    .menu-webcat,
    .menu-contact {
        display: block;
    }
    .navi .menu .menu-link a {
        color: #fff;
    }
/*-----------------------------ハンバーガーメニュー-----------------------------*/
.hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 30;
}
.hamburger span {
    width: 30px;
    height: 1px;
    background-color: #1f1f1f;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
}
.hamburger.active span {
    background-color: #fff;
}
.hamburger span:nth-last-of-type(1) {
    top: 16px;
}
.hamburger span:nth-last-of-type(2) {
    top: 25px;
}
.hamburger span:nth-last-of-type(3) {
    top: 34px;
}
.hamburger.active span:nth-last-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
}
.hamburger.active span:nth-last-of-type(2) {
    opacity: 0;
}
.hamburger.active span:nth-last-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
}
.mask.active {
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
}
/*-----------------------------main----------------------------*/

.section-title {
        padding-left: 0.5rem;
    }
    .section-p {
        font-size: 0.9rem;
    }
    .original-item,
    .service-item {
        flex-basis: 100%;
    }
    .catalogue-item {
        flex-basis: calc((100% - 20px) / 2);
    }
    .info-list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .info-list dt {
        width: auto;
        border-bottom: none;
        padding-bottom: 0px;
    }
    .info-list dd {
        width: auto;
        border-bottom: dashed 1px #AB954F;
        padding: 20px;
    }
    .map iframe {
        height: 400px;
    }
    .contact-links {
        flex-direction: column;
    }
    .contact-link {
        width: 100%;
    }
    .font-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    }
    .sitemap-section {
    grid-template-columns: repeat(2, 1fr);
}
}