@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Noto+Serif+JP:400&display=swap');

/*
font-family: 'Roboto', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
*/

/* ---------------------------------------------------------------------------
//  base
--------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
*::before,
*::after { box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
img, iframe { border: 0; vertical-align: bottom; }
ul, ol { list-style-type: none; }
a { text-decoration: none; }
mark { font-weight: bold; color: inherit; background-color: transparent; }
em { font-style: normal; }
address { font-style: normal; }
table { border-collapse: collapse; border-spacing: 0; }
input, select { vertical-align: baseline; }

.cf::after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

:root {
  --cg: 'Cormorant Garamond', serif;
  --titillium: 'Titillium Web', sans-serif;
  --sans: 'Noto Sans JP', sans-serif;
  --serif: 'Noto Serif JP', serif;
  --xxxsmall: 8px;
  --xxsmall: 12px;
  --xsmall: 13px;
  --small: 14px;
  --regular: 16px;
  --large: 18px;
  --xlarge: 20px;
  --xxlarge: 24px;
  --xxxlarge: 30px;
  --xxxxlarge: 38px;
  --mnt: #70DD9D;
  --bgry1: #EEE;
  --bgry2: #F5F5F5;
}

/* ---------------------------------------------------------------------------
//  all
--------------------------------------------------------------------------- */
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--regular);
  color: #000;
  line-height: 2;
  background: #FFF;
}
h1, h2, h3, h4, h5, h6 { font-weight: normal; line-height: 1.4; }

