@charset 'UTF-8';
/*Google Fonts
---------------------------------------------------------------------------*/
/* reset */
/* 
-------------------------------------------------- */
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
  }
}
html {
  block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  tab-size: 4;
}
body {
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, iframe) {
  border: none;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(img) {
  image-rendering: -webkit-optimize-contrast;
}
:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + .5rem);
}
ul:where([class]), ol:where([class]), nav ul, nav ol {
  list-style: none;
}
ul:where(:not([class])) {
  margin-left: .875em;
}
ol:where(:not([class])) {
  margin-left: 1.25em;
}
:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(sub, sup) {
  font-size: 68.75%;
  line-height: 1.02;
}
:where(sub) {
  vertical-align: baseline;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(template) {
  display: none;
}
:where(a) {
  background: transparent;
  text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .25);
}
:where(a:active, a:hover) {
  outline-width: 0;
}
:where(a img) {
  pointer-events: none;
}
:where(a, area, button, input, label[for], select, textarea, summary, [role='button'], [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(summary) {
  list-style: none;
}
:where(summary)::-webkit-details-marker {
  display: none;
}
:where(code, kbd, pre, samp) {
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
}
:where(pre) {
  display: block;
  overflow: auto;
}
:where(code) {
  overflow-wrap: break-word;
}
:where(pre code) {
  word-break: normal;
}
:where(dialog) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: fit-content;
  height: fit-content;
  padding: 1em;
  background: inherit;
  border: solid;
  color: inherit;
  transform: translate(-50%, -50%);
}
:where(dialog:not([open])) {
  display: none;
}
:where(fieldset) {
  border: none;
}
:where(input, textarea, select, button), :where(input[type="file"])::-webkit-file-upload-button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  vertical-align: bottom;
  appearance: none;
}
:where(textarea) {
  resize: vertical;
  resize: block;
  overflow: auto;
  overflow-anchor: none;
}
:where(input[type="file"])::-webkit-file-upload-button, :where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
:where(:disabled, :disabled + label), :where(input[type="file"]):disabled::-webkit-file-upload-button, :where(input[type="file"]):disabled::file-selector-button, :where([disabled], [aria-disabled="true"]) {
  cursor: not-allowed;
}
:where([type="color"])::-webkit-color-swatch-wrapper {
  padding: 0;
}
:where([type="color"])::-webkit-color-swatch {
  border: none;
  border-radius: 0;
}
:where([type="color"])::-moz-color-swatch {
  border: none;
  border-radius: 0;
}
:where([hidden]) {
  display: none;
}
:where([aria-busy="true"]) {
  cursor: progress;
}
:where([aria-controls]) {
  cursor: pointer;
}
/* Foundation
-------------------------------------------------- */ :root {
  --lg-base: 1280 * 100vw;
  --sm-base: 375 * 100vw;
  --transition: .25s ease;
  --transition-duration: .25s;
  --hover-opacity: .8;
  --color-default: #333;
  --color-primary: #f47c5e;
}
body {
  width: 100%;
  background: #fff9f7;
  color: #4e4c4c;
  font-family: 'Zen Maru Gothic', "Hiragino Maru Gothic Pro", "MS PGothic";
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
}
a {
  color: var(--color-default);
  text-decoration: underline;
  text-underline-offset: .275em;
}
a:where(:not([class])) {
  color: var(--color-primary);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a:where(:not([class])):hover {
    text-decoration: underline;
    color: var(--color-primary);
  }
  a img {
    transition: opacity var(--transition);
  }
  a:hover img {
    opacity: var(--hover-opacity);
  }
}
a:hover img {
  opacity: var(--hover-opacity);
}
input, textarea, button, select, option, optgroup {
  font-size: min(16px, calc(16 / var(--sm-base)));
}
::selection {
  background-color: var(--color-primary);
  color: #fff;
  text-shadow: none;
}
::placeholder {
  color: var(--color-gray);
  opacity: 1;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 18px;
  }
  input, textarea, button, select, option, optgroup {
    font-size: 16px;
  }
}
/* Utility
-------------------------------------------------- */
.u-color-primary {
  color: var(--color-primary);
}
.u-color-secondary {
  color: var(--color-secondary);
}
.u-color-tertiary {
  color: var(--color-tertiary);
}
.u-tl {
  text-align: left;
}
.u-tc {
  text-align: center;
}
.u-tr {
  text-align: right;
}
.u-vt {
  vertical-align: top;
}
.u-vm {
  vertical-align: middle;
}
.u-vb {
  vertical-align: bottom;
}
.u-fwn {
  font-weight: 400;
}
.u-fwb {
  font-weight: 700;
}
.u-visuallyHidden {
  position: absolute !important;
  z-index: -1 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}
