@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 700;
  color: #69492f;
  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: 110px 0;
  position: relative;
}
@media (max-width: 550px) {
  main section {
    padding: 65px 0;
  }
}
.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;
}
.rounded img {
  border-radius: 50%;
}
.shadow_r img {
  box-shadow: 13px 13px 0px 0px #fff2d1;
}
.shadow_l img {
  box-shadow: -13px 13px 0px 0px #fff2d1;
}
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.45em;
  text-decoration-color: rgba(255, 239, 135, 0.4);
  text-underline-offset: -0.05em;
  text-decoration-skip-ink: none;
}
/*Safari*/
_::-webkit-full-page-media, _:future, :root .marker {
  text-decoration: none;
}
/*中央寄せ*/
.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 {
  margin-bottom: 50px;
  display: block;
  text-align: center;
  line-height: 0.55;
  position: relative;
  font-size: clamp(2.5rem, 1.25rem + 4vw, 3.5rem);
  font-weight: 700;
}
.maintitle .mf {
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.015em;
  color: #ffa13d;
  font-family: "Josefin Sans", sans-serif;
}
.maintitle .mf span:first-of-type {
  text-transform: capitalize;
}
.mf span:nth-child(2n+1) {
  color: #ff9696;
}
.maintitle .sf {
  font-size: 35%;
}
.maintitle.mtleft {
  text-align: left;
}
.txtmgb {
  margin-bottom: 30px !important;
}
@media (max-width: 550px) {
  .maintitle {
    margin-bottom: 37px;
  }
  .txtmgb {
    margin-bottom: 25px !important;
  }
}
/*02*/
.mtitle {
  font-weight: 700;
  position: relative;
  border-radius: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  font-size: clamp(1.2rem, 0.825rem + 1.2vw, 1.5rem);
  line-height: 1.7;
  background: #ff9696;
  color: #fff;
  padding: 10px 25px 12px 12px;
  border-left: 6px solid rgba(255, 255, 255, 0.4);
}
.mtitle::after {
  content: '';
  width: 20px;
  height: 2px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
@media (max-width: 550px) {
  .mtitle {
    margin-bottom: 15px;
  }
}
/*03*/
.stitle {
  font-weight: 700;
  position: relative;
  font-size: clamp(1.2rem, 0.7rem + 1.6vw, 1.6rem);
  line-height: 1.5;
  margin-bottom: 15px;
  border-bottom: 3px solid #fff5db;
  padding-bottom: 15px;
}
.stitle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 95px;
  height: 3px;
  background: #ff9696;
}
/* ボタン */
.mainbtn a {
  overflow: hidden;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 24px 0;
  width: 260px;
  border-radius: 50px;
  border: 2px solid #ffa13d;
  color: #fff;
  background: #ffa13d;
}
.mainbtn a:hover {
  color: #ffa13d;
  background: #fff;
}
/**/
.tbtn {
  margin-top: 37px;
}
/**/
.btnflex {
  margin-left: auto;
  margin-right: auto;
}
.btnflex a {
  margin: 2px 7px;
  display: inline-block;
}
@media (max-width: 750px) {
  .mainbtn a {
    max-width: 230px;
    width: 100%;
    padding: 20px 0;
  }
  .tbtn {
    margin-top: 30px;
  }
}
/* 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: 27px;
  }
}
/* 幅 */
.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.w48 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto.w48, .mauto.w43 {
    width: 100%;
  }
}
.w65 {
  width: 65%;
}
.w52 {
  width: 52%;
}
.w49 {
  width: 49.5%;
}
.w48 {
  width: 47.5%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 32%;
}
/*background*/
.bg_cream::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fffaed;
  z-index: -100;
}
.bg_wood::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/wood.png) repeat;
  background-size: 500px;
  background-position: center;
  z-index: -20;
  opacity: 0.8;
}
.bg_wood::after {
  content: '';
  width: 100%;
  height: calc(100% - 100px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: -10;
}
@media (max-width: 550px) {
  .bg_wood::after {
    height: calc(100% - 60px);
  }
}
.town::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_illust/town.svg) repeat-x;
  background-size: 910px;
  background-position: bottom center;
  z-index: -20;
  opacity: 0.4;
}
@media (max-width: 550px) {
  .town::before {
    background-size: 480px;
  }
}
.sky::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_illust/sky.svg) repeat-x;
  background-size: 990px;
  background-position: bottom 15px center;
  z-index: -20;
  opacity: 0.3;
}
@media (max-width: 550px) {
  .sky::before {
    background-size: 450px;
  }
}
/* illust ==============================*/
.psr {
  position: relative;
}
/**/
.tl, .tr, .bl, .br {
  position: absolute !important;
  z-index: 1;
  pointer-events: none;
}
.tl img, .tr img, .bl img, .br img {
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
}
/**/
.tl, .tr, .bl, .br {
  width: fit-content !important;
}
.tl img, .tr img, .bl img, .br img {
  width: auto !important;
  height: 150px !important;
}
/**/
.psr .tl, .psr .tr, .psr .bl, .psr .br {
  width: 33% !important;
  max-width: 170px;
}
.psr .tl img, .psr .tr img, .psr .bl img, .psr .br img {
  width: 100% !important;
  height: auto !important;
  mask-image: none !important;
}
/*位置*/
.tl {
  top: -90px;
  left: 1%;
}
.tr {
  top: -90px;
  right: 1%;
}
.bl {
  bottom: -90px;
  left: 1%;
}
.br {
  bottom: -90px;
  right: 1%;
}
.psr .tl {
  top: 0;
  left: 0;
}
.psr .tr {
  top: 0;
  right: 0;
}
.psr .bl {
  bottom: 0;
  left: 0;
}
.psr .br {
  bottom: 0;
  right: 0;
}
/**/
.garland {
  position: absolute !important;
  top: -5px !important;
  left: -5px !important;
  width: 53% !important;
  max-width: 250px;
}
.garland img {
  width: 100% !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
}
@media (max-width: 1180px) {
  .tl img, .tr img, .bl img, .br img {
    height: 100px !important;
  }
  .tl {
    top: -45px;
  }
  .tr {
    top: -45px;
  }
  .bl {
    bottom: -40px;
  }
  .br {
    bottom: -40px;
  }
}
@media (max-width: 550px) {
  .tl img, .tr img, .bl img, .br img {
    height: 80px !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);
}
/*delay*/
.delay01 {
  transition-delay: 0.45s;
}
.delay02 {
  transition-delay: 0.6s;
}
@media (max-width: 750px) {
  .delay01, .delay02 {
    transition-delay: 0.3s !important;
  }
}
/*=== 共通部分ここまで ===*/
/* header ================================================*/
.header_sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .4s all;
  padding: 13px 0 17px;
  background: #fff;
  box-shadow: none;
}
.change {
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.2);
}
/*logo*/
.header_title a {
  width: 355px;
}
.header h1 {
  line-height: 1;
}
.logoflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logoflex img:first-of-type {
  width: 17%;
}
.logoflex img:last-of-type {
  width: 80%;
}
.header_title a:hover {
  opacity: 0.6;
}
/**/
.header_nav {
  margin-left: auto;
  margin-right: 15px;
}
.header_item {
  display: flex;
  align-items: center;
  margin-left: auto;
  width: fit-content;
}
.header_item > div {
  margin: 0 6px;
}
.header_item .mainbtn a {
  width: 230px;
  line-height: 1;
  padding: 14px 0;
  font-size: 0.93rem;
}
/*tel*/
.tel {
  font-size: 1.8rem;
  line-height: 1.45;
}
.tel a {
  font-family: "Josefin Sans", sans-serif;
  color: #ff9696;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 2px;
}
.tel a i {
  font-size: 90%;
  margin-right: 4px;
}
.tel a .telnote {
  display: block;
  font-size: 0.8rem;
  text-align: center;
  padding-bottom: 5px;
  margin-right: 10px;
}
.tel a:hover {
  opacity: 0.6;
  transition: .3s;
}
/**/
.header {
  width: 100%;
  position: relative;
}
.header_inner {
  max-width: 1300px;
  width: 97%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
/* links */
.hnav {
  margin: auto;
  width: 95%;
  max-width: 1200px;
}
.header ul {
  justify-content: center;
  display: flex;
  text-align: center;
  align-items: center;
}
.header ul li {
  width: calc(100% / 6);
  border-left: 1px dotted #543737;
}
.header ul li:last-child {
  border-right: 1px dotted #543737;
}
.header ul li a:hover {
  opacity: 0.6;
}
.header ul li a {
  display: block;
  position: relative;
  top: 0;
  color: #69492f;
  font-size: 1.03rem;
  line-height: 1.4;
}
.header ul li a span {
  display: flex;
  justify-content: center;
  font-family: "Josefin Sans", sans-serif;
  color: #ffa13d;
}
.header ul li a span {
  font-size: 110%;
}
.header ul li a span:nth-child(2n+1) {
  color: #ff9696;
}
.header ul li a span span:first-of-type {
  text-transform: capitalize;
}
/* ドロップダウンメニュー =====*/
.menu-item-has-children {
  position: relative;
}
.sub-menu {
  position: absolute;
  top: 55px; /**/
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  opacity: 0;
  visibility: hidden;
  transition: .1s;
  z-index: 4;
  flex-direction: column;
}
.sub-menu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 55px; /**/
  top: -55px; /**/
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.sub-menu li {
  border: none !important;
  margin: 0 !important;
  margin-bottom: 3px !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: #ffa13d;
  z-index: -100;
  transition: .3s all;
}
.sub-menu li:hover::after {
  filter: brightness(85%);
}
.sub-menu a {
  display: block;
  opacity: 1 !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  padding: 17px 0 !important;
}
/* ホバー＆フォーカスで子メニュー表示 */
/* Display sub menu by hover & focus */
.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: fixed;
  display: block;
  height: 60px;
  z-index: 9999;
  width: 57px;
  border: none;
  background-color: transparent;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  background: #ffa13d;
  transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background: #ffa13d;
  transition: inherit;
}
.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;
}
*/
.header {
  width: 100%;
}
.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 a {
  color: #69492f;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global-navigation {
  margin: auto;
  height: fit-content;
  width: 85%;
  padding: 50px 0 120px;
}
.global-navigation__list > li {
  margin: 3px 0;
  display: block;
  padding: 15px 5px;
  border-bottom: 1px dashed #ddd;
  font-size: 1.1rem;
}
.global-navigation__list > li a, .global-navigation__list li button {
  display: inline-block;
  width: 100%;
  color: #69492f;
  line-height: 1.3;
}
.global-navigation__list > li a span, .global-navigation__list li button span {
  display: flex;
  font-family: "Josefin Sans", sans-serif;
  color: #ffa13d;
  margin-bottom: 3px;
}
.global-navigation__list > li a span span, .global-navigation__list li button span span {
  font-size: 110%;
}
.global-navigation__list > li a span span:nth-child(2n+1), .global-navigation__list li button span span:nth-child(2n+1) {
  color: #ff9696;
}
.global-navigation__list > li a span span:first-of-type, .global-navigation__list li button span span:first-of-type {
  text-transform: capitalize;
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
/*accordion menu*/
.accordion__list li {
  font-size: 90%;
}
.accordion__list li + li {
  margin-top: 7px;
}
.accordion__list li a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: bold;
  margin-right: 7px;
  font-size: 0.6rem;
  transform: translateY(-2px);
  color: #ffa13d;
}
.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}
.accordion.-active {
  height: auto;
  padding-top: 13px;
  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;
  background-color: #ffa13d;
  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;
  background-color: #ffa13d;
  transform: translateY(-50%);
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 1075px) {
  .header_sticky {
    padding: 17px 5px 20px;
  }
  .header__inner {
    display: block;
  }
  .header_inner {
    margin: 0 auto;
    padding: 0;
  }
  .header .inner, .header_nav, .hnav {
    display: none;
  }
  .header_title a {
    width: 320px;
  }
  .hamburger {
    top: 19px;
    right: 12px;
  }
}
@media (max-width: 550px) {
  .header_sticky {
    padding: 13px 5px 17px;
  }
  .global-navigation__list > li {
    padding: 15px 5px 17px;
    font-size: 1rem;
  }
  .header_title a {
    width: 235px;
  }
  .hamburger {
    top: 10px;
    right: 4px;
  }
}
/* footer ================================================*/
.footer_contact .inner {
  width: 95%;
  max-width: 1000px;
}
.footer_contact {
  padding: 85px 0 90px;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer_contact::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/footer.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
/*Safari*/
_::-webkit-full-page-media, _:future, :root .footer_contact::after {
  background-attachment: scroll;
}
.footer_contact::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #453020;
  opacity: 0.75;
}
.footer_contact .maintitle {
  color: #fff;
  margin-bottom: 40px;
}
.footer_contact .maintitle .mf span {
  color: #fff;
}
.ctext {
  margin-bottom: 37px;
  font-size: 115%;
  text-align: center;
}
/*btn*/
.fax {
  pointer-events: none;
}
.footer_contact .btn {
  text-align: center;
  width: 32.5%;
}
.footer_contact .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  color: #fff;
  padding: 22px 5px;
  font-size: 1.2rem;
  white-space: nowrap;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
}
.footer_contact .btn a i {
  margin-right: 8px;
}
.footer_contact .btn a:hover {
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.fax {
  pointer-events: none;
}
@media (max-width: 970px) {
  .footer_contact .btn a {
    font-size: 1.9vw;
  }
}
@media (max-width: 750px) {
  .footer_contact::after {
    background-attachment: scroll;
  }
  .footer_contact .inner {
    width: 85%;
  }
  .footer_contact .maintitle {
    margin-bottom: 35px;
  }
  .ctext {
    text-align: left;
    margin-bottom: 27px;
    font-size: 95%;
  }
  .footer_contact {
    padding: 55px 0;
  }
  .footer_contact .flexbox {
    max-width: 330px;
    margin: auto;
  }
  .footer_contact .btn {
    margin-bottom: 8px;
    width: 100%;
    height: auto;
  }
  .footer_contact .btn a {
    font-size: 1.05rem;
  }
  .footer_contact .btn:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .footer_contact .btn a {
    font-size: 1rem;
    padding: 17px 5px;
  }
}
/* ロゴとアドレス */
.footer_address .flexbox {
  max-width: 850px;
  margin: auto;
}
.footer_address {
  position: relative;
  text-align: center;
  padding: 43px 10px 0;
}
.flogo {
  display: block;
  width: 97%;
  max-width: 390px;
  margin: 0 auto 13px;
}
.flogo a:hover {
  opacity: 0.6;
}
.footer_address p {
  margin-bottom: 125px;
  line-height: 1.75;
}
.footer_address p:last-child {
  margin-bottom: 0 !important;
}
.ib {
  display: inline-block;
}
.footer_address::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/footer.svg) repeat-x;
  background-size: 550px;
  background-position: bottom center;
  z-index: -20;
}
/* コピーライト */
.copyright {
  text-align: center;
  padding: 50px 0px 25px;
}
@media (max-width: 1075px) {
  .flogo {
    max-width: 350px;
  }
}
@media (max-width: 550px) {
  .footer_address p {
    font-size: 90%;
  }
  .flogo {
    max-width: 255px;
    margin-bottom: 13px;
  }
  .footer_address {
    padding: 40px 10px 0;
  }
  .copyright {
    font-size: 0.75rem;
    padding: 20px 0px 30px;
  }
}
/*ページ上に戻るボタン*/
.go_top {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #69492f;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 79;
  border-radius: 50px;
}
.go_top::before {
  font-family: "Font Awesome 6 Free";
  content: "\f124";
  font-weight: bold;
  color: #fff;
  font-size: 0.85rem;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 79;
}
@media(max-width:550px) {
  .go_top {
    width: 53px;
    height: 53px;
    right: 15px;
    bottom: 10px;
  }
  .go_top::before {
    font-size: 0.7rem;
  }
}
/* スライド =====================*/
.topillustwrap {
  position: relative;
}
.topillustwrap::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/_illust/l02.svg), url(../img/_illust/l01.svg);
  background-repeat: no-repeat;
  background-position: top -30px right -30px, bottom -30px left -30px;
  background-size: 16%, 22%;
  z-index: 1;
}
@media(max-width:1075px) {
  .topillustwrap::after {
    background-size: 20%, 24%;
  }
}
@media(max-width:550px) {
  .topillustwrap::after {
    background-size: 35%, 40%;
  }
}
/**/
.stl, .sbr {
  position: absolute;
  z-index: 1;
}
.stl {
  top: 0;
  left: 0;
  width: 25%;
  max-width: 330px;
}
.sbr {
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 470px;
}
/**/
.bleft, .bright {
  position: absolute;
  z-index: 2;
  width: 30%;
  max-width: 270px;
}
.bleft {
  bottom: 15%;
  left: 5%;
}
.bright {
  top: 7%;
  right: 5%;
}
@media(max-width:1500px) {
  .bleft, .bright {
    max-width: 190px;
  }
}
/**/
.topslide {
  overflow: hidden;
  position: relative;
  padding: 5%;
  padding-top: 0 !important;
}
.slide_items {
  position: relative;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.slide_items img {
  width: 100%;
  height: calc(100vh - 165px);
  min-height: 700px;
  object-fit: cover;
}
.catchcopy {
  white-space: nowrap;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.9rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  z-index: 2;
  line-height: 1.5;
  text-align: center;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff;
}
.catchcopy p {
  padding-bottom: 3%;
}
.catchcopy p::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/heart.png) no-repeat;
  background-size: 100%;
  background-position: bottom center;
  z-index: -1;
  opacity: 0.8;
}
.orange {
  color: #ffa13d;
}
.catchcopy .bi {
  display: block;
  color: #ff9696;
  font-size: 140%;
}
@media (max-width: 1500px) {
  .slide_items img {
    height: 100%;
    min-height: auto;
  }
}
@media (max-width: 1200px) {
  .slide_items img {
    height: 70vw;
  }
  .catchcopy {
    font-size: 3.5vw;
    text-shadow: 1.5px 1.5px 0 #fff, -1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px -1.5px 0 #fff, 0px 1.5px 0 #fff, 0 -1.5px 0 #fff, -1.5px 0 0 #fff, 1.5px 0 0 #fff;
  }
}
@media (max-width: 750px) {
  .slide_items img {
    height: 100vw;
  }
  .catchcopy {
    font-size: 5vw;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  }
}
@media (max-width: 550px) {
  .topslide {
    padding: 30px 2%;
  }
}
/* 私たちについて ============*/
.aboutus .inner {
  max-width: 1220px;
}
.aboutus .maintitle .mf span:nth-child(6) {
  text-transform: capitalize;
}
/* こんなお悩みありませんか？ ============*/
.problems {
  max-width: 1181px;
}
.wotitle {
  position: relative;
  font-size: clamp(1.25rem, -0.0625rem + 4.2vw, 2.3rem);
  font-weight: 700;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #ffa13d;
  margin-bottom: 70px;
}
.wotitle::before {
  content: url(../img/deco.svg);
  display: block;
  width: 100px;
  height: 50px;
  margin: 0 auto 2px;
  filter: invert(84%) sepia(17%) saturate(7496%) hue-rotate(329deg) brightness(102%) contrast(101%);
}
/**/
.worries {
  max-width: 975px;
  margin: auto;
  margin-bottom: 30px;
}
.worries p {
  position: relative;
  border-radius: 15px;
  padding: 15px 20px;
  background: #f5f3f0;
}
.worries p::before {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  font-weight: bold;
  font-size: 50%;
  position: relative;
  top: -3px;
  margin-right: 7px;
  opacity: 0.25;
}
/**/
.soltext {
  padding: 30px;
  border-radius: 15px;
  border: 3px solid #ffbdbd;
}
.soltext p:first-of-type {
  font-size: 140%;
  color: #ff9696;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 15px;
}
@media (max-width: 1315px) {
  .soltext p:first-of-type {
    text-align: left;
  }
  .soltext p:first-of-type br {
    display: none;
  }
}
@media (max-width: 900px) {
  .soltext p:first-of-type {
    font-size: 125%;
  }
}
@media (max-width: 750px) {
  .worries .w43, .solution .w43 {
    text-align: center;
  }
  .worries img, .solution img {
    width: 80%;
    margin: auto;
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .wotitle {
    margin-bottom: 33px;
  }
  .wotitle::before {
    width: 59px;
    height: 30px;
  }
  .worries p {
    padding: 13px 10px;
    font-size: 95%;
  }
  .soltext {
    padding: 23px 17px;
  }
  .soltext p:first-of-type {
    font-size: 115%;
  }
}
/* サービス内容 ============*/
.services {
  max-width: 1505px;
}
/*img*/
.careimgs {
  max-width: 920px;
  margin: 0 auto 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.careimgs div {
  width: 30%;
}
.careimgs div:nth-child(2) {
  width: 36%;
}
@media (max-width: 550px) {
  .careimgs {
    margin-bottom: 20px;
  }
  .careimgs div {
    width: 43%;
  }
  .careimgs div:nth-child(2) {
    width: 49%;
  }
  .careimgs div:nth-child(3) {
    margin: auto;
    margin-top: 3px;
  }
}
/**/
.serbox {
  margin-top: 60px;
  border-radius: 15px;
  padding: 65px 20px;
  background: #fffaed;
}
.carelist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.carelist li {
  display: flex;
  align-items: center;
  width: 31.3%;
  margin: 0 1% 15px;
  border-radius: 7px;
  background: #fff;
  padding: 15px 10px;
  font-size: 107%;
}
.carelist li span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
.carelist li span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: #ff9696;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media (max-width: 1300px) {
  .carelist li {
    width: 48%;
  }
}
@media (max-width: 1000px) {
  .carelist {
    display: block;
  }
  .carelist li {
    width: 100%;
    margin: 0 0 13px;
  }
}
@media (max-width: 550px) {
  .serbox {
    padding: 55px 15px;
  }
  .carelist li {
    font-size: 100%;
  }
}
/* 求人情報 ============*/
.recbox {
  padding: 60px 20px;
  border-radius: 15px;
  background: #fff;
  border: 4px solid #fff2d1;
}
.recbox .fitc {
  text-align: center;
}
@media (max-width: 700px) {
  .recbox .fitc {
    text-align: left;
  }
  .recbox .fitc br {
    display: none;
  }
}
@media (max-width: 550px) {
  .recbox {
    padding: 43px 20px;
  }
}
/*img*/
.twflex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1065px;
  margin: 40px auto 0;
}
.twflex .rounded {
  width: 48.5%;
  position: relative;
}
.twflex .rounded:first-child {
  right: -3%;
  top: -15px;
}
.twflex .rounded:last-child {
  left: -3%;
  top: 15px;
}
@media(max-width: 750px) {
  .twflex {
    display: block;
  }
  .twflex .rounded {
    width: 88%;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  .twflex .rounded:first-child {
    margin-bottom: 10px;
  }
  .twflex .rounded:last-child {
    margin-left: auto;
  }
}
/*illust*/
.wleft, .wright {
  position: absolute;
  width: 35%;
  max-width: 340px;
  z-index: 1;
}
.wleft {
  bottom: 0;
  left: -17px;
}
.wright {
  top: -40px;
  right: -17px;
}
@media(max-width: 1340px) {
  .wleft, .wright {
    max-width: 260px;
  }
}
@media(max-width: 550px) {
  .wleft, .wright {
    width: 160px;
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 120px 0 110px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.fv .inner {
  width: 97%;
}
.fv::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fv.webp);
  background-repeat: repeat !important;
  background-size: cover !important;
  background-position: 50% 35%;
  z-index: -1;
}
.fv::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #453020;
  opacity: 0.43;
  z-index: 1;
}
.fv h2 {
  text-align: center;
  margin-bottom: 13px !important;
  font-size: clamp(1.6rem, 0.35rem + 4vw, 2.6rem);
  line-height: 1.5;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 15%);
}
@media(max-width:1235px) {
  .fv {
    padding: 90px 0 70px;
  }
}
@media(max-width:550px) {
  .fv {
    padding: 40px 0 30px;
  }
}
/* breadcrumb */
.binner {
  font-weight: 700;
  line-height: 1.4;
  width: 97%;
  font-size: clamp(0.9rem, 0.65rem + 0.8vw, 1.1rem);
  position: relative;
  color: #fff;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
.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 .inner {
  max-width: 1264px;
}
/**/
.features .psr .tl, .features .psr .tr, .features .psr .bl, .features .psr .br {
  width: 40% !important;
  max-width: 210px;
}
/**/
.feabox {
  margin-bottom: 50px;
}
.feabox:last-of-type {
  margin-bottom: 0 !important;
}
.stitle .num {
  display: block;
  color: #ffa13d;
  font-family: "Josefin Sans", sans-serif;
  font-size: 90%;
}
.stitle .num span:first-of-type {
  text-transform: capitalize;
}
.numbi {
  font-size: 130%;
}
@media (max-width: 750px) {
  .feabox .spmgb {
    margin-bottom: 13px;
  }
}
/* できること */
.service .inner {
  max-width: 1300px;
}
.service .maintitle {
  margin-bottom: 60px;
}
.serviceflex {
  display: flex;
  flex-wrap: wrap;
  counter-reset: number 0;
}
.serviceflex div {
  width: 30%;
  margin: 0 1.6% 25px;
  padding: 23px 20px;
  position: relative;
  counter-increment: number 1;
}
.serviceflex div::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 7px 7px 0px 0px #fff2d1;
  z-index: -2;
}
/*number*/
.serviceflex div h2::after {
  content: "0"counter(number);
  position: absolute;
  bottom: 0;
  right: 7px;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  z-index: -1;
  opacity: 0.1;
  font-size: clamp(6rem, 4.75rem + 4vw, 7rem);
}
/*title*/
.serviceflex div h2 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 0.95rem + 0.8vw, 1.4rem);
  color: #ff9696;
}
.serviceflex div:nth-child(2n) h2 {
  color: #ffa13d;
}
@media(max-width:1220px) {
  .serviceflex div {
    width: 46.5%;
  }
}
@media(max-width:830px) {
  .serviceflex {
    display: block;
  }
  .serviceflex div {
    width: 100%;
    margin: 0 0 25px;
  }
  .serviceflex div:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media(max-width:550px) {
  .service .maintitle {
    margin-bottom: 40px;
  }
  .serviceflex div {
    padding: 15px;
  }
}
/* ご利用案内ページ ===========================================================================================================*/
/* ご利用の流れ */
.flow .inner {
  width: 98%;
  max-width: 900px;
}
/* ご利用料金 */
.data .maintitle {
  margin-bottom: 45px;
}
@media(max-width:750px) {
  .data .maintitle {
    margin-bottom: 37px;
  }
}
.data .inner {
  max-width: 1155px;
}
.data .flexbox .w49 {
  margin-bottom: 10px;
}
.data .flexbox .w48:last-of-type {
  margin-bottom: 0 !important;
}
.datalist {
  margin-bottom: 30px;
  display: block;
  height: 100%;
}
.datalist:last-child {
  margin-bottom: 0;
}
.datalist div {
  margin-bottom: 10px;
}
/**/
.datalist a {
  background: #fff;
  color: #69492f;
  border-radius: 7px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  height: 100%;
  margin-bottom: 7px;
  border: 3px solid #fff5db;
}
.datalist a:hover {
  opacity: 0.6;
}
.datalist a span {
  position: relative;
  padding-left: 20px;
  display: inline-block;
}
.datalist a span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  font-weight: bold;
  display: inline-block;
  color: #eb441e;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media(max-width:750px) {
  .datalist div {
    margin-bottom: 5px;
  }
  .datalist a {
    padding: 10px 8px;
  }
}
/* 対応エリア */
.area .inner {
  max-width: 930px;
}
.area .acheck li {
  font-size: 110%;
}
/*list*/
.acheck li {
  padding-left: 21px;
  position: relative;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  color: #ffa13d;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
@media(max-width:550px) {
  .area .maintitle {
    margin-bottom: 30px;
  }
  .area .acheck li {
    font-size: 100%;
  }
  .areaimg {
    width: 80% !important;
    margin: auto;
  }
}
/* 求人情報ページ ===========================================================================================================*/
/* スタッフ紹介 */
.member .inner {
  max-width: 1450px;
  width: 96%;
}
.memberflex {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.memberflex div {
  width: 23%;
  margin: 0 1% 25px;
  background: #fff;
  border-radius: 15px;
  padding: 20px 15px 15px;
  border: 3px solid #fff5db;
}
.memberflex div img {
  display: block;
  width: 100%;
  max-width: 255px;
  border-radius: 15px;
  margin: 0 auto 5px;
}
.memberflex div h2 {
  font-weight: 700;
  margin-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.5rem);
}
.memberflex div h2 span {
  font-size: 70%;
  margin-right: 7px;
  color: #ff9696;
}
@media(max-width:1200px) {
  .member .inner {
    width: 88%;
  }
  .memberflex div {
    width: 48%;
  }
  .memberflex div img {
    max-width: 400px;
  }
}
@media(max-width:750px) {
  .memberflex {
    display: block;
  }
  .memberflex div {
    width: 100%;
  }
}
/* 募集要項 */
.req {
  max-width: 1100px;
  margin: 0 auto 65px;
}
.req:last-of-type {
  margin-bottom: 0 !important;
}
.req .mtitle {
  margin-bottom: 5px;
}
/* フィルター */
.disabled_wrap {
  position: relative;
}
.disabled_wrap::before {
  content: '';
  width: 100.5%;
  height: 102%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.disabled_wrap div {
  overflow: hidden;
  filter: blur(3px);
}
.disabled_wrap .disabled_text {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 0 8px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.3rem, 0.425rem + 2.8vw, 2rem);
  line-height: 1.6;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
@media (max-width: 750px) {
  .disabled_wrap .disabled_text {
    top: 50px;
  }
}
/* 法人概要ページ ===========================================================================================================*/
/* ご挨拶 */
.glast {
  margin-top: 23px;
  text-align: right;
}
@media(max-width:550px) {
  .greeting .wleft {
    width: 43%;
  }
}
/* 会社概要 */
/*table*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border-bottom: 1px dotted #8a6666;
}
.info_table th {
  background: transparent;
  width: 35%;
}
.info_table th, .info_table td {
  font-weight: 700;
  padding: 23px 0;
}
.info_table td {
  padding-left: 10px;
  padding-right: 10px;
  width: 65%;
  background: transparent;
}
@media(max-width: 550px) {
  .info_table tr {
    border-bottom: none;
  }
  .info_table td {
    border-bottom: 1px dotted #8a6666;
    margin-bottom: 0;
  }
  .info_table td, .info_table th {
    width: 100%;
    padding: 8px 0 18px;
    display: block;
  }
  .info_table th {
    text-align: left;
    padding-bottom: 0;
    padding-top: 13px;
    font-weight: 700;
    font-size: 107%;
  }
}
/* アクセスマップ */
.map iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  border: 3px solid #ededed !important;
}
@media(max-width:550px) {
  .map iframe {
    height: 280px;
  }
}
/* お問い合わせページ ===========================================================================================================*/
.contact_sec {
  position: relative;
}
.contact_sec .inner, .privacy .inner {
  max-width: 970px;
}
/*電話でのお問い合わせ*/
.tels .maintitle {
  margin-bottom: 23px;
}
.contop {
  margin-bottom: 60px;
}
@media(max-width:550px) {
  .contop {
    margin-bottom: 40px;
  }
}
/**/
.telwraptitle {
  white-space: nowrap;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  line-height: 1;
  background: #ffa13d;
  border-radius: 40px;
  color: #fff;
  padding: 17px 45px;
}
/*枠*/
.contact_wrap {
  padding: 50px 15px 40px;
  background: #fff;
  max-width: 640px;
  margin: auto;
  border-radius: 15px;
  border: 3px solid #ffbc75;
  position: relative;
  text-align: center;
}
/*電話番号*/
.contact_wrap a {
  font-size: clamp(1.7rem, 0.7rem + 3.2vw, 2.5rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #69492f;
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
}
.contact_wrap a i {
  color: #ffa13d;
  margin-right: 4px;
}
.contact_wrap a:hover {
  opacity: 0.6;
}
/*営業時間*/
.tel_mini_exp {
  text-align: center;
}
.tel_mini_exp p {
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .contact_wrap {
    margin-bottom: 7px;
  }
  .contact_wrap:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .telwraptitle {
    top: -20px;
    font-size: 1.07rem;
    padding: 10px 15px 12px;
  }
  .contact_wrap {
    max-width: 100%;
    padding: 33px 5px 25px;
  }
  .tel_mini_exp {
    font-size: 92%;
    margin-top: 7px;
  }
}
/* メール ===================*/
.mnote {
  max-width: 905px;
  margin: auto;
  margin-top: 50px;
}
@media(max-width:550px) {
  .mnote {
    margin-top: 40px;
  }
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 0.9px dotted #6e050b;
}
.mailform .row div {
  text-align: left;
}
.mailform .row div:nth-child(1) {
  width: 28%;
  font-size: 97%;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  color: #fff;
  background: #ff9696;
  padding: 6px 5px 5px;
  margin-right: 5px;
  font-size: 12px;
  border-radius: 3px;
}
.mailsp {
  background: #fff !important;
  border: 1px solid #ff9696;
  color: #ff9696 !important;
}
.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 button {
  display: block;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  color: #fff;
  background: #ff9696;
  border: 2px solid #ff9696;
  width: 270px;
  padding: 27px 0;
  transition: .4s;
  border-radius: 50px;
}
.mailform button:hover {
  background: #fff;
  color: #ff9696;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.mails {
  padding-bottom: 60px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
  display: none;
}
.mailform input[type=checkbox] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
  background: #fff;
  border: 1px solid #b5b5b5;
  content: '';
  display: block;
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
  border-right: 3px solid #ff9696;
  border-bottom: 3px solid #ff9696;
  content: '';
  display: block;
  height: 13px;
  width: 7px;
  opacity: 0;
  position: absolute;
  top: 0.35em;
  left: 4px;
  transform: rotate(45deg);
  transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
  opacity: 1;
}
@media (max-width: 800px) {
  .mailform .row:first-of-type {
    padding-top: 3px !important;
  }
  .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: 550px) {
  .mailform input[type=checkbox] + label {
    display: block;
  }
  .mails {
    padding-bottom: 40px;
  }
  .mailform button {
    width: 210px;
    padding: 17px 0;
  }
  .selection small {
    font-size: 0.8rem;
  }
}
/* 個人情報の取り扱いについて */
.privacy {
  padding-top: 0;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.accordion-title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: clamp(1rem, 0.5rem + 1.6vw, 1.4rem);
  padding: 15px 35px 15px 15px;
  transition: all .5s ease;
  background: #ffa13d;
  line-height: 1.5;
  color: #fff;
  border-radius: 7px;
}
.privacy .accordion-title span {
  position: relative;
  padding-left: 27px;
  display: inline-block;
}
.privacy .accordion-title span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f023";
  font-weight: bold;
  margin-right: 10px;
  font-size: 80%;
  position: absolute;
  top: 0.15em;
  left: 0;
}
/*アイコンの＋と×*/
.privacy .accordion-title::before, .privacy .accordion-title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background: #fff;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.privacy .accordion-title::before {
  transform: rotate(0deg);
}
.privacy .accordion-title::after {
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.privacy .accordion-title.close::before {
  transform: rotate(45deg);
}
.privacy .accordion-title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.accordion-text {
  display: none; /*はじめは非表示*/
  background: #fff;
  padding: 13px 25px;
  font-size: 95%;
}
.accordion-text span {
  font-size: 103%;
}
.accordion-text span::before {
  content: "■";
  display: inline-block;
  font-size: 80%;
  margin-right: 0.35em;
  transform: translateY(-1px);
  color: #ffa13d;
}
@media (max-width: 550px) {
  .privacy .accordion-title::before, .privacy .accordion-title::after {
    width: 11px;
  }
  .privacy .accordion-title span {
    padding-left: 20px;
  }
  .accordion-text {
    padding: 13px;
    font-size: 93%;
  }
}