@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #fff;
  --color-gray: #ddd;
  --color-gray-light: #f5f5f5;
  --color-green: #33d677;
  --color-yellow: #fec601;
  --color-theme: #eca283;
  --color-theme-accent: #332f26;
  --color-theme-light: #fed6ca;
  --color-beige: #fff0cc;
  --color-pink: #ed145b;
  --font-base: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-base);
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 62.5%;
  color: #000;
}
@media only screen and (max-width: 599px) {
  html {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
  }
  body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: auto;
    min-height: 100%;
  }
}

/* Reset for all elements */
/* prettier-ignore */
div,span,object,iframe,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-style: normal;
}

a {
  color: var(--color-theme);
  text-decoration: none;
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Media Queries */

/*PCでは非表示*/
@media only screen and (min-width: 1025px) {
  .pc {
    display: none !important;
  }
}

/*タブレット大のみ表示*/
.tab-s-only {
  display: none !important;
}
.tab-l-only {
  display: none !important;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .tab-l-only {
    display: inline !important;
  }
}

/*タブレット大のみ非表示*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .tab-l {
    display: none !important;
  }
}

/*タブレット小では非表示*/
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .tab-s {
    display: none !important;
  }
  .tab-s-only {
    display: inline !important;
  }
}

/*タブレット小以下では非表示*/
@media only screen and (max-width: 768px) {
  .tab-s-down {
    display: none !important;
  }
}

/*スマホでは非表示*/
@media only screen and (max-width: 599px) {
  .smp {
    display: none !important;
  }
}

/* 基本のブレイクポイント設定 */
@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
}

/* Form Elements */
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='number'],
textarea,
select {
  border-radius: 3px;
  border: solid 1px #bfbfbf;
  background-color: #fff;
  padding: 1rem;
  box-sizing: border-box;
  margin: 5px 0;
}

select {
  min-height: 40px;
}

@media only screen and (max-width: 1025px) {
  input[type='text'],
  input[type='tel'],
  input[type='email'],
  textarea {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  /* 幅を制御したい特定のinput要素に対して */
  input[type='text'].full-width,
  input[type='tel'].full-width,
  input[type='email'].full-width,
  textarea.full-width {
    width: 100%;
  }
}
/* Input Styles */
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

input:focus::placeholder {
  color: transparent;
}

.radio-group {
  display: flex;
  gap: 2rem;
}

@media only screen and (max-width: 1024px) {
  .radio-group {
    display: flex;
    gap: 1rem;
  }
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* フォーカス時のスタイル */
.radio-group input[type='radio']:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* ラジオボタンのサイズ調整（必要に応じて） */
.radio-group input[type='radio'] {
  width: 1.2em;
  height: 1.2em;
}

/* アクセシビリティのための非表示クラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* チェックボックスグループのスタイル */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkbox-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* フォーカス時のスタイル */
.checkbox-item input:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* ホバー時のスタイル */
.checkbox-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Utility Classes */
.center {
  text-align: center;
}
.center_img img {
  margin-inline: auto;
}
.bold {
  font-weight: 900;
}

/* Colors */
.red {
  color: var(--color-red);
}
.blue {
  color: var(--color-blue);
}
.green {
  color: var(--color-theme-second);
}
.orange {
  color: var(--color-orange);
}
.yellow {
  color: var(--color-yellow);
}
.momo {
  color: var(--color-theme);
}
.pink {
  color: deeppink;
}

/* Font Sizes */
.txt_s {
  font-size: 1rem;
}
.txt12 {
  font-size: 1.2rem;
}

/* Font Families */

.noto_san {
  font-family: 'Noto Sans JP', sans-serif;
}

/* Opacity Animation */
.opa {
  transition: var(--transition);
  backface-visibility: hidden;
}

.opa:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  backface-visibility: hidden;
}

/* Header Styles */
.site-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999; /* z-indexを高くして最前面に表示 */
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1); /* トランジションを滑らかに調整 */
}

@media only screen and (max-width: 1024px) {
  html {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
  }
  body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: auto;
    min-height: 100%;
  }
  .site-header {
    width: 100%;
    padding: 0;
    z-index: 9999;
  }
}

.header-inner {
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Header Responsive */

@media only screen and (max-width: 1024px) {
  .header-inner {
    width: 100%;
    padding: 2rem;
  }
}

.h_txt {
  font-size: 1.4rem;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
  .h_txt {
    width: 80%;
  }
}

@media only screen and (max-width: 599px) {
  .h_txt {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.logo_nav_box {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 20px;
  max-width: 50%;
}

.h_logo {
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .logo_nav_box {
    grid-template-columns: 200px 1fr;
  }
}

.h_logo img {
  width: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media only screen and (max-width: 360px) {
  .h_logo img {
    max-width: 180px;
    margin: auto;
  }
}

/* Navigation */
.g-nav {
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.g-nav > ul.menu_list {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.g-nav > ul.menu_list > li {
  position: relative;
  list-style: none;
}

@media only screen and (min-width: 1025px) {
  .g-nav > ul.menu_list > li:not(:last-child)::after {
    content: '/';
    font-size: 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-style: normal;
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-theme-accent);
  }
}

.g-nav > ul.menu_list > li > a {
  position: relative;
  display: block;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-theme-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.g-nav > ul.menu_list > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-pink);
  transition: width 0.3s ease;
}

.g-nav > ul.menu_list > li > a:hover {
  color: var(--color-pink);
}

.g-nav > ul.menu_list > li > a:hover::before {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .navbtn {
    display: block;
  }

  .g-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .g-nav.show {
    opacity: 1;
    visibility: visible;
  }

  .g-nav .menu_list {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    width: 90%;
    margin: 0 auto;
  }

  .g-nav.show .menu_list {
    opacity: 1;
    transform: translateY(0);
  }

  .g-nav .menu_list > li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .g-nav.show .menu_list > li {
    opacity: 1;
    transform: translateY(0);
  }

  .g-nav .sns_link {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  }

  .g-nav.show .sns_link {
    opacity: 1;
    transform: translateY(0);
  }

  .g-nav .sns_link i {
    color: var(--color-theme-accent);
    font-size: 2.4rem;
  }

  .g-nav .sns_link svg {
    width: 24px;
    height: 24px;
    fill: var(--color-theme-accent);
  }

  .h_tool {
    background-color: #fff;
    padding: 15px;
    display: inline-block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
  }
}

/* スマホジナビボタン */
.navbtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 30px;
}

/*アクセシビリティ対策*/
.navbtn .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ハンバーガーメニュー */
.navbtn .hamburger,
.navbtn .hamburger::before,
.navbtn .hamburger::after {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.navbtn .hamburger {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbtn .hamburger::before,
.navbtn .hamburger::after {
  content: '';
  width: 100%;
}

.navbtn .hamburger::before {
  top: -8px;
}

.navbtn .hamburger::after {
  bottom: -8px;
}

/* アクティブ時 */
.navbtn.active .hamburger {
  background: transparent;
}

.navbtn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.navbtn.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Responsive Layout */
@media only screen and (min-width: 1025px) {
  .h_tool,
  .navbtn {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .h_tool {
    background-color: #fff;
    padding: 15px;
    display: inline-block;
    position: fixed;
    top: 0;
    right: 0;
  }
}

/* スマホグローバルナビ */
@media only screen and (max-width: 1024px) {
  .navbtn {
    display: block;
  }

  .g-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .g-nav.show {
    opacity: 1;
    visibility: visible;
  }

  .g-nav > ul {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    width: 90%;
    margin: 0 auto;
  }

  .g-nav.show > ul {
    opacity: 1;
    transform: translateY(0);
  }

  .g-nav > ul.menu_list > li {
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .g-nav.show > ul > li {
    opacity: 1;
    transform: translateY(0);
  }

  .h_tool {
    background-color: var(--color-theme);
    padding: 15px;
    display: inline-block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
  }
}

.sns_link {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

@media only screen and (min-width: 1025px) {
  .site-header .sns_link {
    position: absolute;
    top: 3rem;
    right: 3rem;
  }
}
@media only screen and (max-width: 1024px) {
  .g-nav .sns_link {
    margin-top: 4rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  }

  .g-nav.show .sns_link {
    opacity: 1;
    transform: translateY(0);
  }

  .sns_link i {
    color: var(--color-theme-accent);
  }

  .sns_link svg {
    fill: var(--color-theme-accent);
  }
}

.sns_link a:hover i {
  color: var(--color-theme);
}

.sns_link i {
  font-size: 3rem;
  color: #fff;
}

.sns_link svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.sns_link svg:hover {
  fill: var(--color-theme);
}

/*MARK:mainimage*/

#mainimage {
  width: 100%;
  height: 100vh;
  background-image: url(../images/mainimage.jpg);
  background-size: cover;
  background-position: center;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

/* #mainimage h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12rem;
  color: var(--color-theme);
  word-break: break-all;
} */

.main-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade-in-text {
  opacity: 0;
  color: #fff;
  position: absolute;
  font-size: 9rem;
  text-align: center;
  letter-spacing: -0.5px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Newsreader', 'Shippori Mincho', serif;
  font-weight: 500;
  font-style: normal;
  padding: 0 2rem;
  line-height: 1.4;
  text-shadow: 2px 2px 2px rgb(0, 0, 0, 0.6);
}

.text1 {
  animation: smoothFade 28s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.text2 {
  animation: smoothFade 28s infinite cubic-bezier(0.4, 0, 0.2, 1) 7s;
}
.text3 {
  animation: smoothFade 28s infinite cubic-bezier(0.4, 0, 0.2, 1) 14s;
}
.text4 {
  animation: smoothFade 28s infinite cubic-bezier(0.4, 0, 0.2, 1) 21s;
}

.text1 em {
  letter-spacing: -0.1em;
  margin: 0 -0.3em;
  font-style: normal;
  display: inline-block;
}

@keyframes smoothFade {
  0%,
  100% {
    opacity: 0;
  }
  2% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  23% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
}

@media only screen and (max-width: 1024px) {
  #mainimage {
    background-image: url(../images/mainimage_tab.jpg);
  }
  #mainimage h2 {
    font-size: 6rem;
    color: #000;
    text-shadow: initial;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 599px) {
  #mainimage h2 {
    font-size: 4.4rem;
  }
}

@media only screen and (max-height: 500px) {
  .logo_nav_box {
    grid-template-columns: 140px 1fr;
  }
  #mainimage {
    background-image: url(../images/mainimage.jpg);
  }
  #mainimage h2 {
    font-size: 4.5rem;
    color: var(--color-theme);
  }
  .tab-smp {
    display: none;
  }
}

/* Main Content */
main {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

section {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.main-content {
  width: 1200px;
  margin: 0 auto;
  padding: 14rem 0;
  line-height: 1.5;
  font-size: 1.8rem;
}

.main-content h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 6rem;
  margin-bottom: 4rem;
}

.main-content p,
.main-content > dl > dd {
  margin-bottom: 1.5rem;
}

.main-content > ol {
  margin-left: 3.5rem;
}

.main-content > ol > li {
  list-style-type: decimal;
  margin-bottom: 1.5rem;
}
.main-content p a {
  text-decoration: underline;
}

/* Main Content Responsive */
@media only screen and (min-width: 1025px) {
  .main-content {
    width: 1200px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-content {
    width: 100%;
    padding: 14rem 8rem;
  }
}

@media only screen and (max-width: 599px) {
  .main-content {
    padding: 3rem;
  }
}

#about,
#shop {
  background-color: var(--color-beige);
}

#about .main-content {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 500px;
  gap: 3rem;
}

#about .main-content .img_box img {
  border-radius: 50%;
}

.title01 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.6rem;
}

#menu,
#news {
  background-color: var(--color-theme-accent);
}

#menu .main-content h3,
#news .main-content h3 {
  color: #fff;
}

.item_list {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

@media only screen and (max-width: 768px) {
  .item_list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.item_list li img {
  margin-bottom: 3rem;
  transition: var(--transition);
}

.item_list li img:hover {
  opacity: 0.7;
  border-radius: 15px;
}

.item_txt,
.news_txt {
  color: #fff;
}

.item_txt .price {
  color: var(--color-theme);
}

#about .main-content,
#shop .main-content {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 3rem;
}

@media only screen and (max-width: 1024px) {
  #about .main-content,
  #shop .main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    justify-items: center;
  }
}

#shop .main-content h4 {
  margin-bottom: 3rem;
}

.shop-info {
  display: grid;
  gap: 20px;
  border-top: dashed 1px #000;
  padding-top: 20px;
  margin-top: 3rem;
}

.shop-info div {
  border-bottom: dashed 1px #000;
  padding-bottom: 20px;
}

.shop-info div dt {
  color: var(--color-theme);
}

#contact {
  background-image: url(../images/contact_bg.jpg);
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 768px) {
  #contact {
    background-image: url(../images/contact_bg_tab.jpg);
    background-size: contain;
  }
}

#contact h4 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 4rem;
  margin-bottom: 20px;
  text-align: center;
}

@media only screen and (max-width: 599px) {
  #contact h4 {
    font-size: 2rem;
  }
}

.contact_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contact_box a {
  color: #000;
  transition: all 0.5s;
}
.contact_box a:hover {
  opacity: 0.5;
}
.contact_box a .mail,
.contact_box a .tel {
  font-family: 'Newsreader', serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 4rem;
}

@media only screen and (max-width: 599px) {
  .contact_box a .mail {
    font-size: 2.6rem;
  }

  .contact_box a .tel {
    font-size: 3.4rem;
  }
}

.contact_box p {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  font-size: 1.6rem;
}

@media only screen and (max-width: 599px) {
  .contact_box p {
    font-size: 1.3rem;
  }
}

.contact_mail,
.contact_tel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  line-height: 1.2;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .contact_mail,
  .contact_tel {
    width: 100%;
  }
}

.contact_mail::before {
  content: '';
  width: 60px;
  height: 60px;
  display: inline-block;
  background-image: url('../images/mail_icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  padding: 20px;
  border-radius: 100px;
  margin-right: 15px;
}

.contact_tel::before {
  content: '';
  width: 60px;
  height: 60px;
  display: inline-block;
  background-image: url('../images/tel_icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  padding: 20px;
  border-radius: 100px;
  margin-right: 15px;
}

/* Footer */
#footer {
  width: 100%;
  margin: 0;
  background: var(--color-theme-accent);
}

.footer-inner {
  font-size: 1.6rem;
  margin: 0 auto;
  padding: 4rem;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 30px;
  align-items: center;
  line-height: 1;
}

.f_logo > .sns_link {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 60px));
  gap: 15px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.f_logo > .sns_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.f_logo > .logo img {
  transition: all 0.3s ease;
}

.f_logo > .logo:hover img,
.f_logo > .sns_link a:hover {
  transform: translateY(-3px);
}

@media only screen and (max-width: 599px) {
  .f_logo > .sns_link {
    grid-template-columns: repeat(auto-fit, minmax(36px, 50px));
    gap: 10px;
  }

  .sns_link a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1024px) {
  .footer-inner {
    width: 100%;
    font-size: 1.4rem;
    padding: 2rem;
    grid-template-columns: 1fr;
  }
  .f_logo {
    width: 100%;
    text-align: center;
  }

  .f_logo img {
    margin-inline: auto;
  }
}

.address_txt {
  text-align: center;
  padding: 5px;
  font-style: normal;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .footer-inner {
    padding: 4rem;
  }
}

@media only screen and (max-width: 599px) {
}

/* Tables */
.legal_notice {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-left: 0px solid #e3e3e3;
  border-top: 1px solid #ccc;
}

.legal_notice th {
  text-align: left;
  vertical-align: middle;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  background: initial;
  color: #1f2e55;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
  width: 15%;
}

.legal_notice td {
  background: initial;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
}

.form {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0px;
  margin-bottom: 20px;
}
.form th {
  text-align: left;
  vertical-align: middle;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  background: initial;
  color: #000;
  border: 0px;
  width: 35%;
}

.form td {
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  color: #000;
  border: 0px;
}

/* Table Responsive */
@media only screen and (max-width: 1024px) {
  .legal_notice th {
    width: 20%;
  }
}

@media only screen and (max-width: 599px) {
  .legal_notice th,
  .form th {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .legal_notice th {
    padding: 1rem 0 0 0;
  }

  .legal_notice td,
  .form td {
    display: block;
    width: 100%;
  }

  .legal_notice td {
    padding: 1rem 0;
  }

  .form th {
    padding-bottom: 0;
  }
}

/* スマートフォン対応 */
@media only screen and (max-width: 599px) {
  .form td {
    padding: 10px;
  }

  .form th .red {
    margin-left: 5px;
  }
}

/* Page Top Button */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
  z-index: 999;
  margin: 0 !important;
}

#page-top a {
  background: var(--color-theme);
  text-decoration: none;
  color: var(--color-theme-accent);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

@media only screen and (min-width: 1281px) {
  #page-top a:hover {
    text-decoration: none;
    background: var(--color-theme-light);
  }
}

@media only screen and (max-width: 599px) {
  #page-top {
    bottom: 0;
  }
}

/* Button Style */
.bt_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 1.5rem 0;
}

.bt01,
.form_bt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition), transform 0.3s ease;
  font-weight: bold;
  height: 100%;
  text-decoration: none !important;
}

.bt01 {
  background-color: var(--color-theme-second);
  color: #fff;
  border-radius: 5px;
  font-size: 1.8rem;
  padding: 15px 30px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  text-decoration: none !important;
}

.bt01:hover {
  background-color: var(--color-theme-second-light);
  transform: translateY(-5px);
}

.bt01::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f0da';
  font-weight: 900;
  padding-left: 1rem; /*文字との隙間*/
  color: var(--color-white);
  font-size: 1.4rem;
  text-decoration: none !important;
  vertical-align: middle; /* 縦中央に配置 */
  display: inline-block; /* インラインブロック要素に変更 */
}

.form_bt {
  border: solid 1px var(--color-theme-accent);
  background-color: var(--color-theme-accent);
  color: #fff;
  min-width: 360px;
  padding: 20px 40px;
  position: relative;
  opacity: 1;
  border-radius: 10px;
}

.form_bt:hover {
  background-color: var(--color-theme-accent);
  border: solid 1px var(--color-theme-accent);
  transform: translateY(-5px);
}

.form_bt::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f0da';
  font-weight: 900;
  padding-left: 1rem;
  color: var(--color-theme-second);
  font-size: 1.4rem;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  transition: var(--transition), transform 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .bt01 {
    min-width: 260px;
  }
}

@media only screen and (max-width: 1024px) {
  .bt_list li a {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .bt_list li {
    width: 100%;
  }
}

.marker {
  background: linear-gradient(transparent 55%, #fff100 55%);
}