.smsizes\:hidden, .xs\:hidden {
  display: none;
}
@media screen and (min-width: 360px), print {
  .xs\:hidden {
    display: inline;
  }
  .sm\:hidden {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .smsizes\:hidden, .xs\:hidden, .sm\:hidden {
    display: inline;
  }
  .lgsizes\:hidden, .md\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1024px), print {
  .xs\:hidden, .sm\:hidden, .md\:hidden {
    display: inline;
  }
  .lg\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .xs\:hidden, .sm\:hidden, .md\:hidden, .lg\:hidden {
    display: inline;
  }
  .xl\:hidden {
    display: none;
  }
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
q:before, q:after {
  content: '';
}
object, embed {
  vertical-align: top;
}
legend {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
img, abbr, acronym, fieldset {
  border: 0;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover, .active {
  text-decoration: underline;
  color: var(--color-primary);
}
a:active, a:focus, input:active, input:focus {
  outline: 0;
}
#mainnav a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
#footer {
  text-align: center;
  font-size: 0.7rem;
}
img {
  width: 100%;
  display: block;
}
section {
  padding: 8rem 0;
}
section h1 {
  font-size: 2rem;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
  color: #f27d5b;
  font-weight: 500;
}
section h2 {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-family: "Noto Sans JP";
  color: #333;
  text-align: left;
  font-weight: 600;
  padding-bottom: 0.5rem;
}
section#sec01 {
  padding: 4rem 0;
}
.title_warp {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.fv_warp {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.fv_img {
  max-width: 310px;
  width: 100%;
  padding: 2rem;
  opacity: 0.8;
}
.inner {
  width: 80%;
  max-width: 880px;
  margin: 0 auto;
}
#sec02 {
  background: #fdf2ed;
}
.inner_text {
  font-size: 1.1rem;
}
.list {
  padding: 1rem 3rem;
  border: 1px #edd4d4 solid;
  margin: 2rem 0;
  border-radius: 0.4rem;
}
.list ul li {
  list-style: auto;
}
.greeting {
  display: flex;
  gap: 5rem;
  align-items: center;
}
.greeting_img {
  width: 30rem;
}
.col4 .img {
  margin: 0 auto 1rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.col4 .text {
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
}
.col4 .text_detail {
  line-height: 1.2;
  font-size: 0.8rem;
  font-family: 'Noto Sans JP';
  color: #6b6b6b;
  margin: 0.5rem auto 1.5rem;
}
@media only screen and (max-width: 799px) {
  .title_warp {
    display: block;
    margin-top: -2rem;
  }
  .fv_warp {
    display: block;
  }
  .fv_img {
    width: 80%;
    max-width: inherit;
    margin: 1rem auto 2rem;
    min-width: inherit;
    padding: 0 2rem 1rem;
  }
  .inner {
    width: 86%;
  }
  section, section#sec01 {
    padding: 2.4rem 0;
  }
  section h1 {
    writing-mode: inherit;
    font-size: 1.4rem;
    text-align: center;
  }
  .greeting {
    display: block;
  }
  .greeting_img {
    width: 20%;
    margin: 1rem auto 1rem;
  }
  .col4 .text {
    font-size: 0.95rem;
  }
  .col4 {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .list {
    padding: 1rem 1rem 1rem 2rem;
    margin: 0.6rem 0;
  }
  .inner_text {
    font-size: 0.9rem;
  }
	.col4 .text_detail {
    margin: 0.5rem auto 0;
}
}
#sec04 {
  background: #fdf2ed;
}
.article {
  overflow: hidden;
  text-align: left;
  font-size: 1.1rem;
}
.article img {
  float: left;
  margin: 5px 20px 20px;
}
.article p {
  margin-bottom: 20px;
}
#sec05 p {
  margin-bottom: 5px;
}
.career_wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.career_wrap .img {
  width: 30%;
  opacity: 0.7;
}
.col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 62%;
}
.col2 dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
}
.col2 dt {
  width: 10%;
  text-align: right;
  font-weight: bold;
}
.col2 dd {
  width: calc(90% - 1rem);
}
#sec06 {
  background: #fdf2ed;
}
.attention {
  padding: 3rem 0;
  text-align: center;
}
.tel {
  font-weight: bold;
  font-size: 1.4rem;
}
.info_wrap {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding-top: 2rem;
  justify-content: space-around;
}
.info {
  width: 50%;
}
.info_text {
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 1rem;
  border: 1px #edd4d4 solid;
  margin: 0.4rem 0;
  border-radius: 0.4rem;
}
.info h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.adress, .business_hours {
  letter-spacing: 1px;
  padding: 1rem 0;
  line-height: 1.7;
  font-size: 0.9rem;
}

