@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  color: #333;
  font-size: 16px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.9;
  overflow: auto;
}
.hamopen {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
a {
  text-decoration: none;
  transition: .4s;
}
a:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
button:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
ul, ol {
  list-style: none;
  padding: 0;
}
/*main section*/
main {
  display: block;
  position: relative;
  overflow: hidden;
}
main section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 550px) {
  main section {
    padding: 50px 0 55px;
  }
}
.pdb {
  padding-bottom: 55px !important;
}
.pdb0 {
  padding-bottom: 1px !important;
}
@media (max-width: 550px) {
  .pdb {
    padding-bottom: 20px !important;
  }
}
/*img*/
img {
  line-height: 1;
  vertical-align: top;
  max-width: 100%;
  transition: .4s;
}
/*text*/
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #fff9a1;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}
.ib {
  display: inline-block;
}
/*中央寄せ*/
.center {
  text-align: center;
}
@media (max-width:750px) {
  .spcenter {
    text-align: center !important;
  }
}
.fitc {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* 見出し */
/*01*/
.maintitle {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
}
.maintitle.vertical {
  writing-mode: vertical-rl;
  width: 38px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.mtleft {
  text-align: left;
}
.maintitle.vertical.mtleft {
  margin-left: 0;
}
.txtmgb {
  margin-bottom: 23px !important;
}
@media (max-width:750px) {
  .maintitle.spcenter {
    text-align: center !important;
  }
  .maintitle.vertical.spcenter {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width:550px) {
  .maintitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .maintitle.vertical {
    width: 34px;
  }
  .txtmgb {
    margin-bottom: 20px !important;
  }
}
/*02*/
.mtitle {
  font-weight: 700;
  position: relative;
  padding: 11px 26px 11px 13px;
  margin-bottom: 7px;
  font-size: clamp(1.2rem, 1.08rem + 0.4267vw, 1.4rem);
  color: #fff;
  background: #8a9496;
  line-height: 1.4;
}
.mtitle::after {
  content: '';
  width: 20px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
  pointer-events: none;
}
.red .mtitle {
  background: #932e44;
}
/*03*/
.stitle {
  font-weight: 500;
  position: relative;
  font-size: clamp(1.25rem, 1.1rem + 0.5333vw, 1.5rem);
  padding-left: 2px;
  line-height: 1.45;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}
.stitle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 95px;
  height: 1px;
  background: #8a9496;
}
.red .stitle::after, .red.stitle::after {
  background: #932e44;
}
/* ボタン */
.mainbtn a {
  position: relative;
  margin: 0 auto;
  padding: 22px;
  display: inline-block;
  width: fit-content;
  min-width: 230px;
  text-align: center;
  overflow: hidden;
  background: #8a9496;
  border: 1px solid #8a9496;
  color: #fff;
}
.mainbtn a:hover {
  background: #fff;
  color: #8a9496;
}
/**/
.mainbtn.white a {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}
.mainbtn.white a:hover {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
}
/**/
.red .mainbtn a, .red.mainbtn a {
  background: #932e44;
  border: 1px solid #932e44;
  color: #fff;
}
.red .mainbtn a:hover, .red.mainbtn a:hover {
  color: #932e44;
  background: #fff;
}
/**/
.tbtn {
  margin-top: 25px;
}
.btnflex a {
  margin: 2px 8px;
  display: inline-block;
}
@media (max-width: 550px) {
  .mainbtn a {
    padding: 18px;
    min-width: 200px;
    max-width: fit-content;
    width: 100%;
  }
  .btnflex a {
    margin: 12px auto;
    display: block;
  }
}
/* flex要素 */
.flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aic {
  align-items: center;
}
.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .flexbox {
    display: block;
  }
  .flexbox img {
    width: 100%;
  }
  .flexbox div {
    width: 100%;
  }
  .spmgb {
    margin-bottom: 35px;
  }
  .spmgb02 {
    margin-bottom: 15px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .inner02 {
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 1999px) {
  .inner02 {
    max-width: 100%;
    width: 100%;
  }
  .mauto {
    margin-left: auto;
    margin-right: auto;
  }
  .mauto.w47 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto {
    width: 100% !important;
  }
}
.w65 {
  width: 64.5%;
}
.w52 {
  width: 52%;
}
.w47 {
  width: 47%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 31.5%;
}
/* background */
.bg::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/_bg/bg.png) repeat;
  background-size: 1050px;
  background-position: top;
  opacity: 0.9;
  z-index: -99;
}
.bg_gray::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #9e9e9e;
  z-index: -100;
}
/* background illust */
.bg01::before {
  background: url(../img/_bg/01.png) no-repeat !important;
}
.bg02::before {
  background: url(../img/_bg/02.png) no-repeat !important;
}
.bg03::before {
  background: url(../img/_bg/03.png) no-repeat !important;
}
.bg04::before {
  background: url(../img/_bg/04.png) no-repeat !important;
}
.bg05::before {
  background: url(../img/_bg/05.png) no-repeat !important;
}
.bg06::before {
  background: url(../img/_bg/06.png) no-repeat !important;
  opacity: 0.17 !important;
}
.bg07::before {
  background: url(../img/_bg/07.png) no-repeat !important;
}
.bg01::before, .bg02::before, .bg03::before, .bg04::before, .bg05::before, .bg06::before, .bg07::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.27;
  background-position: bottom -10px right -10px !important;
  background-size: 480px !important;
  z-index: -97;
}
.bg07::before {
  background-position: bottom right -10px !important;
  background-size: 550px !important;
}
@media (max-width: 1100px) {
  .bg01::before, .bg02::before, .bg03::before, .bg04::before, .bg05::before, .bg06::before, .bg07::before {
    background-size: 47% !important;
  }
}
@media (max-width: 750px) {
  .bg01::before, .bg05::before, .bg06::before {
    background-size: 200px !important;
  }
  .bg02::before, .bg03::before, .bg04::before {
    background-size: 90% !important;
  }
  .bg07::before {
    background-size: 250px !important;
  }
}
@media (max-width: 550px) {
  .bg04::before {
    background-size: 109% !important;
  }
}
/*反転*/
.bgx::before {
  pointer-events: none;
  transform: scaleX(-1);
}
.bgy::before {
  pointer-events: none;
  transform: scaleY(-1);
}
.bgxy::before {
  pointer-events: none;
  transform: scaleX(-1) scaleY(-1);
}
/* illust ===========================*/
.tl, .tr, .bl, .br {
  position: absolute !important;
  z-index: 1 !important;
  pointer-events: none;
  width: 170px !important;
}
.tl img, .tr img, .bl img, .br img {
  width: 100% !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
  filter: brightness(0) saturate(100%) invert(86%) sepia(6%) saturate(138%) hue-rotate(131deg) brightness(79%) contrast(91%);
}
.red .tl img, .red .tr img, .red .bl img, .red .br img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(15%) saturate(7086%) hue-rotate(319deg) brightness(90%) contrast(87%);
}
.circle {
  opacity: 0.35;
  width: 290px !important;
  z-index: -1 !important;
}
.circle.tl img, .circle.tr img, .circle.bl img, .circle.br img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(0%) saturate(142%) hue-rotate(145deg) brightness(98%) contrast(95%);
}
/*反転*/
.ix {
  transform: scaleX(-1);
}
.iy {
  transform: scaleY(-1);
}
.ixy {
  transform: scaleX(-1) scaleY(-1);
}
/*位置*/
.tl, .tr {
  top: -55px !important;
}
.bl, .br {
  bottom: -55px !important;
}
.tl, .bl {
  left: 17px !important;
}
.tr, .br {
  right: 17px !important;
}
@media (max-width: 550px) {
  .tl, .tr, .bl, .br {
    width: 109px !important;
  }
  .circle {
    width: 200px !important;
  }
  .tl, .tr {
    top: -30px !important;
  }
  .bl, .br {
    bottom: -39px !important;
  }
  .tl, .bl {
    left: 5px !important;
  }
  .tr, .br {
    right: 5px !important;
  }
  .circle.tl, .circle.bl {
    left: -20px !important;
  }
  .circle.tr, .circle.br {
    right: -20px !important;
  }
}
/**/
.psr {
  position: relative;
}
.psr .tl, .psr .tr, .psr .bl, .psr .br {
  width: 37% !important;
  max-width: 135px !important;
  z-index: 2 !important;
}
.psr .tl {
  top: -4% !important;
  left: -13px !important;
}
.psr .tr {
  top: -4% !important;
  right: -13px !important;
}
.psr .bl {
  bottom: 0 !important;
  left: -13px !important;
}
.psr .br {
  bottom: 0 !important;
  right: -13px !important;
}
/* アニメーション ============*/
/* flowup */
.flowup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.flowup.inview {
  opacity: 1;
  transform: translateY(0);
}
/*=== 共通部分ここまで ===*/
/* header ================================================*/
.header_sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  padding: 20px 13px;
  transition: .6s all;
}
.change.header_sticky {
  background: #fff;
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.1);
}
/*logo*/
.header_title h1 {
  line-height: 0;
}
.header_title a {
  display: block;
  width: 230px;
  filter: brightness(0) invert(1);
}
.change .header_title a {
  filter: none;
}
/*menu*/
.hnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.hnav ul {
  display: flex;
  text-align: center;
  margin-left: auto;
  margin-right: 17px;
}
.hnav ul li {
  width: fit-content;
  position: relative;
  font-size: 1.06rem;
}
.hnav ul li:last-child {
  margin-right: 0;
}
.hnav ul li a {
  padding: 0 11px;
  display: block;
  position: relative;
  top: 0;
  color: #fff;
  line-height: 1.45;
}
.hnav ul li:first-of-type a {
  padding-left: 0;
}
.hnav ul li:last-of-type a {
  padding-right: 0;
}
.hnav ul li a:hover {
  opacity: 0.6;
}
.change .hnav ul li a {
  color: #333;
}
/**/
.header_item {
  display: flex;
  align-items: center;
}
/*tel*/
.tel a {
  margin-right: 10px;
  font-size: 1.32rem;
  color: #fff;
  position: relative;
  top: -1.7px;
}
.tel a i {
  margin-right: 3px;
  transition: .4s all;
  font-size: 95%;
}
.change .tel a {
  color: #333;
}
.change .tel a i {
  color: #8a9496;
}
.tel a:hover {
  opacity: 0.6;
}
/*icons*/
.icons {
  display: flex;
  align-items: center;
  font-size: 1.23rem;
}
.icons a {
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  aspect-ratio: 1 / 1;
  text-align: center;
  background: #8a9496;
  color: #fff;
  border-radius: 50%;
  position: relative;
}
a.insta {
  color: #fff !important;
  border: none !important;
  background: linear-gradient(20deg, #ffdb2c, #f13f79, #962bed) !important;
}
.icons a.insta {
  font-size: 115%;
}
.icons a:hover, a.insta:hover {
  opacity: 0.6;
}
/* ドロップダウンメニュー =================*/
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children a::after {
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  font-weight: bold;
  font-size: 85%;
  margin-left: 4px;
  color: #fff;
  transition: .4s all;
}
.change .menu-item-has-children a::after {
  color: #8a9496;
}
.sub-menu a::after {
  content: none;
}
.sub-menu {
  position: absolute;
  top: 35px; /*位置調整*/
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  opacity: 0;
  visibility: hidden;
  transition: .1s;
  z-index: 4;
  flex-direction: column;
}
.sub-menu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.sub-menu li {
  border: none !important;
  margin: 0 !important;
  margin-bottom: 5px !important;
  width: 100% !important;
  position: relative;
}
.sub-menu li:last-child {
  border-bottom: none;
}
.sub-menu li::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #8a9496;
  z-index: -1;
  transition: .3s all;
}
.sub-menu li:hover::after {
  filter: brightness(115%);
}
.sub-menu a {
  display: block;
  opacity: 1 !important;
  color: #fff !important;
  font-size: 83% !important;
  padding: 12px 0 !important;
}
/* ホバー＆フォーカスで子メニュー表示 */
.menu-item-has-children ul {
  transition: .4s all;
  transform: scale(1, 0) translateX(-50%);
  transform-origin: top;
}
.menu-item-has-children:hover ul, .menu-item-has-children ul.focused {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(-50%);
}
/* hamburger ============================*/
.header__inner {
  display: none;
}
.hamburger {
  position: relative;
  display: block;
  z-index: 9999;
  width: 50px;
  aspect-ratio: 1/1;
  border: none;
  background-color: transparent;
}
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
  background: #fff;
}
.change .hamburger__line, .change .hamburger__line:before, .change .hamburger__line:after {
  background: #333;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
  background: #333;
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
  background: #333;
}
.hamburger__line:before {
  top: -11px;
}
.hamburger__line:after {
  top: 11px;
}
/*
.hamburger__text {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.hamburger.-active .hamburger__text::before {
	content: 'close';
}
.hamburger__text::before {
	content: "menu";
	text-align: center;
	font-size: 19px;
	letter-spacing: 0.14em;
	text-transform: capitalize;
}
*/
.hamopen .header_sticky {
  position: fixed;
}
.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh;
  width: 100%;
  visibility: hidden;
  background: #fff;
  opacity: 0;
  transition: 0.4s;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__nav-area::before, .header__nav-area::after {
  position: fixed;
}
.header__nav-area::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -2;
}
.header__nav-area::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/_bg/bg.png) repeat;
  background-size: 1050px;
  background-position: top;
  opacity: 0.9;
  z-index: -1;
}
.global-navigation {
  margin: auto;
  height: fit-content;
  width: 85%;
  max-width: 498px;
  padding: 50px 0 100px;
}
.global-navigation__list {
  margin-bottom: 35px;
}
.global-navigation__list > li {
  margin: 3px 0;
  display: block;
  padding: 18px 5px;
  border-bottom: 1px solid #ddd;
  font-size: 1.13rem;
}
.global-navigation__list > li a, .global-navigation__list li button {
  display: inline-block;
  width: 100%;
  color: #333;
  line-height: 1.55;
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
/*accordion menu*/
.accordion__list {
  line-height: 1.6;
}
.accordion__list li a {
  font-size: 88%;
  padding-bottom: 2px;
}
.accordion__list li a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: bold;
  margin-right: 4px;
  font-size: 75%;
  transform: translateY(-2px);
  color: #8a9496;
}
.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}
.accordion.-active {
  height: auto;
  padding-top: 5px;
  visibility: visible;
}
.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
  text-align: left;
  letter-spacing: 0.1em;
}
.global-navigation__link.-accordion::after {
  content: '';
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 2px;
  transform: translateY(-50%);
  transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  transform: translateY(-50%);
}
.global-navigation__link.-accordion::after, .global-navigation__link.-accordion::before {
  background-color: #8a9496;
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
/*btn*/
.header__nav-area .btnflex {
  font-size: 1rem;
}
.header__nav-area .btnflex a:nth-child(2n) {
  color: #8a9496;
  background: #fff;
  border: 1px solid #8a9496;
}
.header__nav-area .btnflex a:nth-child(2n):hover {
  background: #8a9496;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 1160px) {
  .header_title a {
    width: 19vw;
  }
  .hnav ul {
    margin-right: 1.3vw;
  }
  .hnav ul li {
    font-size: 1.53vw;
  }
  .hnav ul li a {
    padding: 0 0.75vw;
  }
  .tel a {
    margin-right: 0.93vw;
    font-size: 1.78vw;
  }
  .icons {
    font-size: 1.5vw;
  }
  .icons a {
    width: 3.3vw;
  }
}
@media (max-width: 1060px) {
  .header_sticky {
    padding: 17px;
  }
  .header_title a {
    width: 210px;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__inner {
    display: block;
  }
  .hnav ul, .header_item {
    display: none;
  }
}
@media (max-width: 550px) {
  .header_sticky {
    padding: 9px;
  }
  .header_title a {
    width: 190px;
  }
  .global-navigation__list > li {
    padding: 13px 5px;
    font-size: 1.07rem;
  }
  .header__nav-area .btnflex {
    font-size: 0.93rem;
  }
}
/* footer ================================================*/
/* お問い合わせリンク */
.footer_contact {
  position: relative;
  padding: 50px 0;
  color: #fff;
}
.footer_contact::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/footer.webp);
  background-size: cover;
  background-position: 50% 50%;
  filter: brightness(35%);
  z-index: -1;
}
.footer_contact .maintitle {
  margin-bottom: 25px;
}
.footer_contact .btnflex a {
  min-width: 293px;
  font-weight: 700;
  font-size: clamp(1rem, 0.91rem + 0.32vw, 1.15rem);
}
@media (max-width: 550px) {
  .footer_contact {
    padding: 35px 0;
  }
  .footer_contact .btnflex a {
    width: 100%;
    max-width: 300px;
    min-width: auto;
  }
}
/* ロゴ・住所 */
.footer_bottom .inner {
  width: 94%;
}
.footer_bottom {
  padding-top: 40px;
  background: #242424;
  color: #fff;
  text-align: center;
}
.flogo {
  display: block;
  margin: 0 auto 10px;
  width: 230px;
  filter: brightness(0) invert(1);
  line-height: 1;
}
.openinghours p {
  margin-bottom: 0;
}
.oph {
  margin-right: -0.45em;
}
.copyright {
  width: 95%;
  margin: 20px auto 0;
  padding-bottom: 40px;
  text-align: center;
  line-height: 1.3;
  opacity: 0.7;
  font-size: 0.93rem;
}
@media (max-width: 850px) {
  .openinghours p:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .oph {
    display: block;
    margin-right: 0;
  }
  .slash {
    display: block;
    opacity: 0;
    height: 0;
  }
}
@media (max-width: 750px) {
  .footer_bottom {
    padding-top: 35px;
  }
  .flogo {
    width: 200px;
  }
  .copyright {
    padding-bottom: 30px;
  }
}
/* ページ上に戻るボタン */
.go_top {
  display: block;
  width: 73px;
  height: 73px;
  background: #8a9496;
  position: fixed;
  bottom: 20px;
  right: 30px;
  border-radius: 50px;
}
.go_top::before {
  font-family: "Font Awesome 6 Free";
  content: "\f124";
  font-weight: bold;
  color: #fff;
  font-size: clamp(0.85rem, 0.76rem + 0.32vw, 1rem);
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 9;
}
@media(max-width:550px) {
  .go_top {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 8px;
  }
}
/* スライド ============================================*/
.topslide {
  position: relative;
  overflow: hidden;
}
.slide_items {
  position: relative;
  overflow: hidden;
  height: fit-content;
  width: 100%;
  margin-left: auto;
}
.slide_items img {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  object-fit: cover;
}
/*スライド画像アニメーション*/
.slick-animation {
  animation: fadezoom 20s linear 0s normal both;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@media (max-width: 1650px) {
  .slide_items img {
    height: auto;
    min-height: auto;
  }
}
@media (max-width: 550px) {
  .slide_items img {
    height: 72vw;
  }
}
/* 新着情報 ============================================*/
@media(max-width:750px) {
  .news .br {
    bottom: auto !important;
    right: auto !important;
    top: 12px !important;
    left: 9px !important;
  }
}
@media(max-width:550px) {
  .news::before {
    transform: scaleX(-1) scaleY(-1);
  }
}
/* うどんセンター銀について ============================*/
.welcome .inner {
  max-width: 1245px;
}
/* おすすめメニュー ====================================*/
.recommendation {
  overflow: hidden;
}
.recommendation .inner {
  max-width: 1245px;
}
.recommendation::before {
  filter: brightness(0) invert(1);
  opacity: 0.1;
}
.recommendation::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  background: url(../img/recommendation.webp);
  background-size: cover;
  background-position: center;
  z-index: -98;
}
.recommendation {
  color: #fff;
}
.recotext {
  width: 55%;
  max-width: 660px;
}
.recoimg {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: 45%;
}
@media(max-width:850px) {
  .recommendation {
    padding: 60px 0;
  }
  .recommendation .maintitle, .recommendation .mainbtn {
    text-align: center;
  }
  .recotext {
    width: 100%;
    max-width: 660px;
    margin: auto;
  }
  .recoimg {
    position: initial;
    transform: translateY(0);
    width: 84vw;
    margin: 40px auto -50vw;
  }
}
@media (max-width: 550px) {
  .recommendation {
    padding: 45px 0 55px;
  }
}
/* 併設施設 ============================================*/
.facilities .tr, .facilities .tl {
  top: -34px !important;
}
.facilities .maintitle {
  margin-bottom: 60px;
}
.ovh {
  overflow: hidden;
}
.f_nowrap {
  flex-wrap: nowrap;
  align-items: center;
}
.f_nowrap:not(:last-of-type) {
  margin-bottom: 70px;
}
.wtext {
  width: 54%;
  padding: 25px 40px 30px;
  height: fit-content;
  margin: 3% 0 2.5% -1.5%;
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 1px 12px;
}
.wimg {
  position: relative;
  width: 50%;
  display: flex;
  margin-right: -1.5%;
}
.wimg img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.reverse .wtext {
  margin-right: -1.5%;
  margin-left: auto;
}
.reverse .wimg {
  margin-right: auto;
  margin-left: -1.5%;
}
.wtext .tr {
  top: -37px !important;
  width: 140px !important;
}
@media (max-width: 1130px) {
  .f_nowrap {
    align-items: stretch;
  }
}
@media (max-width: 750px) {
  .facilities .tr, .facilities .tl {
    top: -16px !important;
  }
  .facilities .maintitle {
    margin-bottom: 37px;
  }
  .wtext {
    width: 100% !important;
    margin: -7% auto 0 !important;
  }
  .wimg {
    width: 114% !important;
    margin: auto !important;
    left: 50%;
    transform: translateX(-50%);
  }
  .wimg img {
    border-radius: 0;
    height: 56vw;
  }
}
@media (max-width: 550px) {
  .f_nowrap:not(:last-of-type) {
    margin-bottom: 55px;
  }
  .wtext {
    padding: 17px 13px 20px;
  }
  .wtext .tr {
    top: 2px !important;
    width: 90px !important;
  }
}
/* 運営会社 ============================================*/
.company {
  padding: 70px 0;
}
.company .inner {
  max-width: 925px;
}
.linksflex {
  display: flex;
}
.company .maintitle {
  margin-bottom: 0;
  margin-right: 75px;
}
.links {
  display: flex;
  justify-content: space-between;
}
.links > div {
  width: 48.7%;
}
.links a {
  display: block;
  position: relative;
  overflow: hidden;
}
.links a img {
  filter: brightness(57%);
  transition: .6s all;
}
.links a img:hover {
  transform: scale(1.07);
  filter: brightness(80%);
}
.links a h2 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: clamp(1.3rem, 1.09rem + 0.7467vw, 1.65rem);
  line-height: 1.5;
  white-space: nowrap;
  font-weight: 700;
  pointer-events: none;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 15%), 0px -2.5px 3px rgb(0 0 0 / 8%);
}
.links a::before {
  content: '';
  width: 52px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) skewX(35deg);
  right: 22px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  z-index: 1;
  transition: .4s all;
}
.links a:hover::before {
  right: 13px;
}
@media (max-width: 850px) {
  .linksflex {
    display: block;
  }
  .company .maintitle {
    margin-bottom: 40px;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .links {
    display: block;
  }
  .links > div {
    width: 100%;
    margin-bottom: 13px;
  }
  .links > div:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .company {
    padding: 40px 0;
  }
  .company .maintitle {
    margin-bottom: 25px;
  }
  .links > div {
    margin-bottom: 9px;
  }
  .links a::before {
    width: 45px;
    height: 9px;
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 120px 0 70px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
.fv .inner {
  width: 97%;
}
.fv::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fv.webp);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 50%;
  z-index: -1;
}
.fv::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #111;
  opacity: 0.23;
  z-index: 1;
}
.fv h2 {
  text-align: center;
  margin-bottom: 12px !important;
  font-size: clamp(1.8rem, 1.38rem + 1.4933vw, 2.5rem);
  line-height: 1.5;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 700;
}
@media(max-width:1060px) {
  .fv {
    padding: 90px 0 60px;
  }
}
@media(max-width:550px) {
  .fv {
    padding: 70px 0 33px;
  }
}
/* breadcrumb */
.binner {
  font-weight: 700;
  line-height: 1.4;
  width: 97%;
  font-size: clamp(0.85rem, 0.79rem + 0.2133vw, 0.95rem);
  position: relative;
  color: #fff;
}
.breadcrumb {
  z-index: 1;
  background: transparent;
  position: relative;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: '>';
  position: relative;
  top: -0.1em;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
.breadcrumb li:first-child a::before {
  font-family: "Font Awesome 6 Free";
  content: '\f015';
  font-weight: bold;
  font-size: 90%;
  position: relative;
  top: -0.05em;
}
/* こだわりページ ===========================================================================================================*/
.features {
  counter-reset: number 0;
}
.features section {
  counter-increment: number 1;
  padding: 85px 0;
}
.features section .inner {
  width: 100%;
  max-width: 1300px;
}
.features .f_item .tr, .features .f_item .br, .features .f_item .tl, .features .f_item .bl {
  max-width: 163px !important;
}
.features .f_item .tr, .features .f_item .br {
  right: 0 !important;
}
.features .f_item .tl, .features .f_item .bl {
  left: 0 !important;
}
.f_item {
  position: relative;
}
/*img*/
.fimg {
  width: 88%;
}
.fimg img {
  object-fit: cover;
  width: 100%;
  height: 400px;
}
.features section:nth-child(2n) .fimg {
  margin-left: auto;
}
/*text*/
.fbox {
  max-width: 845px;
  width: 93%;
  padding: 33px 40px;
  background: #fff;
  position: relative;
  z-index: 1;
  margin-top: -45px;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 1px 12px;
}
.features section:nth-child(2n+1) .fbox {
  margin-left: auto;
}
/*title*/
.ftitle {
  font-size: clamp(1.25rem, 1.04rem + 0.7467vw, 1.6rem);
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  white-space: nowrap;
  align-items: center;
}
.ftitle::before {
  content: "point0"counter(number);
  text-transform: capitalize;
  font-size: 70%;
  margin-right: 10px;
  margin-bottom: -7px;
}
.ftitle::after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  margin-left: 10px;
}
@media(max-width:1230px) {
  .fimg img {
    height: 36vw;
  }
}
@media(max-width:750px) {
  .fimg img {
    height: auto;
  }
  .fbox {
    margin-top: -25px;
  }
}
@media(max-width:550px) {
  .features section {
    padding: 45px 0;
  }
  .fbox {
    padding: 18px;
  }
  .ftitle {
    display: block;
    white-space: normal;
  }
  .ftitle::before {
    display: block;
    margin-bottom: 5px;
  }
  .ftitle::after {
    content: none;
  }
}
/* メニューページ ===========================================================================================================*/
/* 店長のおすすめ */
#recommendation {
  position: relative;
  top: 35px;
}
.pickup .inner {
  max-width: 1155px;
}
.udon img {
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.tonsoku img {
  display: block;
  width: 78%;
  margin-right: auto;
}
@media(max-width:750px) {
  .tonsoku img {
    width: 85%;
  }
}
/* メニュー表 */
.udoncenter .inner {
  max-width: 1000px;
}
/* 店舗紹介ページ ===========================================================================================================*/
/* 店舗案内 */
.information .inner {
  max-width: 1295px;
}
.information .maintitle {
  margin-bottom: 50px;
}
.information .flexbox > div {
  width: 48.1%;
  padding: 20px;
  background: #fff;
  margin-bottom: 35px;
}
@media(max-width:750px) {
  .information .flexbox > div {
    width: 100%;
    margin-bottom: 25px;
  }
  .information .flexbox > div:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media(max-width:550px) {
  .information .maintitle {
    margin-bottom: 30px;
  }
  .information .flexbox > div {
    padding: 13px;
  }
}
/* slider */
.contents_slider {
  margin-bottom: 10px;
}
.contents_slider li {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 0%;
  width: 100%;
  transition: .6s all;
}
.contents_slider li::before {
  content: '';
  display: block;
  padding-top: 55%;
}
.contents_slider li img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/**/
.contents_slider .slick-prev:before, .contents_slider .slick-next:before {
  color: #fff;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 20%), 0px -2.5px 3px rgb(0 0 0 / 15%);
  opacity: 1;
  font-size: clamp(1.35rem, 1.26rem + 0.32vw, 1.5rem);
}
.contents_slider button.slick-prev {
  left: 7px !important;
  z-index: 3 !important;
}
.contents_slider button.slick-next {
  right: 9px !important;
  z-index: 3 !important;
}
/* 併設施設ページ ===========================================================================================================*/
#link01 {
  position: relative;
  top: 35px;
}
/**/
.facility .contents_slider li::before {
  padding-top: 77%;
}
/**/
.facility .mtitle {
  font-size: clamp(1.2rem, 1.11rem + 0.32vw, 1.35rem);
}
.mgb25 {
  margin-top: 25px;
}
.acflex {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.acflex li {
  width: 48.5%;
}
@media(max-width:825px) {
  .acflex {
    margin-bottom: 15px;
    display: block;
  }
  .acflex li {
    width: 100%;
  }
}
/**/
.chikiinsta {
  margin-top: 40px;
}
.chikiinsta p {
  color: #932e44;
  font-size: clamp(1.1rem, 1.01rem + 0.32vw, 1.25rem);
}
.chikiinsta p::before {
  content: '＼';
  margin-right: 4px;
}
.chikiinsta p::after {
  content: '／';
}
.chikiinsta a {
  display: block;
  max-width: 500px;
  margin: auto;
}
.chikiinsta a:hover {
  opacity: 0.6;
}
/**/
.gnitem {
  margin-top: 60px;
}
.gnitem.gallery .mtitle {
  margin-bottom: 9px;
}
.gnitem.gallery .flexbox {
  justify-content: flex-start;
}
.gnitem.gallery .flexbox > div {
  width: 31%;
  margin: 0 1.1% 20px;
  position: relative;
}
.gnitem.gallery .flexbox > div .contents_slider li::before {
  padding-top: 75.1%;
}
.gnitem.gallery .flexbox > div .contents_slider {
  margin-bottom: 0;
}
.gnitem.gallery .flexbox > div p {
  position: absolute;
  bottom: 7px;
  left: 7px;
  z-index: 1;
  pointer-events: none;
  font-size: 1rem;
  padding: 0.11em 0.3em 0.15em;
  margin: 0 !important;
  background: #fff;
  border: 1px solid #ddd;
  white-space: nowrap;
}
.gnitem.gallery .flexbox > div p.toilet {
  font-size: 0.87rem;
}
.info_table a {
  display: inline-block;
  margin-right: 10px;
  color: #333;
  text-decoration: underline;
}
.info_table a i {
  color: #8a9496;
}
.info_table a:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media(max-width:1355px) {
  .gnitem.gallery .flexbox > div p.toilet {
    font-size: 1.02vw;
  }
}
@media(max-width:1135px) {
  .gnitem.gallery .flexbox > div {
    width: 47.8%;
  }
  .gnitem.gallery .flexbox > div p.toilet {
    font-size: 1rem;
  }
}
@media(max-width:1015px) {
  .gnitem.gallery .flexbox > div p.toilet {
    font-size: 1.55vw;
  }
}
@media(max-width:750px) {
  .gnitem.gallery .flexbox > div {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .gnitem.gallery .flexbox > div:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .gnitem.gallery .flexbox > div p.toilet {
    font-size: 1rem;
  }
}
@media(max-width:550px) {
  .gnitem.gallery .flexbox > div p {
    font-size: 0.9rem;
  }
  .gnitem.gallery .flexbox > div p.toilet {
    font-size: 0.75rem;
  }
}
/* 事業内容ページ ===========================================================================================================*/
/* 事業内容 */
.services .contents_slider li::before {
  padding-top: 60%;
}
.services .maintitle {
  margin-bottom: 50px;
}
.services .flexbox:nth-child(2n) {
  flex-direction: row-reverse;
}
.services .flexbox:not(:last-of-type) {
  margin-bottom: 70px;
}
@media(max-width:550px) {
  .services .maintitle {
    margin-bottom: 30px;
  }
  .services .flexbox:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
/* 対応エリア */
.area .inner {
  max-width: 1091px;
}
.area p.str {
  padding: 10px;
  background: #fff;
  font-size: clamp(1.15rem, 1.03rem + 0.4267vw, 1.35rem);
}
.area p.str::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  color: #8a9496;
  margin-right: 4px;
}
.area img {
  filter: brightness(0) saturate(100%) invert(86%) sepia(6%) saturate(138%) hue-rotate(131deg) brightness(79%) contrast(91%);
}
/**/
.designation {
  margin-top: 55px;
}
.designation > div {
  width: 48.7%;
  padding: 15px;
  background: #fff;
}
@media(max-width:750px) {
  .area .spmgb {
    margin-bottom: 25px;
  }
  .designation > div {
    width: 100%;
  }
  .designation > div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media(max-width:550px) {
  .designation {
    margin-top: 45px;
  }
}
/* 会社概要ページ ===========================================================================================================*/
/* 代表あいさつ */
.glast {
  margin-top: 23px;
  text-align: right;
}
/* 会社概要 */
.overview .inner {
  max-width: 1050px;
}
/* table */
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border-bottom: 1px dotted #333;
}
.tblue.info_table tr {
  border-bottom: 1px dotted #333;
}
.info_table th {
  background: transparent;
  width: 30%;
}
.info_table th, .info_table td {
  font-weight: 500;
  padding: 27px 0;
}
.info_table tr:first-of-type th, .info_table tr:first-of-type td {
  padding-top: 10px;
}
.info_table td {
  padding-left: 10px;
  padding-right: 10px;
  width: 70%;
  background: transparent;
}
@media(max-width: 550px) {
  .overview .maintitle {
    margin-bottom: 10px;
  }
  .info_table tr {
    border-bottom: none;
  }
  .info_table td {
    border-bottom: 1px dotted #333;
    margin-bottom: 0;
  }
  .tblue.info_table td {
    border-bottom: 1px dotted #333;
  }
  .info_table td, .info_table th {
    width: 100%;
    padding: 7px 0 20px;
    display: block;
  }
  .info_table th {
    font-weight: 700;
    font-size: 107%;
    text-align: left;
    padding-bottom: 0;
    padding-top: 13px;
  }
}
/*list*/
.acheck li {
  padding-left: 22px;
  position: relative;
  border-bottom: 1px dotted #333;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.info_table .acheck li {
  border-bottom: none;
  padding-bottom: 1px;
  margin-bottom: 1px;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #8a9496;
  font-size: 95%;
  position: absolute;
  left: 0;
  top: 0.12em;
}
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
.acflex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.acflex li {
  width: 48.5%;
}
@media (max-width: 1015px) {
  .acflex {
    display: block;
  }
  .acflex li {
    width: 100%;
  }
}
/**/
.licence a {
  background: #fff;
  color: #8a9496;
  min-width: 240px;
  padding-left: 0;
  padding-right: 0;
}
.licence a:hover {
  background: #8a9496;
  color: #fff;
}
/* アクセス */
.licence, .map, .group {
  margin-top: 75px;
}
.map iframe {
  width: 100%;
  height: 450px;
  border: 1px solid #d1d1d1 !important;
}
@media (max-width: 550px) {
  .licence, .map, .group {
    margin-top: 55px;
  }
  .map iframe {
    height: 200px;
  }
  .licence a {
    min-width: auto;
    max-width: 100%;
  }
}
/* お問い合わせページ =======================================================================================================*/
.contact_sec {
  position: relative;
}
.contact_sec .inner {
  max-width: 935px;
}
.contop {
  margin-bottom: 35px;
}
@media (max-width: 550px) {
  .contop {
    margin-bottom: 25px;
  }
  .contact_sec .maintitle {
    font-size: 1.5rem;
  }
}
/* SNSリンクバナー */
.banner a {
  display: block;
  width: 49%;
}
.banner a:hover {
  opacity: 0.6;
}
@media (max-width: 750px) {
  .banner a {
    width: 100%;
  }
  .banner a:last-of-type {
    margin-top: 12px;
  }
}
/* 電話・FAX */
.tels .inner > div {
  padding: 15px;
  background: #fff;
}
.tels .inner > div:not(:last-of-type) {
  margin-bottom: 25px;
}
.telboxwrap i {
  color: #8a9496;
}
.fax_item {
  margin-top: 60px;
}
@media (max-width: 550px) {
  .tels .inner > div {
    padding: 12px;
  }
}
/* 番号 */
.telbox a {
  font-weight: 700;
  white-space: nowrap;
  font-size: clamp(1.4rem, 1.22rem + 0.64vw, 1.7rem);
  color: #333;
  margin-bottom: 5px;
  display: block;
  line-height: 1.6;
}
.telbox a:hover {
  opacity: 0.6;
}
.telwrap {
  margin-top: 0 !important;
}
.telboxwrap p {
  margin-bottom: 0;
}
/*fax*/
.fax {
  pointer-events: none;
}
/*
.telboxwrap .telbox a {
  margin-right: 40px;
}
.telboxwrap .telbox {
  display: flex;
  align-items: center;
}
*/
.fcheck {
  display: flex;
}
.fcheck li {
  padding-left: 18px;
  margin-right: 20px;
  position: relative;
}
.fcheck li:last-child {
  margin-right: 0;
}
.fcheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #8a9496;
  font-size: .9em;
  position: absolute;
  top: 0.2em;
  left: 0;
}
/*
@media (max-width: 1070px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox a {
    margin-right: 0;
  }
}
*/
@media (max-width: 850px) {
  .telboxwrap p:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
@media (max-width: 550px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox p, .fcheck li {
    font-size: 89%;
  }
  .telboxwrap .telbox p {
    margin-bottom: 7px;
  }
  .fcheck {
    display: block;
  }
  .fcheck li {
    margin-right: 0;
  }
}
/* メールフォーム =======================*/
/*豚足・ポン酢について*/
.ponton {
  padding: 25px;
  background: #fff;
  margin-bottom: 60px;
}
.ponton h2 {
  font-size: clamp(1.2rem, 1.08rem + 0.4267vw, 1.4rem);
  font-weight: 700;
  margin: 0 auto 5px;
  width: fit-content;
}
@media (max-width: 550px) {
  .ponton {
    padding: 15px;
    margin-bottom: 40px;
  }
}
/**/
.mailform {
  margin: 0 auto;
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 1px dotted #bfbfbf;
}
.mailform .row > div:nth-child(1) {
  width: 28%;
  letter-spacing: 0.08em;
}
.mailform .row > div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row div:first-of-type span {
  padding: 5px;
  margin-right: 5px;
  font-size: 80%;
}
.mailform .row span.hissu {
  color: #fff;
  background: #8a9496;
}
.mailform .row span.ninni {
  background: #fff;
}
.autofill {
  font-size: clamp(0.65rem, 0.5rem + 0.5333vw, 0.9rem);
  margin-bottom: 6px;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform .box, .mailform textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100% !important;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
}
.mailform .box.mini {
  width: 120px !important;
}
.mailform .postal_btn {
  padding: 2px 10px;
  background: #f4f4f4;
  border-radius: 2px;
  margin-left: 5px;
  border: 1px solid #ccc;
}
.mailform .postal_btn:hover {
  opacity: 0.7;
}
/* チェックボックス・ラジオボタン */
.check_label {
  display: inline-block;
  cursor: pointer;
  margin: 3px 10px 3px 0;
}
/* btn */
.mailform button {
  position: relative;
  margin: 0 auto;
  padding: 19px 0;
  display: block;
  width: fit-content;
  min-width: 230px;
  text-align: center;
  overflow: hidden;
  background: #8a9496;
  border: 1px solid #8a9496;
  color: #fff;
  transition: .4s;
}
.mailform button:hover {
  background: #fff;
  color: #8a9496;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: 700;
  margin-right: 10px;
}
@media (max-width: 850px) {
  .mailform .row:first-of-type {
    padding-top: 10px !important;
  }
  .contact .maintitle {
    margin-bottom: 0;
  }
  .mailform .row {
    padding: 20px 0;
    flex-direction: column;
  }
  .mailform .row div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .mailform .row div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .check_label {
    display: block;
    margin: 0 0 7px;
  }
}
@media (max-width: 550px) {
  .mailform button {
    padding: 15px 0;
    min-width: 210px;
    max-width: fit-content;
    width: 100%;
  }
}
/* 個人情報の取り扱いについて */
.mnote {
  margin-top: 40px;
  max-width: 866px;
}
.privacywrap {
  margin: 15px 0 23px;
}
.accordion-title {
  text-align: center;
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
  text-decoration: underline;
  font-size: 0.95rem;
  font-weight: 500;
}
.accordion-title:hover {
  text-decoration: none;
}
.accordion-text {
  display: none; /*はじめは非表示*/
  margin-top: 5px;
  padding: 13px;
  background: #fff;
  font-size: 0.9rem;
}
.accordion-text > div {
  height: 265px;
  overflow-y: scroll;
}
.accordion-text p {
  padding: 0 14px;
}
.accordion-text span::before {
  content: "■";
  display: inline-block;
  font-size: 90%;
  margin-right: 2px;
  color: #8a9496;
}
@media (max-width: 550px) {
  .mnote {
    font-size: 0.9rem;
  }
  .accordion-text {
    padding: 10px 7px;
  }
  .accordion-text > div {
    height: 230px;
  }
  .accordion-text p {
    padding: 0 7px;
  }
}

/* 更新　260413 */

.omi_btn_area{
  display: flex;
  margin-top: 50px;
  justify-content: center;
}

.omi_btn_area .btn{
  width: 300px;
}

.omi_btn_area a{
  display: block;
  background-color: #8a9496;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  border: solid 2px #8a9496;
}

.omi_btn_area .btn+.btn{
  margin-left: 20px;
}

.omi_btn_area a:hover{
  background-color: #fff;
  color: #8a9496;
}

.contact_sec .insta+.insta+.insta{
  margin-top: 15px;
}

@media (max-width: 750px){
  .contact_sec .insta+.insta{
    margin-top: 15px;
  }
}