@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #333;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #333;
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

figcaption, figure, main,
article, aside, footer,
header, nav, section {
  display: block;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: flex;
}

.flex-row {
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 0.3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 0.3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: flex;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
 /***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  padding: 10px 28px;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
}

.toggle__bar {
  position: relative;
  margin: 8px auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.toggle__bar, .toggle__bar::before, .toggle__bar::after {
  display: block;
  width: 37px;
  height: 4px;
  background-color: #333;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
}

.toggle__bar::before, .toggle__bar::after {
  position: absolute;
  content: "";
}

.toggle__bar::before {
  top: -12px;
}

.toggle__bar::after {
  top: 12px;
}

.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  transform: translateY(12px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  transform: translateY(-12px) rotate(-45deg);
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

.gnav {
  position: fixed;
  right: 0;
  top: 115px;
  max-width: 375px;
  width: 100%;
  height: calc(100svh - 115px);
  background: #fff;
  z-index: 6;
  padding: 20px 30px;
  transform: translateX(100%);
  transition: all 0.6s;
}

.gnav.active {
  transform: translateX(0);
}

.gnav .main-menu {
  transition: all 0.3s linear;
  overflow: hidden;
}

.gnav .main-menu li {
  text-align: left;
  line-height: 3;
  transition: all 0.3s ease-in;
  transform: translate3d(-500px, 0, 0);
  opacity: 0;
  pointer-events: none;
}

.gnav.active .main-menu li {
  transition: all 0.9s ease-out;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: all;
}

.gnav.active .main-menu li:nth-child(2) {
  transition-delay: 0.1s;
}

.gnav.active .main-menu li:nth-child(3) {
  transition-delay: 0.2s;
}

.gnav.active .main-menu li:nth-child(4) {
  transition-delay: 0.3s;
}

.gnav.active .main-menu li:nth-child(5) {
  transition-delay: 0.4s;
}

 /***************************

 header

***************************/
.fixedmenu {
  background: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header-inner {
  width: 100%;
  padding: 15px 35px;
}

header .logo {
  width: 205px;
}

.form-link {
  width: calc(100% - 295px);
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-right: 60px;
}

.form-link li a {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
}

.form-link .file a {
  background: #43240F;
}

.form-link .file a:before {
  display: inline-block;
  content: '';
  width: 22px;
  height: 21px;
  background: url(../img/common/icn-book.png);
  margin-right: 10px;
}

.form-link .contact a {
  background: #F36879;
}

.form-link .contact a:before {
  display: inline-block;
  content: '';
  width: 23px;
  height: 18px;
  background: url(../img/common/icn-mail.png);
  margin-right: 10px;
}

@media screen and (max-width: 900px) {
  .form-link li a {
    font-size: 1.8rem;
  }

  .form-link li a:before {
    vertical-align: middle;
  }
}
@media screen and (max-width: 768px) {
  .form-link .file a:before,
  .form-link .contact a:before {
    margin-right: 0;
  }
}
@media (max-width: 768px) and (min-width: 601px) {
  .form-link li a span {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  header .logo {
    width: 130px;
  }

  .gnav {
    top: 87px;
    height: calc(100svh - 87px);
  }

  .form-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-right: 0;
    gap: 0;
  }

  .form-link li {
    width: 50%;
  }

  .form-link li a {
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .form-link li a span {
    margin-left: 10px;
  }
}
@media screen and (max-width: 425px) {
  .form-link li a {
    font-size: 1.4rem;
  }

  .form-link .file a:before, .form-link .contact a:before {
    width: 18px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@media screen and (max-width: 320px) {
  .form-link li a {
    font-size: 1.2rem;
  }
}
 /***************************

layout/footer.scss

***************************/
footer {
  background: #43240F;
  color: #fff;
  font-weight: normal;
  padding: 15px 20px;
}

footer .copy {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-align: center;
}

@media screen and (max-width: 600px) {
  footer {
    margin-bottom: 53px;
  }
}
@media screen and (max-width: 425px) {
  footer {
    margin-bottom: 48px;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container_m {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

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

  .pc {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.bold {
  font-weight: bold;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.zen-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.fredoka {
  font-family: "Fredoka", sans-serif;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg_01 {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 50px;
}

.hdg_01 .ja {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}

/***************************

object/project/top.scss

***************************/
.main {
  width: 100%;
}

.top01 {
  width: 100%;
  overflow: hidden;
}

.main-visual {
  position: relative;
  background: #FFF8E9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 140px 30px 100px;
}

.main-visual:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/top/mv-back.png) repeat;
}

.main-visual:after {
  position: absolute;
  content: '';
  width: 1800px;
  height: 600px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -350px;
}

@media screen and (min-width: 1501px) {
  .main-visual:after {
    width: 130%;
  }
}
.main-visual img {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 600px) {
  .main-visual {
    padding: 100px 30px 80px;
  }

  .main-visual:after {
    width: 1200px;
    height: 400px;
    bottom: -200px;
  }
}
@media screen and (max-width: 425px) {
  .main-visual:after {
    width: 900px;
    height: 300px;
    bottom: -150px;
  }
}
.top02 {
  width: 100%;
  margin-bottom: 100px;
}

.sampling-content {
  width: 100%;
}

.sampling-content-sub_ttl {
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.sampling-content-sub_ttl:after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, transparent 50%, #FE6B75 50%);
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.sampling-content-sub_ttl span {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 5px;
  background: #FE6B75;
  padding: 5px 20px;
}

.sampling-content-ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 70px;
}

.sampling-content-ttl span {
  border-bottom: 3px dotted #43240F;
}

.sampling-about {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 450px;
  gap: 30px;
}

.sampling-about :before {
  position: absolute;
  content: '';
  width: 245px;
  height: 72px;
  background: url(../img/top/our-parts.png);
  top: 0;
  right: -40px;
  z-index: -1;
}

.sampling-about .img {
  width: 35%;
  overflow: hidden;
}

.sampling-about .img img {
  width: 70%;
}

.sampling-about .text {
  width: 50%;
  padding: 20px 11vw 20px 3vw;
}

.sampling-about .text h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.sampling-about .text h4 span {
  color: #FE6B75;
}

.sampling-about .text p {
  line-height: 2;
  letter-spacing: 0.04em;
}

.sampling-flow {
  width: 100%;
  border-radius: 25px;
  background: #FFF8E9;
  padding: 100px 20px;
}

.sampling-flow-list {
  position: relative;
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
  gap: 20px;
}

.sampling-flow-list:before {
  position: absolute;
  content: '';
  width: calc(100% - 235px);
  height: 3px;
  background: #FDD23E;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.sampling-flow-list li {
  position: relative;
  max-width: 235px;
  width: 100%;
}

.sampling-flow-list .num {
  width: 72px;
  height: 72px;
  font-family: "Fredoka", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 52px;
  background: #FDD23E;
  border-radius: 100%;
  margin: 0 auto;
  border: 10px solid #FFF8E9;
}

.sampling-flow-list .img {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.sampling-flow-list p {
  text-align: center;
}

@media screen and (max-width: 1350px) {
  .sampling-about .text {
    width: 560px;
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .sampling-about :before {
    bottom: 0;
    top: inherit;
  }

  .sampling-about .img img {
    width: 85%;
    transform: translateX(0);
  }

  .sampling-about .text {
    width: 100%;
  }

  .sampling-about .text h4 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sampling-about {
    margin-bottom: 70px;
  }

  .sampling-content-ttl {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .sampling-content-sub_ttl span {
    font-size: 1.6rem;
  }

  .sampling-about .text h4 {
    font-size: 2.8rem;
  }

  .sampling-flow {
    padding: 50px 20px;
  }

  .sampling-flow-list {
    flex-wrap: wrap;
  }

  .sampling-flow-list:before {
    display: none;
  }

  .sampling-flow-list li {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 425px) {
  .sampling-flow-list li {
    max-width: 100%;
    display: flex;
  }

  .sampling-flow-list .box {
    width: calc(100% - 90px);
  }

  .sampling-flow-list .num {
    margin-top: 20px;
    margin-left: 0;
  }

  .sampling-flow-list .img {
    margin-top: 0;
    text-align: left;
  }

  .sampling-flow-list p {
    text-align: left;
  }
}
.top03 {
  width: 100%;
  margin-bottom: 100px;
}

.area-map {
  text-align: center;
  margin-top: 50px;
}

.area-map-under {
  margin-top: 20px;
}

.area-map-under span {
  display: inline-block;
  padding: 10px 15px;
  background: #fff8e9;
}

@media screen and (max-width: 768px) {
  .top03 {
    margin-bottom: 50px;
  }
}
.top04 {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 180px;
}

.price-content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  background: #FFF8E9;
  border-radius: 25px;
}

.price-table-wrap {
  max-width: 1015px;
  width: 100%;
  margin: 0 auto;
}

.price-text-wrap {
  max-width: 1015px;
  width: 100%;
  margin: 0 auto;
}

.price-table-wrap table {
  width: 100%;
}

.price-table-wrap thead tr {
  border-bottom: 1px solid #707070;
}

.price-table-wrap thead th {
  font-size: 1.6rem;
  font-weight: 500;
}

.price-table-wrap thead th span {
  font-size: 1.4rem;
  font-weight: 400;
}

.price-table-wrap thead th:first-child {
  width: 200px;
  text-align: center;
  letter-spacing: 0.04em;
  padding: 20px 0;
}

.price-table-wrap thead th:not(:first-child) {
  background: #FDD23C;
}

.price-table-wrap thead th:nth-child(2) {
  border-top-left-radius: 5px;
}

.price-table-wrap thead th:last-child {
  border-top-right-radius: 5px;
}

.price-table-wrap thead th:not(:last-child) {
  border-right: 1px dotted #fff;
}

.price-table-wrap tbody tr:not(:last-child) {
  border-bottom: 1px solid #707070;
}

.price-table-wrap tbody td {
  background: #fff;
  text-align: center;
  padding: 20px 0;
}

.price-table-wrap tbody td {
  font-size: 1.6rem;
  font-weight: 500;
}

.price-table-wrap tbody td span {
  font-size: 1rem;
  font-weight: 400;
}

.price-table-wrap tbody td:not(:last-child) {
  border-right: 1px dotted #707070;
}

.price-table-wrap tfoot tr {
  border-top: 1px solid #707070;
}

.price-table-wrap tfoot td {
  text-align: center;
  padding: 20px 0;
  background: #F9EBCC;
}

.price-table-wrap tfoot td:not(:last-child) {
  border-right: 1px dotted #707070;
}

@media screen and (max-width: 900px) {
  .price-table-wrap {
    overflow-x: scroll;
  }

  .price-table-wrap table {
    min-width: 820px;
  }
}
@media screen and (max-width: 768px) {
  .top04 {
    margin-bottom: 90px;
  }

  .price-content {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 600px) {
  .price-table-wrap thead th:first-child,
  .price-table-wrap tbody td,
  .price-table-wrap tfoot td {
    padding: 10px 0;
  }
}
.top05 {
  position: relative;
  width: 100%;
  padding-top: 80px;
  margin-bottom: 180px;
  background: linear-gradient(180deg, transparent 300px, #FFF8E9 300px, #FFF8E9 70%, transparent);
  overflow: hidden;
}

.top05:before {
  position: absolute;
  content: '';
  width: 1800px;
  height: 600px;
  background: #FFF8E9;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}

@media screen and (min-width: 1501px) {
  .top05:before {
    width: 130%;
  }
}
@media screen and (max-width: 768px) {
  .top05 {
    padding-top: 100px;
    margin-bottom: 90px;
  }
}
.top06 {
  width: 100%;
  margin-bottom: 110px;
}

.form-wrap {
  max-width: 950px;
  width: 100%;
  margin: 50px auto 0;
}

.form-wrap dl {
  width: 100%;
  margin-bottom: 50px;
}

.form-wrap .form-block {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dotted #707070;
}

.form-wrap .form-block.vt_align_top {
  align-items: flex-start;
}

.form-wrap .form-block dt {
  width: 265px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.form-wrap .form-block.vt_align_top dt {
  margin-top: 10px;
}

.form-wrap .form-block dt span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2px 10px;
  background: #FDD23E;
  border-radius: 3px;
  margin-right: 10px;
}

.form-wrap .form-block dd {
  width: calc(100% - 265px);
}

.form-wrap input[type=radio] {
  display: none;
}

.form-wrap input[type=checkbox] {
  display: none;
}

.form-wrap .form-block-item-label,
.form-wrap label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  line-height: 2;
  font-size: 1.8rem;
  line-height: 1.4;
}

.form-wrap label {
  padding-left: 0;
}

.form-wrap .form-block-item-label::after, .form-wrap .form-block-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.3s;
}

.form-wrap .form-block-item-label::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #EFEFEF;
  border-radius: 50%;
}

.form-wrap .privacy-check .form-block-item-label::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 0;
}

.form-wrap .form-block-item-label::before {
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 9px;
  height: 9px;
  background: #FDD23E;
  border-radius: 100%;
  opacity: 0;
  z-index: 1;
  border: 0;
}

.form-wrap .privacy-check .form-block-item-label::before {
  left: 6px;
  top: 5px;
  transform: rotate(-45deg);
  margin-top: 0;
  width: 15px;
  height: 8px;
  background: transparent;
  border-left: 2px solid #F36879;
  border-bottom: 2px solid #F36879;
  border-radius: 0;
  opacity: 0;
  z-index: 1;
}

.form-wrap input[type=radio]:checked + .form-block-item-label::before {
  opacity: 1;
}

.form-wrap input[type=checkbox]:checked + .form-block-item-label::before {
  opacity: 1;
}

.form-wrap .form-block-item:not(:last-child) {
  margin-right: 40px;
}

.form-wrap input[type=text],
.form-wrap input[type=email],
.form-wrap input[type=tel] {
  max-width: 100%;
  width: 100%;
  height: 44px;
  background: #fff;
  border: 1px solid #EFEFEF;
  border-radius: 3px;
  padding: 10px 20px;
}

.form-wrap textarea {
  max-width: 100%;
  width: 100%;
  height: 180px;
  background: #fff;
  border: 1px solid #EFEFEF;
  border-radius: 3px;
  padding: 10px 20px;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  font-size: 1.6rem;
  font-weight: 500;
  color: #BCBCBC;
  letter-spacing: 0.04em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.6rem;
  font-weight: 500;
  color: #BCBCBC;
  letter-spacing: 0.04em;
}

.privacy-area {
  width: 100%;
  border-radius: 5px;
  background: #FFF8E9;
  padding: 30px;
}

.privacy-area h3 {
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}

.privacy-area .privacy-content {
  width: 100%;
  height: 180px;
  overflow-y: scroll;
  margin-bottom: 30px;
  background: #fff;
  padding: 15px;
}

.privacy-area .privacy-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.privacy-area .privacy-content h5 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.privacy-area .privacy-content p {
  font-weight: 400;
  font-size: 1.4rem;
}

.privacy-check {
  text-align: center;
}

.privacy-check .form-block-item-label {
  font-size: 1.6rem;
}

.privacy-check a {
  color: #F36879;
  text-decoration: underline;
}

.privacy-check .req {
  display: inline-block;
  font-size: 1.4rem;
  padding: 3px 10px;
  background: #FDD23E;
  border-radius: 3px;
  margin-left: 10px;
}

.submit-wrap {
  text-align: center;
  margin-top: 60px;
}

.submit-wrap input[type=submit] {
  max-width: 365px;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: #F36879;
  padding: 25px 20px;
}

.submit-wrap input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.65;
}

@media screen and (max-width: 768px) {
  .top06 {
    margin-bottom: 60px;
  }

  .form-wrap .form-block {
    padding: 15px 0;
  }

  .form-wrap .form-block.vt_align_top dt {
    margin-top: 0;
  }
}
@media screen and (max-width: 700px) {
  .form-wrap .form-block {
    flex-wrap: wrap;
    gap: 10px;
  }

  .form-wrap .form-block dt {
    width: 100%;
  }

  .form-wrap .form-block dd {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .form-wrap .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .form-wrap .form-block-item {
    width: 100%;
  }

  .form-wrap .form-block-item:not(:last-child) {
    margin-right: 0;
  }
}
.sampling-about02 {
  position: relative;
  overflow: hidden;
}
.sampling-about02 .img01 {
  position: absolute;
  bottom: 230px;
  right: 20px;
}
.sampling-about02 .img02 {
  position: absolute;
  bottom: 100px;
  left: 15%;
}

@media screen and (min-width: 1360px) {
  .sampling-about02 {
    position: relative;
    overflow: hidden;
  }
  .sampling-about02 .img01 {
    position: absolute;
    bottom: 250px;
    right: -50px;
  }
  .sampling-about02 .img02 {
    position: absolute;
    bottom: 100px;
    left: 18%;
  }
}
@media screen and (max-width: 1200px) {
  .sampling-about .img img {
    width: 80%;
  }

  .sampling-about {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 340px;
  }
  .sampling-about .text {
    margin: 0 auto;
  }
  .sampling-about .img {
    width: 50%;
    margin-top: 80px;
  }

  .sampling-about02 {
    position: relative;
    overflow: hidden;
  }
  .sampling-about02 .img01 {
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    bottom: auto;
    right: -20px;
    width: 50%;
    text-align: right;
  }
  .sampling-about02 .img02 {
    position: absolute;
    bottom: 100px;
    left: 40%;
    width: 50%;
    text-align: right;
  }
}
@media screen and (max-width: 769px) {
  .sampling-about02 {
    position: relative;
    overflow: hidden;
  }
  .sampling-about02 .img01 {
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    bottom: auto;
    right: -20px;
    width: 50%;
  }
  .sampling-about02 .img02 {
    position: absolute;
    bottom: 100px;
    left: 25%;
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .sampling-about {
    padding-bottom: 210px;
  }

  .sampling-about02 {
    position: relative;
    overflow: hidden;
  }
  .sampling-about02 .img01 {
    position: absolute;
    top: 55%;
    transform: translateY(-55%);
    bottom: auto;
    right: -20px;
    width: 50%;
  }
  .sampling-about02 .img02 {
    position: absolute;
    bottom: 100px;
    left: 25%;
    width: 50%;
  }
}
/* 250114 */
.top07 {
  margin-bottom: 110px;
}

.w-320 {
  max-width: 320px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.privacy-content ol {
  counter-reset: reset;
}

.privacy-content ol li {
  font-weight: 400;
  font-size: 1.4rem;
}

.privacy-content ol li {
  position: relative;
  counter-increment: count;
  padding-left: 2em;
}

.privacy-content ol li:before {
  position: absolute;
  left: 0;
  content: counter(count) ". ";
}

.privacy-content .privacy-list02 {
  counter-reset: count 8;
}

.privacy-content .privacy-list03 {
  counter-reset: count 10;
}

.privacy-content .privacy-list03 > li > ol {
  counter-reset: count2;
  margin-top: 10px;
}

.privacy-content .privacy-list03 > li > ol > li {
  position: relative;
  counter-increment: count2;
  padding-left: 1.5em;
}

.privacy-content .privacy-list03 > li > ol > li:before {
  content: counter(count2,lower-latin) ".";
}

.privacy-content .privacy-list03 > li > ol > li > ol {
  counter-reset: count3;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy-content .privacy-list03 > li > ol > li > ol > li {
  counter-increment: count3;
  padding-left: 1.5em;
}

.privacy-content .privacy-list03 > li > ol > li > ol > li:before {
  content: counter(count3,lower-roman) ".";
}

.privacy-content .privacy-list04 {
  counter-reset: count 12;
}

.privacy-content .privacy-list04 > li > ol {
  counter-reset: count2;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy-content .privacy-list04 > li > ol > li {
  position: relative;
  counter-increment: count2;
  padding-left: 1.5em;
}

.privacy-content .privacy-list04 > li > ol > li:before {
  content: counter(count2,lower-latin) ".";
}

@media screen and (max-width: 768px) {
  .top07 {
    margin-bottom: 60px;
  }
}
.top08 {
  width: 100%;
  background: #FFF8E9;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  .top08 {
    padding: 50px 0;
  }
}

.group-box {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.group-box h4 {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.group-box h4 span {
  border-bottom: 3px dotted #43240F;
}

.lh_2 {
  line-height: 2;
}

.top08 p a {
  color: #F36879;
  text-decoration: underline;
}