.business_hours {
    padding: 0;
}
.map {
  padding-bottom: 12rem;
  height: 0;
  width: 50%;
}
.map iframe {
  width: 100% !important;
  border: 0;
}
#contact {
  height: 47rem;
}
.contact_info {
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  border: 1px #edd4d4 solid;
  letter-spacing: 2px;
  padding: 4rem 0;
  width: 100%;
  border-radius: 0.4rem;
  display: block;
  background: #fff;
}
@media only screen and (min-width: 800px) {
  body {
    font-size: 1.1rem;
  }
  #wrapper {
    width: 100%;
  }
  #content {
    width: 80%;
  }
  #sidebar {
    width: 20%;
    position: fixed;
    top: 0;
    height: 100%;
    right: 0;
    padding: 4%;
    background: #fff;
  }
  a#menu {
    display: none;
  }
  .panel {
    display: block !important;
  }
  #sidebar h1 {
    padding: 30px 0;
    max-width: 150px;
  }
  #mainnav li {
    font-size: 1.1rem;
    padding: 0.6rem 0;
    white-space: nowrap;
  }
  #sns {
    margin-top: 50px;
  }
  #sns li {
    display: inline-block;
    padding-right: 10px;
  }
  #sns a:hover img {
    opacity: .8;
  }
  .col4 {
    text-align: center;
    display: flex;
    gap: 4%;
    flex-wrap: wrap;
  }
  .col4 li {
    width: 22%;
    vertical-align: top;
    text-align: left;
  }
  .map iframe {
    height: 25rem !important;
  }
  #footer {
    padding: 2rem;
  }
}
@media only screen and (min-width: 641px) {
  .col2 li {
    width: 60%;
    vertical-align: top;
  }
  .col2 li:first-child {
    width: 35%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 640px) {
  .innerS {
    width: 94%;
    padding-bottom: 30px;
  }
  .article img {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
  .map iframe {
    width: 96% !important;
    height: 16rem;
  }
}
@media only screen and (max-width: 799px) {
  body {
    font-size: 15px;
  }
	
ã€€	
  #sidebar {
    position: fixed;
    width: 100%;
    z-index: 500;
  }
  #sidebarWrap {
    position: relative;
    width: 100%;
    height: 60px;
    background: #fff;
  }
  #sidebar h1 {
    text-align: center;
    padding-top: 15px;
    z-index: 1000;
    position: absolute;
    height: 50px;
    left: 0;
  }
  #sidebar h1 a {
    display: flex;
    gap: 2vw;
    text-align: center;
    justify-content: center;
  }
  #sidebar h1 a:hover {
    text-decoration: none;
  }
  #sidebar h1 a:active {
    text-decoration: none;
  }
  .header_name {
    line-height: 1.6;
    letter-spacing: 1px;
    font-size: 1.2rem;
    white-space: nowrap;
    font-weight: 500;
  }
  #sidebar h1 img {
    width: auto !important;
    max-height: 35px;
    padding-left: 1rem;
  }
  a#menu {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 10px;
  }
  #menuBtn {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    margin: -1px 0 0 -7px;
    background: #000;
    transition: .2s;
  }
  #menuBtn:before, #menuBtn:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 2px;
    background: #000;
    transition: .3s;
  }
  #menuBtn:before {
    margin-top: -7px;
  }
  #menuBtn:after {
    margin-top: 5px;
  }
  a#menu .close {
    background: transparent;
  }
  a#menu .close:before, a#menu .close:after {
    margin-top: 0;
  }
  a#menu .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  a#menu .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
	.fv_text {}
  .panel {
    width: 100%;
    display: none;
    overflow: hidden;
    position: relative;
    left: 0;
    top: -10px;
    z-index: 100;
  }
  #mainnav {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: right;
  }
  #mainnav ul {
    background: #fff;
    text-align: left;
    padding-bottom: 2rem;
  }
  #mainnav li a {
    position: relative;
    display: block;
    padding: 01rem 3rem;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
  }
  #mainnav li a:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 2rem;
    width: 0.5rem;
    height: 0.5rem;
    margin: -4px 0 0 0;
    /* border-top: solid 2px #000; */
    /* border-right: solid 2px #000; */
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #mainnav #sns li {
    display: inline-block;
  }
  #mainnav #sns li a {
    position: relative;
    display: inline-block;
    padding: 15px 10px 0;
    border: 0;
  }
  #mainnav #sns li a:before {
    border: 0;
  }
  .col4 li {
    display: block;
    text-align: left;
    width: calc(50% - 0.75rem);
  }
  section h2 {
    margin: 0 auto;
    font-size: 1.1rem;
  }
  #contact {
    padding-top: 5rem;
    height: 100%;
  }
  .contact_info {
    font-size: 1.2rem;
    padding: 1rem 2rem 2rem;
    text-align: left;
    white-space: nowrap;
  }
  .contact_info p {
    margin-top: 1rem;
    line-height: 1.3;
  }
  .attention {
    padding: 1rem 0;
    font-size: 0.9rem;
    text-align: left;
  }
  .career_wrap {
    display: block;
  }
  .career_wrap .img {
    margin: 0 auto 1rem;
    width: 36%;
  }
  .col2 {
    width: 100%;
    gap: 0.5rem;
  }
  .article {
    font-size: 0.9rem;
  }
  .info_wrap {
    display: block;
    padding-top: 0;
  }
  .info {
    width: 100%;
  }
  .head {
    font-size: 70%;
  }
  .map {
    width: 100%;
    padding-bottom: 16rem;
    margin-top: 1rem;
  }
  .info h3 {
    font-size: 1rem;
  }
  #footer {
    padding: 1rem;
  }
}
@media only screen and (min-width: 800px) {
  .sp_only {
    display: none;
  }
  .pc_only {
    display: block;
  }
}
@media only screen and (max-width: 799px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}