@charset "UTF-8";
#top-image {
  background: url("../img/top/top2025-7.jpg") no-repeat center center/cover;
  position: relative;
  padding: 4rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
#top-image p {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2b2b2b;
  /* マスクで上下左右をぼかす */
  -webkit-mask-image: radial-gradient(ellipse at center, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
#top-image p span {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #003c3c;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  #top-image {
    padding: 6rem 2rem;
  }
  #top-image p {
    font-size: 1.1rem;
  }
  #top-image p span {
    font-size: 1.6rem;
  }
}

#appeal {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  color: #333;
}
#appeal p {
  font-size: 1rem;
  margin: 0.5rem 0;
}
#appeal p span {
  font-weight: bold;
  color: #007070;
  font-size: 1.2rem;
}
#appeal h1 {
  font-size: 1.4rem;
  margin: 1rem 0;
  color: #004d4d;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.02rem;
}
@media screen and (min-width: 768px) {
  #appeal h1 {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 961px) {
  #appeal p {
    font-size: 1.1rem;
  }
  #appeal p span {
    font-size: 1.3rem;
  }
  #appeal h1 {
    font-size: 2.4rem;
  }
}

#top_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #333;
  margin: 4rem 0;
}
#top_contact > div {
  font-size: 1.2rem;
}
#top_contact > div a {
  display: inline-block;
  background-color: #004d4d;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  transition: background-color 0.3s ease;
}
#top_contact > div a:hover {
  background-color: #007070;
}
#top_contact > div span {
  font-weight: bold;
  font-size: 1.3rem;
  color: #004d4d;
  margin-left: 0.5rem;
}
#top_contact > p {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}
@media screen and (min-width: 961px) {
  #top_contact {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  #top_contact > p {
    margin-left: 2rem;
    margin-top: 0;
  }
}

#about_us {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
}
#about_us > div:first-child {
  width: 100%;
  height: 100%;
}
#about_us > div:first-child img {
  width: 60%;
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#about_us > div:last-child {
  width: 100%;
  font-family: "Yu Mincho", "Hiragino Mincho Pro", serif;
  line-height: 2;
  font-size: 1rem;
  padding: 1rem;
  writing-mode: horizontal-tb;
  text-orientation: initial;
}
#about_us > div:last-child p {
  margin: 0rem 0;
}
#about_us > div:last-child p.ab {
  color: cadetblue;
}
#about_us > div:last-child p.daimei {
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  #about_us {
    position: relative;
    flex-direction: row;
    height: 35rem;
  }
  #about_us > div:first-child {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #about_us > div:first-child img {
    height: 100%;
    width: auto;
    margin: 0;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.6;
  }
  #about_us > div:last-child {
    width: 100%;
    z-index: 2;
    position: relative;
    padding: 2rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.2rem;
    background: transparent;
  }
  #about_us > div:last-child p.daimei {
    font-size: 1.4rem;
    margin-left: 3rem;
  }
}

#information {
  padding: 2rem 1rem;
  max-width: 960px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #333;
}
#information .info {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  border-left: 4px solid #007070;
  padding-left: 0.7rem;
  margin-bottom: 1.2rem;
  color: #004d4d;
}
#information #infom {
  margin-top: 1rem;
}
#information #infom p {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0.8rem 0;
  line-height: 1.7;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 0.4rem;
  /* 本文 */
}
#information #infom p span {
  flex: 0 0 6rem;
  color: #666;
  font-size: 0.9rem;
  text-align: left;
}
#information #infom p::after {
  content: "";
  flex: 1;
}
#information > p:last-of-type {
  margin-top: 1.5rem;
  text-align: right;
}
#information > p:last-of-type a {
  color: #007070;
  text-decoration: none;
  font-weight: bold;
}
#information > p:last-of-type a:hover {
  text-decoration: underline;
  color: #004d4d;
}

#irai {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 40px 0;
  margin: 40px 0;
}
#irai .irai_dai {
  color: red;
  font-size: 1.6rem;
  padding-bottom: 20px;
}

.nakawaku {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

#pick_up {
  margin-top: 20px;
}
#pick_up h2 {
  font-weight: bold;
  font-size: 2rem;
}
#pick_up p {
  color: cadetblue;
}

.top_banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: #f8f8f8;
  border-radius: 1rem;
  margin-top: 2rem;
  width: 100%;
}
.top_banner > div {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.top_banner > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.top_banner > div a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 1rem;
}
.top_banner > div a h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #004d4d;
  text-align: center;
}
.top_banner > div a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 0.8rem auto;
  display: block;
  border-radius: 0.5rem;
}
.top_banner > div a p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .top_banner div.big_banner {
    width: 100%;
    grid-column: 1/-1;
  }
  .top_banner div.big_banner a img {
    width: 60%;
  }
}

#purposeh2 {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #004d4d;
  width: 100%;
}

.by-purpose {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 1rem;
}
.by-purpose.size {
  grid-template-columns: repeat(3, 1fr);
}
.by-purpose a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.by-purpose a > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.by-purpose a > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.by-purpose a > div img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.by-purpose a > div div {
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
}
.by-purpose a > div div i {
  font-style: normal;
  color: #007070;
}
.by-purpose a > div div p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: normal;
  color: #555;
  line-height: 1.4;
}
.by-purpose a .middle_purpose {
  grid-column: span 1;
}
.by-purpose a .small_purpose {
  font-size: 1rem;
}
.by-purpose a .small_purpose div {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .by-purpose {
    grid-template-columns: repeat(5, 1fr);
  }
  .by-purpose.size {
    grid-template-columns: repeat(5, 1fr);
  }
}

.main .flexbox {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}
.main .flexbox_inbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.main .flexbox_inbox:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.main .flexbox_inbox a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.main .flexbox_inbox a > div:nth-of-type(1) {
  flex: 0 0 270px;
  max-width: 270px;
}
.main .flexbox_inbox a > div:nth-of-type(1) img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.main .flexbox_inbox a > div:nth-of-type(2) {
  flex: 1;
  padding: 1rem;
}
.main .flexbox_inbox a > div:nth-of-type(2) h3 {
  font-size: 1.2rem;
  color: #004d4d;
  margin: 0 0 0.5rem;
}
.main .flexbox_inbox a > div:nth-of-type(2) h3 span {
  font-size: 0.9rem;
  color: #888;
  margin-left: 0.5rem;
}
.main .flexbox_inbox a > div:nth-of-type(2) p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.main h2 {
  text-align: center;
  font-size: 1.6rem;
  color: #004d4d;
  margin-top: 6rem;
  margin-bottom: 0.5rem;
}
.main .description {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
@media screen and (max-width: 600px) {
  .main .flexbox_inbox a {
    flex-direction: column;
  }
  .main .flexbox_inbox a > div:nth-of-type(1) {
    max-width: 100%;
    width: 100%;
  }
  .main .flexbox_inbox a > div:nth-of-type(1) img {
    border-radius: 1rem 1rem 0 0;
  }
  .main .flexbox_inbox a > div:nth-of-type(2) {
    padding: 1rem;
  }
}
.main hr {
  color: #ccc;
}
.main #annai {
  padding: 2rem 1rem;
}
.main #annai h2 {
  text-align: center;
  font-size: 1.6rem;
  color: #004d4d;
  margin-bottom: 2rem;
}
.main #annai #annai-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main #annai #annai-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.main #annai .main-con {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #004d4d;
}
.main #order {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 2rem auto;
  border: 1px solid #ddd;
  border-radius: 1rem;
  /* スクロールバー装飾（Chrome対応） */
}
.main #order .midashi {
  font-size: 1.4rem;
  font-weight: bold;
  color: #004d4d;
  margin-bottom: 1rem;
  text-align: left;
  border-bottom: 2px solid #004d4d;
  padding-bottom: 0.3rem;
}
.main #order ul {
  max-height: 200px; /* ← 高さ制限 */
  overflow-y: auto;
  padding-right: 0.5rem; /* スクロールバーの余白 */
  margin: 0;
  padding-left: 1rem;
  list-style: disc;
}
.main #order ul li {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.main #order ul li a {
  color: #007070;
  text-decoration: underline;
  font-weight: bold;
}
.main #order ul li a:hover {
  color: #004d4d;
}
.main #order ul::-webkit-scrollbar {
  width: 10px;
}
.main #order ul::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.sotowaku_color {
  background-color: #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
}
.sotowaku_color .oowaku {
  background-color: inherit;
}
.sotowaku_color .oowaku #h_hanbai {
  margin-top: 3rem;
}
.sotowaku_color .oowaku .kiseihin_flexbox {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .sotowaku_color .oowaku .kiseihin_flexbox {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.sotowaku_color .oowaku .kiseihin_inbox {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sotowaku_color .oowaku .kiseihin_inbox {
    width: calc(50% - 1rem);
  }
}
.sotowaku_color .oowaku .kiseihin_inbox h3 {
  font-size: 1.3rem;
  color: #004d4d;
  margin-bottom: 0.5rem;
}
.sotowaku_color .oowaku .kiseihin_inbox p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.sotowaku_color .oowaku .kiseihin_inbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sotowaku_color .oowaku .kiseihin_inbox ul li {
  margin-bottom: 0.5rem;
}
.sotowaku_color .oowaku .kiseihin_inbox ul li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #e0f0ef;
  color: #004d4d;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  transition: background-color 0.3s;
}
.sotowaku_color .oowaku .kiseihin_inbox ul li a:hover {
  background-color: #c5e2e1;
}

.main #tokucho {
  font-size: 1.4rem;
  text-align: center;
  color: #004d4d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.main .griditem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 1rem;
}
.main .griditem a {
  text-decoration: none;
  background-color: #f0f8f8;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  display: block;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.main .griditem a:hover {
  background-color: #d8eeee;
  transform: translateY(-2px);
}
.main .griditem a p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #007070;
}
@media screen and (min-width: 768px) {
  .main .griditem {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 961px) {
  .main .griditem {
    grid-template-columns: repeat(4, 1fr);
  }
}/*# sourceMappingURL=top_scss.css.map */