a { transition: .3s; color: #000; }
@media screen and (min-width: 767.8px) {
  a:hover { opacity: .7; }
}

.wrap { min-width: 1000px; height: 100%; margin: 80px auto 0; }
.inner { max-width: 1000px; height: 100%; margin: 0 auto; position: relative; }
.inner-wide { max-width: 1366px; height: 100%; margin: 0 auto; position: relative; }
ul.indent li { text-indent: -1em; padding-left: 1em; }
ol.num { counter-reset: li; }
ol.num > li { text-indent: -1.2em; padding-left: 1.2em; }
ol.num > li:before { content: counter(li) "."; counter-increment: li; padding-right: 5px; }
ol.brackets { counter-reset: li; }
ol.brackets > li { text-indent: -1.55em; padding-left: 1.55em; }
ol.brackets > li:nth-child(n+10) { text-indent: -2.1em; padding-left: 2.1em; }
ol.brackets > li:before { content: "(" counter(li) ")"; counter-increment: li; padding-right: 5px; }
hr { display: block; height: 1px; border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 1em 0; }
img.ImgBlock { display: block; }
img.cover { width: 100%; height: 100%; object-fit: cover; }
img.contain { width: 100%; height: 100%; object-fit: contain; }
img.auto { width: 100%; max-width: 100%; height: auto; }
.text-overflow { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.sml { font-size: 80%; }
.t-center { text-align: center; }
.t-right { text-align: right; }

.flex { display: flex; justify-content: space-between; }
.flex.jstart { justify-content: flex-start; }
.flex.jend { justify-content: flex-end; }
.flex.jcenter { justify-content: center; }
.flex.fwrap { flex-wrap: wrap; }
.flex.fwrap.bottom > * { margin-bottom: 20px; }
.flex.istart { align-items: flex-start; }
.flex.iend { align-items: flex-end; }
.flex.icenter { align-items: center; }
.flex.half > * { width: 49%; }
.flex.half50 > * { width: 50%; }
.flex.third > * { width: 32%; }
.flex.quarter > * { width: 24%; }
.flex.reverse { flex-flow: row-reverse; }
.flex.third.fwrap::after { content: ""; width: 32%; display: block; }
.flex.quarter.fwrap::before { content: ""; width: 24%; display: block; order: 1; }
.flex.quarter.fwrap::after { content: ""; width: 24%; display: block; }

a.scale { overflow: hidden; }
a.scale img { transition: .3s; }
@media screen and (min-width: 767.8px) {
  a.scale:hover img { transform: scale(1.05); }
}

.icon img { vertical-align: middle; }

/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */
header .inner { max-width: 100%; min-width: 1000px; }

header.pc { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; background: #fff;  }
header.pc .main { height: 80px; }
header.pc .logo { display: table; line-height: 1.6; margin-left: 20px; }
header.pc .logo span { font-size: var(--xxsmall); }


/* ---------------------------------------------------------------------------
//  nav
--------------------------------------------------------------------------- */

.global-menu li {
  margin-right: 30px;
}
.global-menu a {
  position: relative;
  font-size: var(--small);
  padding-left: 24px;
}
.global-menu a::before {
  content: "";
  width: 18px;
  height: 2px;
  border-top: 1px solid #757575;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
header.pc .contact {
  height: 80px;
  background: #333;
  color: #fff;
  font-size: var(--small);
  padding: 25px 40px;
}
header.pc .contact .icon {
  vertical-align: 1px;
}

.page--outline .global-menu .outline::before,
.page--business .global-menu .business::before,
.page--news .global-menu .news::before { border-top: 1px solid var(--mnt); }

/* ---------------------------------------------------------------------------
//  aside
--------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
//  footer
--------------------------------------------------------------------------- */
.googlemap {
  width: 100%;
  height: 330px;
}
.googlemap iframe {
  width: 100%;
  height: 100%;
}
footer .main {
  background: #F5F5F5;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
footer .main .inner {
  z-index: 1;
}
footer .main .logo {
  line-height: 2.2;
  margin-bottom: 20px;
}
footer .main .logo p {
  font-size: var(--xxsmall);
}
footer .main .tel {
  font-family: var(--titillium);
  font-weight: 400;
  font-size: var(--xxxlarge);
}
footer .main .tel .icon {
  vertical-align: 2px;
}
footer .main .open {
  line-height: 1.6;
}
footer .main .open .icon {
  margin-right: 7px;
}
footer h3 {
  font-family: var(--titillium);
  font-weight: 700;
  color: var(--mnt);
  font-size: var(--regular);
  margin-bottom: 10px;
}
footer .menu li {
  margin-bottom: 10px;
}
footer .menu li::before {
  content: "❯";
  color: var(--mnt);
  padding-right: 8px;
}
footer .menu li a {
  font-size: var(--small);
}
footer .main .add .icon {
  vertical-align: 1px;
}
footer .main .mail .icon {
  vertical-align: 1px;
}
footer .copyright {
  background: linear-gradient(to right, #A3FCEA 0%, #A8FECF 50%, #FBF07D 100%);
  padding: 35px;
}
footer .copyright p {
  text-align: center;
  font-size: var(--xxsmall);
  color: #757575;
}


.foot-obj {
  width: 381px;
  height: 402px;
  position: absolute;
  top: 50px;
  right: -120px;
}



/* ---------------------------------------------------------------------------
//  common
--------------------------------------------------------------------------- */
.mnt { color: var(--mnt); }
a.btn {
  display: table;
  background: var(--mnt);
  color: #fff;
  padding: 8px 30px;
  font-size: var(--small);
  margin-top: 30px;
}
a.btn::after {
  content: "❯";
  padding-left: 1em;
}
a.btn.center {
  margin: 30px auto 0;
}

/* ---------------------------------------------------------------------------
//  top
--------------------------------------------------------------------------- */
.top-mv {
  position: relative;
  z-index: 1;
}
.top-mv .slide {
  margin-left: 250px;
}
.top-mv .copy {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
}
.top-mv .en {
  font-family: var(--cg);
  font-weight: 600;
  font-size: var(--large);
  margin-bottom: 20px;
}
.top-mv h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 70px;
  line-height: 1.2;
}

.top-baking {
  background: var(--bgry1);
  padding: 290px 0 140px;
  margin-top: -160px;
}
.top-baking h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--xxxxlarge);
  letter-spacing: .1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 55px;
  height: 260px;
  position: absolute;
  top: calc(50% - 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-left: 1px solid #000;
}
.top-baking .flex {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.top-baking .inner::before {
  content: "";
  display: block;
  width: 76%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-baking .flex .image { width: 43%; }
.top-baking .flex .text { width: 43%; }

.top-onestop {
  background: var(--bgry2);
  padding: 80px 0 240px;
  position: relative;
  overflow: hidden;
}
.top-onestop::after {
  content: "";
  background: var(--bgry1);
  height: calc(100% - 50px);
  width: calc(50% - 380px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.top-onestop .inner {
  z-index: 4;
}
.top-onestop h2 {
  font-size: var(--xxxlarge);
  font-weight: 700;
  margin-bottom: 10px;
}
.top-onestop .flow {
  margin: 20px 0 80px;
}
.top-onestop .flow p {
  font-size: var(--large);
  font-weight: 700;
}
.top-onestop .metal {
  height: 140px;
  position: relative;
  z-index: 2;
}
.top-onestop .images {
  position: relative;
  z-index: 2;
}

.top-faq {
  background: var(--bgry2);
  padding: 0 0 160px;
  margin-top: -110px;
  position: relative;
  overflow: hidden;
}

.top-faq h2 {
  font-size: var(--xxxlarge);
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.faq {
  width: 780px;
  margin: 0 auto;
}
.faq dt {
  font-size: var(--xlarge);
  font-weight: 700;
  margin-bottom: 10px;
  cursor: pointer;
}
@media screen and (min-width: 767.8px) {
  .faq dt:hover { opacity: .7; }
}

.faq dt::before {
  content: "Q.";
  font-size: var(--xxlarge);
  font-weight: 700;
  color: var(--mnt);
}
.faq dd {
  display: none;
  padding-left: 20px;
  margin-bottom: 40px;
}
.faq dd::before {
  content: "A.";
  margin-left: -20px;
  padding-right: 6px;
}
.faq h3 {
  font-size: var(--large);
  font-weight: 700;
  margin-top: .5em;
}

.top-obj1 {
  width: 173px;
  height: 467px;
  position: absolute;
  top: 100px;
  left: -100px;
}
.top-obj2 {
  width: 350px;
  height: 459px;
  position: absolute;
  top: 300px;
  right: -200px;
  z-index: 3;
}
.top-obj3 {
  width: 520px;
  height: 103px;
  position: absolute;
  bottom: 0;
  left: calc(50% + 350px);
  z-index: 3;
}
.top-obj4 {
  width: 570px;
  height: 497px;
  position: absolute;
  top: -250px;
  left: -230px;
}

.top-news {
  padding: 90px 0 120px;
  position: relative;
}

.top-news .en {
  font-family: var(--cg);
  font-weight: 600;
  text-align: center;
}
.top-news h2 {
  font-size: var(--xxxlarge);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.news-list li {
  border-top: 1px solid #DFDFDF;
  padding-top: 15px;
  margin-top: 15px;
  padding-right: 30px;
  position: relative;
}
.news-list li::after {
  content: "❯";
  color: #42464E;
  position: absolute;
  right: 10px;
  top: calc(50% + 7px);
  transform: translateY(-50%);
}

.news-list li dt::after {
  display: inline-block;
  width: 70px;
  font-size: var(--xxxsmall);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #000;
  padding: 4px;
  margin-left: 10px;
  vertical-align: 2px;
}
.news-list li.news dt::after { content: "ニュース"; background: var(--orn); }
.news-list li.topics dt::after { content: "トピックス"; background: var(--lgr); }

.news-list dl dt { width: 180px; float: left; clear: left; }
.news-list dl dd { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }

/* --------------------------------------------------------------------------- */

.news-single .date {
  display: table;
  border: 1px solid #707070;
  font-size: var(--small);
  padding: 2px 10px;
  margin-bottom: 20px;
}
.news-single h1 {
  font-size: var(--xlarge);
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: 1px solid #DFDFDF;
}
.news-single h2 {
  font-size: var(--large);
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DFDFDF;
}
.news-single h2::before {
  content: "▌";
  color: var(--mnt);
}

.news-single h3 {
  font-size: var(--large);
  font-weight: 700;
  margin-bottom: 20px;
}

.news-single h4 {
  font-size: var(--regular);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------------------------------------------------------------------------
//  sec
--------------------------------------------------------------------------- */
.sec-title { height: 300px; margin-bottom: 90px; }
.page--outline .sec-title { background: url(../img/head-outline.jpg) center center / cover no-repeat; }
.page--business .sec-title { background: url(../img/head-business.jpg) center center / cover no-repeat; }
.page--news .sec-title { background: url(../img/head-news.jpg) center center / cover no-repeat; }
.page--contact .sec-title { background: url(../img/head-contact.jpg) center center / cover no-repeat; }

.page--business .sec-title h1,
.page--news .sec-title h1,
.page--contact .sec-title h1 { color: #fff; }

.sec-title h1 {
  font-size: var(--xxxlarge);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sec-default { margin-bottom: 120px; }
.sec-default.sec-gry { margin-top: -90px; padding: 70px 0; background: var(--bgry1); }

.sec-default h2.head {
  font-size: var(--xxlarge);
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: 1px solid #DFDFDF;
}
.sec-default h2.head::before {
  content: "▌";
  color: var(--mnt);
}


.sec-default.sec-gry h2 {
  font-size: var(--xxlarge);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.greeting {
  width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
}

.greeting .name {
  margin-top: 20px;
  text-align: right;
}
.greeting .name span {
  margin-left: 10px;
  vertical-align: 2px;
}

.company { margin-bottom: 40px; }
dl.outline dt { width: 10em; float: left; clear: left; font-weight: 700; }
dl.outline dd { padding: 0 0 0 10em; margin-bottom: 20px; }

dl.history dt { width: 10em; float: left; clear: left; font-weight: 700; }
dl.history dd { padding: 0 0 0 10em; margin-bottom: 20px; }

.outline-baking .image { height: 350px; }
.outline-baking .box {
  background: #fff;
  padding: 40px 50px;
  margin-top: -130px;
}
.flex.facility > div { width: 44%; }
.flex.facility dl dt { width: calc(100% - 2em); float: left; clear: left; }
.flex.facility dl dd { padding: 0 0 0 calc(100% - 2em); margin-bottom: 10px; text-align: right; }

.staff {
  margin: 140px 0 0;
  position: relative;
}
.staff .image {
  width: 220px;
  position: absolute;
  top: -90px;
  left: 0;
  z-index: 1;
}
.staff .image .name {
  text-align: center;
  width: 130px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--mnt);
  color: #fff;
}
.staff .comment {
  background: var(--bgry2);
  padding: 40px 30px 40px 160px;
  width: calc(100% - 90px);
  margin-left: 90px;
}

.staff.reverse .image { left: auto; right: 0; }
.staff.reverse .image .name { right: auto; left: 0; }
.staff.reverse .comment { margin-left: 0; padding: 40px 160px 40px 30px; }

.business-images { margin-top: 60px; }
.business-images > div { width: calc(100% / 3); }


.painting .single { width: 290px; position: relative; }
.painting .flow > div { width: 290px; position: relative; }
.painting .flow > div::after {
  content: "▶";
  font-size: 20px;
  color: var(--mnt);
  position: absolute;
  top: 80px;
  right: -42px;
}
.painting .flow > div.end::after { content: none; }

.painting .item {
  margin-bottom: 40px;
}
.painting .bg .gry {
  background: var(--bgry1);
  padding: 20px 15px;
}
.painting .bg .gry .flow > div:first-child {
  margin-right: 50px;
}
.painting .bg .gry .flow > div:first-child::after {
  right: -35px;
}

.painting h3 {
  font-size: var(--xlarge);
  font-weight: 700;
  margin-bottom: 10px;
}
.painting h4 {
  font-size: var(--regular);
  font-weight: 700;
  margin-bottom: 10px;
}
.painting h5 {
  font-size: var(--small);
  font-weight: 700;
}
.painting p {
  font-size: var(--xsmall);
  line-height: 1.6;
}

.painting h3 .num {
  background: #000;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: var(--xlarge);
  font-weight: 700;
  margin-right: 10px;
}

.painting .image {
  margin-bottom: 10px;
}

.drying {
  width: 440px;
}
.drying .image {
  margin-bottom: 10px;
}
.drying p {
  font-size: var(--xsmall);
  line-height: 1.6;
}

.contact-info > div { width: 45%; background: var(--bgry2); padding: 40px; text-align: center; }
.contact-info h2 {
  font-size: var(--xxlarge);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-info a {
  font-family: var(--titillium);
  font-weight: 400;
  font-size: var(--xxxxlarge);
  color: var(--mnt);
}
.contact-info .tel::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: var(--xxxlarge);
  margin-right: 10px;
}
.contact-info .tel.fax::before {
  content: "\f1ac";
}
.contact-info p {
  font-size: var(--xsmall);
  line-height: 1.6;
}

.mailform { width: 820px; margin: 0 auto; }
.mailform h2 {
  font-size: var(--xxlarge);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.mailform .indent {
  margin-top: 40px;
  font-size: var(--small);
}


.notfound { margin: 300px 0; text-align: center; }
.notfound h1 { font-size: 80px; line-height: 1.2; }
.notfound h2 { font-size: 30px; line-height: 1.2; }







/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

.mailform dl { margin-top: 60px; }
.mailform dl dt { width: 10em; float: left; clear: left; }
.mailform dl dd { padding: 0 0 5px 10em; margin-bottom: 20px; }

.mailform dl dt span { color: #FF7C7C; }

.mailform input[type="text"],
.mailform input[type="email"],
.mailform input[type="tel"],
.mailform select,
.mailform textarea {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--regular);
  background: #fff;
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #C0C0C0;
}
.mailform select { width: auto; }
.mailform textarea { height: 200px; }
::-webkit-input-placeholder { color: #ccc; }
:-ms-input-placeholder { color: #ccc; }
::placeholder { color: #ccc; }
.mailform input[type=checkbox] { transform: scale(1.2); }

.mailform input[type="submit"] {
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--regular);
  background: #000;
  display: block;
  width: 500px;
  height: 90px;
  line-height: 90px;
  border: none;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  transition: .3s;
  margin: 50px auto 0;
}
.mailform input[type="submit"]:hover { opacity: .7; }
.mailform input[type="submit"]:active { top: 1px; }

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */




