@charset "utf-8";

/*Google Fonts
---------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/*Font Awesome
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
  --base-color: #dc251b;

  --base-inverse-color: #fff;

  --primary-color: #ffd800;

  --primary-inverse-color: #0e211f;

  --content-space: 2rem;
}

@media screen and (min-width: 900px) {
  :root {
    --content-space: 4rem;
  }
}

@keyframes animation1 {
  0% {
    left: -200px;
  }

  100% {
    left: 0px;
  }
}

@keyframes opa1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes jump1 {
  0%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  90% {
    transform: translateX(-50%) translateY(-10px);
  }
}

body * {
  box-sizing: border-box;
}

html,
body {
  font-size: 13px;
}

@media screen and (min-width: 900px) {
  html,
  body {
    font-size: 15px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3",
    "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;

  font-optical-sizing: auto;
  font-style: normal;
  -webkit-text-size-adjust: none;
  background: var(--base-color);
  color: var(--base-inverse-color);
  line-height: 2;
  overflow-x: hidden;
}

figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
}

iframe {
  width: 100%;
}

input {
  font-size: 1rem;
}

section {
  padding: var(--content-space) 0;
}

a {
  color: inherit;
  transition: 0.3s;
}

a:hover {
  filter: brightness(1.1);
}

#container {
  position: relative;
  animation: opa1 1s 0.4s both;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 var(--content-space);
}

header {
  padding: var(--content-space) 0;
}

@media screen and (max-width: 400px) {
  header {
    padding-top: calc(var(--content-space) + 70px);
  }
}

#logo {
  margin: 0;
  padding: 0;
}

#logo img {
  display: inline-block;
  width: 200px;
}

#global-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 102;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#global-nav-wrapper.scrolled {
  background-color: rgba(220, 37, 27, 0.8);

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  width: 100%;

  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#global-nav-wrapper.scrolled .nav-logo {
  opacity: 1;
  visibility: visible;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

#global-nav {
  display: flex;
  gap: 2rem;
}

#global-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

#global-nav a:hover {
  color: #ffff00;
  transform: scale(1.05);
}

@media screen and (max-width: 899px) {
  #global-nav-wrapper {
    display: none;
  }

  #menubar_hdr {
    display: flex;
  }

  .small-screen #menubar {
    display: block;
  }
}

@media screen and (min-width: 900px) {
  #menubar_hdr {
    display: none !important;
  }

  #global-nav {
    display: flex;
  }
}

#mainimg-box h2 {
  font-size: 5vw;
  line-height: 1.6;
  font-weight: 200;
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
}

#mainimg-box h2 span {
  color: var(--primary-color);
}

#mainimg-box h2::before,
#mainimg-box h2::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 50px;
  border: 1px solid var(--base-inverse-color);
}

#mainimg-box h2::before {
  top: 0px;
  left: 0px;
  border-right: none;
  border-bottom: none;
}

#mainimg-box h2::after {
  bottom: 0px;
  right: 0px;
  border-left: none;
  border-top: none;
}

#mainimg {
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(transparent 20%, var(--primary-color) 20%);
  color: var(--primary-inverse-color);
}

#mainimg .img {
  display: flex;
}

#mainimg .img img {
  padding: 0 1vw;
}

#mainimg .img + p.c {
  padding: 2rem;

  font-size: 1.4rem;
}

.caveat {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

#mainimg .rtl,
#mainimg .ltr {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#mainimg .rtl {
  animation-name: slide-rtl;
}

#mainimg .ltr {
  animation-name: slide-ltr;
}

@keyframes slide-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

#contents {
  flex: 1;
}

#contents ul,
#contents ol {
  margin-left: 2rem;
  margin-right: 2rem;
}

main h2 {
  font-weight: 500;

  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  main h2 {
    font-size: 5vw;
    font-weight: 500;
    white-space: nowrap;
    max-width: 90vw;
  }
}

.message {
  line-height: 3;
}

@media screen and (min-width: 700px) {
  .message {
    text-align: center;
  }
}

.btn5-container {
  position: relative;
  margin-top: 40px;
}

a.btn5 {
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(#ffec81, var(--primary-color));

  color: #333;

  padding: 1rem 3rem;

  font-size: 1.3rem;

  border-radius: 5px;
}

a.btn5:hover {
  transform: scale(1.02);
}

.btn5-container .fukidasi {
  background: #fff;

  color: #333;

  border: 2px solid var(--primary-color);

  padding: 0.2rem 2rem;

  border-radius: 100px;

  position: absolute;
  top: -30px;

  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);

  animation: jump1 2s infinite;
}

.btn5-container .fukidasi::before {
  content: "";
  position: absolute;
  bottom: -8px;

  left: 50%;
  transform: translateX(-50%) rotate(315deg);
  width: 10px;

  height: 10px;

  background: #fff;

  border-left: 2px solid var(--primary-color);

  border-bottom: 2px solid var(--primary-color);
}

.btn5.border-radius {
  border-radius: 100px;
}

.list-grid .list * {
  margin: 0;
  padding: 0;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 1rem;

  box-sizing: border-box;
}

@media screen and (min-width: 800px) {
  .list-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
  }
}

.list-grid .list {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr;

  overflow: hidden;
}

.list-grid .list p {
  font-size: 0.85rem;

  line-height: 1.5;
}

/*「商品ラインナップ」ブロックで使っているアイコン（「NEW」や「UP」）
---------------------------------------------------------------------------*/

.list-grid .icon-bg1,
.list-grid .icon-bg2 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  overflow: hidden;
  position: absolute;
  left: 0px;

  top: 0px;

  font-size: 0.85rem;

  width: 10rem;

  padding-top: 2rem;

  text-align: center;

  transform: rotate(-45deg) translate(-2.4rem, -3rem);

  box-shadow: 0px 5px #fff;
}

.list-grid .icon-bg1 {
  background: var(--primary-color);

  color: var(--primary-inverse-color);
}

.list-grid .icon-bg2 {
  background: #1c31ff;

  color: #fff;
}

/*スライドアップの装飾画像
---------------------------------------------------------------------------*/

.bg-slideup {
  background-image: url("../images/back001.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;

  border-radius: 0px 15vw 0px 15vw;
}

/*「お客様の声」ブロック
---------------------------------------------------------------------------*/

.bg1 h2.c {
  color: #c00;
}

.list-yoko-scroll * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.list-yoko-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;

  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 1rem 1rem;
}

.list-yoko-scroll::-webkit-scrollbar {
  display: none;
}

.list-yoko-scroll .list {
  flex: 0 0 80%;

  max-width: 500px;
  scroll-snap-align: start;
  flex-shrink: 0;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (min-width: 600px) {
  .list-yoko-scroll .list {
    flex: 0 0 28%;
    max-width: none;
  }
}

.list-yoko-scroll figure {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.list-yoko-scroll h4 {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #8b0000;
}

.list-yoko-scroll .text {
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
  color: #333;
  padding: 0 0.5rem;
}

@media screen and (min-width: 768px) {
  .list-yoko-scroll {
    overflow-x: scroll;

    scrollbar-width: auto;
  }

  .list-yoko-scroll::-webkit-scrollbar {
    display: block;

    height: 15px;
  }

  .list-yoko-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .list-yoko-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .list-yoko-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}

/*２カラムレイアウト用（下のお知らせブロック用で使っています）
---------------------------------------------------------------------------*/
.news-c2 * {
  margin: 0;
  padding: 0;
}

.news-c2 .title {
  margin-bottom: 2rem;

  text-align: center;
}

@media screen and (min-width: 600px) {
  .news-c2 {
    display: flex;
    gap: 2rem;
  }

  .news-c2 .title {
    margin-bottom: 0;

    text-align: left;

    width: 30%;
  }

  .news-c2 .text {
    flex: 1;
  }
}

/*お知らせブロック
---------------------------------------------------------------------------*/

.news dd {
  padding-bottom: 1rem;
}

.news dt span {
  display: inline-block;
  text-align: center;
  line-height: 1.8;

  padding: 0 1rem;

  width: 8rem;

  transform: scale(0.8);

  background: #fff;

  color: #777;

  border: 1px solid #999;
}

.news .icon-bg1 {
  border-color: transparent;

  background: var(--primary-color);

  color: var(--primary-inverse-color);
}

.news .icon-bg2 {
  border-color: transparent;

  background: #006acd;

  color: #fff;
}

@media screen and (min-width: 700px) {
  .news {
    display: grid;

    grid-template-columns: auto 1fr;
  }
}

/*list-c2（お問い合わせ）
---------------------------------------------------------------------------*/
.list-c2 > a {
  text-decoration: none;
  display: block;
}

@media screen and (min-width: 600px) {
  .list-c2 {
    display: flex;
  }
}

.list-c2 .list {
  text-align: center;
  position: relative;
  overflow-y: hidden;
  color: #fff;

  padding: 5rem 2rem;

  margin: 1rem 0;
}

@media screen and (min-width: 600px) {
  .list-c2 > * {
    flex: 1;
  }

  .list-c2 .list {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .list-c2 > a .list {
    height: 100%;
  }
}

.list-c2 .list.image1 {
  background: url("../images/under001.jpg") no-repeat center center / cover;
}

.list-c2 .list.image2 {
  background: url("../images/under002.jpg") no-repeat center center / cover;
}

.list-c2 h4 {
  font-weight: 200;

  line-height: 1.2;
}

.list-c2 h4 .main-text {
  display: block;
  font-size: 3rem;

  padding-top: 1.5rem;

  padding-bottom: 3rem;
}

@media screen and (min-width: 600px) {
  .list-c2 h4 .main-text {
    font-size: 4rem;
  }
}

.list-c2 h4 .sub-text {
  position: relative;
  padding: 0 5rem;
}

.sub-text::before {
  left: 0;
}

.sub-text::after {
  right: 0;
}

.list-c2 h4 .sub-text::before,
.list-c2 h4 .sub-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;

  border-top: 1px solid #fff;
}

.list-c2 .list .text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
}

.list-c2 .list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);

  transition: transform 0.3s 0.1s;
}

.list-c2 .list:hover::before {
  transform: translateY(100%);
}

.list-c2 .list .text h4,
.list-c2 .list .text h4 .sub-text,
.list-c2 .list .text h4 .main-text,
.list-c2 .list .text p {
  color: #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: none;
}

.list-c2 .list:hover .text h4,
.list-c2 .list:hover .text h4 .sub-text,
.list-c2 .list:hover .text h4 .main-text,
.list-c2 .list:hover .text p {
  color: #fff;
  text-shadow: 2px 2px 1.5px rgba(0, 0, 0, 1);
}

/*フッター
---------------------------------------------------------------------------*/
footer * {
  margin: 0;
  padding: 0;
}

footer ul {
  list-style: none;
}

footer {
  background: #222;

  color: #ccc;

  padding: var(--content-space);
}

footer .logo {
  width: 300px;
}

footer div.footer1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer div.footer2 {
  flex: 1;
}

@media screen and (min-width: 700px) {
  footer {
    display: flex;
    gap: 2rem;
  }

  footer div.footer1 {
    text-align: left;
    width: 40%;
  }

  footer div.footer2 {
    margin-bottom: 0;
  }
}

/*SNSアイコン
---------------------------------------------------------------------------*/
.sns1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sns1 i {
  font-size: 30px;
}

/*Google Map用（※キッチン雑貨テーマにて使用）
---------------------------------------------------------------------------*/
.iframe-box1 {
  width: 100%;
  height: 0;
  padding-top: 56.25% !important;

  position: relative;
  overflow: hidden;
}

.iframe-box1 iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/*フッターメニュー設定（※お取り寄せグルメテーマにて使用）
---------------------------------------------------------------------------*/

#footermenu {
  font-size: 0.85rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#footermenu a {
  text-decoration: none;
  color: inherit;
  opacity: 0.6;
}

#footermenu a:hover {
  opacity: 1;
}

#footermenu ul {
  margin: 0;
  list-style: none;
  padding: 0 2px;
  flex: 1;
}

#footermenu .title {
  font-weight: bold;

  padding-bottom: 5px;
}

#footermenu li + .title {
  margin-top: 1.5rem;
}

/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr * {
  margin: 0;
  padding: 0;
}

.pr a {
  text-decoration: none;
  display: block;
  background: #555;
  color: #ccc;
  text-align: right;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: bold;
  margin-right: 0.5em;
}

/*ポップアップ
---------------------------------------------------------------------------*/
#popup * {
  margin: 0;
  padding: 0;
}

#popup {
  display: none;
  font-size: 0.9rem;

  padding: 1rem 2rem;

  position: fixed;
  z-index: 1001;
  right: 30px;

  bottom: 100px;

  width: 300px;

  background: #fff;

  color: #555;

  border: 3px solid #333;

  border-radius: 10px;

  overflow: hidden;
}

#popup .close-btn {
  display: block;
  width: 50px;

  line-height: 50px;

  text-align: center;
  position: absolute;
  right: 0px;

  top: 0px;

  background: #ff0000;

  color: #fff;

  cursor: pointer;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
  display: none;

  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 0px;

  top: 0px;

  width: 70px;

  height: 70px;

  background: none;

  transform-origin: right top;
  transform: scale(1);
}

#menubar_hdr.ham {
  background: #ff0000;
}

#menubar_hdr span {
  display: block;
  position: absolute;
  left: 18px;
  width: 35px;
  height: 2px;

  background: #fff;

  transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
  top: 24px;
}

#menubar_hdr span:nth-of-type(2) {
  top: 34px;
}

#menubar_hdr span:nth-of-type(3) {
  top: 44px;
}

#menubar_hdr.ham span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

#menubar_hdr.ham span:nth-of-type(2) {
  opacity: 0;
}

#menubar_hdr.ham span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

.small-screen #menubar_hdr {
  display: flex;
}

/*開閉メニュー
---------------------------------------------------------------------------*/

.small-screen #menubar {
  animation: animation1 0.2s both;
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 70%;

  height: 100%;
  padding: 100px var(--content-space) 50px;

  background: var(--primary-color);

  color: var(--primary-inverse-color);
}

.small-screen #menubar {
  display: none;
}

.small-screen #menubar a {
  display: block;
  text-decoration: none;
  background: var(--base-color);

  color: var(--base-inverse-color);

  margin-bottom: 1rem;

  padding: 1rem 2rem;
}

.small-screen #menubar ul ul a {
  border: none;
  margin-left: 3.8rem;
}

a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  content: "\f078";

  margin-right: 0.3em;

  transform: scale(0.7);

  display: inline-block;
}

a.ddmenu {
  cursor: default;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}

.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  animation: opa1 1s 0.4s both;
  position: fixed;

  right: 20px;

  bottom: 50px;

  font-size: 1.5rem;

  background: var(--primary-color);

  color: var(--primary-inverse-color);
  width: 60px;

  line-height: 60px;

  border-radius: 50%;
}

/*svgアニメーション（大きな背景ラインアニメーション）
このcssの他、htmlの一番下の「SVGアニメーション」というブロックで指定があります。
---------------------------------------------------------------------------*/
#kazari1 {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke: #fff;

  stroke-width: 30;

  width: 100%;
}

/*bg1背景色（「お客様の声」ブロックで使用）
---------------------------------------------------------------------------*/
.bg1 {
  background: var(--primary-color);

  color: var(--primary-inverse-color);
}

/*sectionの両サイドの余白を相殺するスタイル
---------------------------------------------------------------------------*/
.margin-lr0 {
  margin: 0;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.color-check,
.color-check a {
  color: #ffcc00 !important;
}

.l {
  text-align: left !important;
}

.c {
  text-align: center !important;
}

.r {
  text-align: right !important;
}

.ws {
  width: 95%;
  display: block;
}

.wl {
  width: 95%;
  display: block;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  color: #888;
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}

.small {
  font-size: 0.75em;
}

.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}

.pc {
  display: none;
}

.dn {
  display: none !important;
}

.block {
  display: block !important;
}

@media screen and (min-width: 900px) {
  .ws {
    width: 48%;
    display: inline;
  }

  .sh {
    display: none;
  }

  .pc {
    display: block;
  }
}

.about-divider {
  width: 80%;

  height: 0.5px;

  background-color: #fff;
  margin: 5px auto;

  border-radius: 1px;
}

h2.about-top {
  font-size: 2.8em;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-bottom: 1em;
  font-weight: bold;
}

.about-sub {
  text-align: center;
  font-size: 1.8em;
  color: #fff;
  margin-top: -0.5em;
  margin-bottom: 2em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.content-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px auto;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
  color: #c62828;
}

.fade-left {
  opacity: 0;
  transform: translateX(-20px);

  transition: opacity 1s ease, transform 1s ease;
}

.fade-left.inview {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(20px);

  transition: opacity 1s ease, transform 1s ease;
}

.fade-right.inview {
  opacity: 1;
  transform: translateX(0);
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.content-block.left {
  margin-left: 10%;
  margin-right: auto;
}

.content-block.right,
.content-block.reverse {
  margin-left: auto;
  margin-right: 10%;
}

@media screen and (max-width: 768px) {
  .content-block.left,
  .content-block.right,
  .content-block.reverse {
    margin-left: auto;
    margin-right: auto;
  }

  .about-sub {
    white-space: nowrap;

    font-size: 4.5vw;

    max-width: 90vw;

    overflow: hidden;

    text-overflow: ellipsis;
  }
}

.text-area {
  flex: 1;
  min-width: 300px;
  color: #333;
  margin-left: 4%;
  margin-right: 2%;
}

.text-area h2 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

.text-area p {
  font-size: 1.2em;
  line-height: 1.8;
}

.photo-area {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.photo-area img {
  max-width: 100%;
  max-width: 350px;
  height: auto;
  border: 1px solid #ccc;
  object-fit: cover;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.inview {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .content-block,
  .content-block.reverse {
    flex-direction: column;
  }

  .text-area,
  .photo-area {
    width: 100%;
  }

  .text-area h2 {
    font-size: 1.5em;
  }

  .text-area p {
    font-size: 0.95em;
  }

  .photo-area img {
    max-width: 100%;
  }
}

.footer03 {
  position: relative;
  width: 100%;
  height: 40px;
}

.footer03 .copy {
  margin: 0 auto 0 auto;
  padding-top: 12px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

@media only screen and (max-width: 992px) {
  .footer03 {
    display: none;
  }
}

.footer03sp {
  margin-top: 0;
  position: relative;
  width: 100%;
  height: 30px;

  z-index: 88;
}

.footer03sp .copy {
  margin: auto;
  margin-top: 0;
  width: 100%;
  max-width: 360px;
  height: 20px;
  text-align: center;
  padding-top: 8px;
  font-size: 10px;
  line-height: 12px;
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .footer03sp {
    display: none;
  }

  .Navsp ul {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    padding-top: 0px;
    list-style: none;
  }
}

.item dt {
  color: #a00;

  font-weight: bold;
}

.contact-form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #c00;
  color: white;
  border: none;
  cursor: pointer;
}

.thanks-section {
  max-width: 600px;
  margin: 100px auto;
  text-align: center;
  padding: 2rem;
  font-family: sans-serif;
  color: #333;
}

.thanks-section h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.thanks-section p {
  font-size: 1rem;
  color: #fff;
}
