@charset "UTF-8";
/****************************************

リセットCSSここから

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

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

メディアクエリ/レスポンシブ用mixin

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

body設定(主に書式)

*****************************************/
body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  background: #f2f2f2;
  line-height: 1.8;
  letter-spacing: 0.05em;
  min-width: 1180px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/****************************************

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  float: none;
  margin: 0 auto;
  overflow: hidden;
  transition: 0.7s ease-in-out;
}

@media screen and (max-width: 767px) {
  #wrapper {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
}
/****************************************

フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p {
  font-size: 1.6em;
}

h1 {
  font-size: 3.6em;
  color: #212121;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0.07em;
}

h2 {
  font-size: 2.8em;
  color: #212121;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0.07em;
}

h3 {
  font-size: 2.4em;
  color: #212121;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h4 {
  font-size: 2em;
  font-weight: bold;
  color: #333;
}

h5 {
  font-size: 1.4em;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.4em;
  }
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.8em;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link, a:visited {
  font-weight: normal;
  color: #c9440c;
  text-decoration: underline;
  transition: 0.2s linear;
}
a:hover, a:active {
  font-weight: normal;
  color: #52b21f;
  text-decoration: none;
  transition: 0.2s linear;
}
a:hover img.img_opacity {
  opacity: 0.75;
  filter: alpha(opacity=75);
  transition: 0.2s linear;
}
a img.img_opacity {
  transition: 0.2s linear;
}
a:hover img.img_up {
  transform: translateY(-5px);
  transition: 0.3s linear;
}
a img.img_up {
  transition: 0.3s linear;
}

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

ローディング

*****************************************/
.loading {
  width: 100%;
  height: 100vh;
  transition: all 1s;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  position: relative;
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation svg {
  width: 516px;
  height: auto;
}
.loading-animation svg .cls-3 {
  fill: #333;
  stroke-width: 0px;
}
.loading-animation svg #logo_bg .cls-2 {
  fill: #fff;
}
.loading-animation svg #circle_line .cls-1 {
  fill: none;
  stroke: #333;
  stroke-miterlimit: 10;
  stroke-width: 12.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1300px;
  stroke-dashoffset: 1300px;
  animation: loadLineAnime 3s forwards;
  animation-delay: 1s;
}
.loading-animation svg #earth_line path {
  opacity: 0;
  animation: loadEarthAnime 1.5s forwards;
  animation-delay: 1.8s;
}
.loading-animation svg #heart path {
  opacity: 0;
  transform-origin: center center;
  animation: loadHeartAnime 0.8s forwards ease-in;
  animation-delay: 3s;
}
.loading-animation svg #arrow01 {
  opacity: 0;
  transform: scale(0.6, 0.6);
  transform-origin: center center;
  animation: loadArrowAnime01 1.2s forwards;
  animation-delay: 4s;
}
.loading-animation svg #arrow02 {
  opacity: 0;
  transform: scale(0.6, 0.6);
  transform-origin: center center;
  animation: loadArrowAnime02 1.2s forwards;
  animation-delay: 4s;
}
.loading-animation svg #arrow03 {
  opacity: 0;
  transform: scale(0.6, 0.6);
  transform-origin: center center;
  animation: loadArrowAnime03 1.2s forwards;
  animation-delay: 4s;
}

@keyframes loadLineAnime {
  0% {
    stroke-dashoffset: 1300px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
@keyframes loadEarthAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadHeartAnime {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  90% {
    opacity: 1;
    transform: scale(1.1);
  }
  95% {
    opacity: 1;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes loadArrowAnime01 {
  0% {
    opacity: 1;
    transform: scale(0.6, 0.6);
  }
  10% {
    opacity: 1;
    transform: scale(0.6, 0.6);
  }
  80% {
    opacity: 1;
    transform: scale(1, 1.1);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes loadArrowAnime02 {
  0% {
    opacity: 1;
    transform: scale(0.6, 0.6);
  }
  10% {
    opacity: 1;
    transform: scale(0.6, 0.6);
  }
  80% {
    opacity: 1;
    transform: scale(1, 1.1);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes loadArrowAnime03 {
  0% {
    opacity: 1;
    transform: scale(0.6, 0.6);
  }
  10% {
    opacity: 1;
    transform: scale(0.6, 0.6);
  }
  80% {
    opacity: 1;
    transform: scale(1.1, 1);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.loading svg .stop1 {
  animation-name: stop1;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}

.loading svg .stop2 {
  animation-name: stop2;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}

.loading svg .stop3 {
  animation-name: stop3;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}

.loading svg .stop4 {
  animation-name: stop4;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}

.loading svg .stop5 {
  animation-name: stop5;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}

.loading svg .stop6 {
  animation-name: stop6;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 4.8s;
}

.loading svg #grad .cls-3 {
  fill: url(#loading_grad);
}

.loading svg #grad .cls-1 {
  stroke: url(#loading_grad);
}

@keyframes stop1 {
  0% {
    stop-color: #333;
  }
  100% {
    stop-color: #d5a23d;
  }
}
@keyframes stop2 {
  0% {
    stop-color: #333;
  }
  100% {
    stop-color: #30b2d5;
  }
}
@keyframes stop3 {
  0% {
    stop-color: #333;
  }
  100% {
    stop-color: #3e7a44;
  }
}
@keyframes stop4 {
  0% {
    stop-color: #333;
  }
  100% {
    stop-color: #f7b62b;
  }
}
@keyframes stop5 {
  0% {
    stop-color: #333;
  }
  100% {
    stop-color: #e8402a;
  }
}
@keyframes stop6 {
  0% {
    stop-color: #333;
  }
  100% {
    stop-color: #1b8dc9;
  }
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .loading-animation svg {
    width: 220px;
  }
}
/****************************************

pcヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_navi,
  #toggle {
    display: none;
  }
  header {
    position: relative;
    padding: 0 0 80px;
  }
  header:before {
    position: absolute;
    content: "";
    background: url(../images/header_shadow.png) left top no-repeat;
    width: 59%;
    max-width: 1133px;
    height: 439px;
    right: 0;
    top: 0;
    z-index: 2;
    mix-blend-mode: color-burn;
    transition: 0.7s ease-in-out;
  }
  .header_top {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1%;
  }
  .header_top .logo {
    position: relative;
    line-height: 1;
  }
}
.scroll_btn {
  position: absolute;
  right: -6%;
  bottom: -54px;
  z-index: 6;
}
.scroll_btn img {
  animation-name: scrollBtn;
  animation-duration: 14s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.scroll_btn:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 80px;
  background: #333;
  inset: 0;
  margin: auto;
}
.scroll_btn:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  background: #333;
  inset: 60px 0 0;
  margin: auto;
  transform: rotate(30deg);
  transform-origin: left bottom;
}

.header_item_slide {
  position: absolute !important;
  z-index: 3;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  animation-name: itemSlideFloat;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.header_item_slide .slick-track {
  display: flex;
  align-items: center;
  gap: 0 100px;
}
.header_item_slide .slick-track .slick-slide img {
  mix-blend-mode: overlay;
}

@keyframes scrollBtn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes itemSlideFloat {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/****************************************

spヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
  header {
    display: block;
    width: 100%;
    padding-bottom: 6.5vw;
    position: relative;
  }
  header:before {
    position: absolute;
    content: "";
    background: url(../images/header_shadow.png) left top/782px auto no-repeat;
    width: 82.6%;
    max-width: auto;
    height: 303px;
    right: 0;
    top: 0;
    z-index: 2;
    mix-blend-mode: color-burn;
  }
  .header_top {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 15px;
  }
  .logo {
    width: 138px;
    z-index: 8;
  }
  .scroll_btn {
    position: absolute;
    right: -3%;
    bottom: -4vw;
    z-index: 6;
    width: 141px;
    height: 141px;
  }
  .scroll_btn img {
    animation-name: scrollBtn;
    animation-duration: 14s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .scroll_btn:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 40px;
    background: #333;
    inset: 0;
    margin: auto;
  }
  .scroll_btn:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 10px;
    background: #333;
    inset: 30px 0 0;
    margin: auto;
    transform: rotate(30deg);
    transform-origin: left bottom;
  }
  .header_item_slide {
    bottom: -20px;
  }
  .header_item_slide .slick-track {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .header_item_slide .slick-track .slick-slide img {
    transform: scale(0.7);
  }
  #toggle {
    position: absolute;
    /*bodyに対しての絶対位置指定です*/
    right: 15px;
    top: 22px;
    width: 25px;
    height: 12px;
    cursor: pointer;
    z-index: 9998;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    /*#navToggle div に対して*/
    width: 100%;
    height: 2px;
    background: #029444;
    right: 0;
    transition: 0.35s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 0;
  }
  #toggle span:nth-child(2) {
    top: 10px;
    width: 15px;
  }
  /*spanの絶対位置指定の親にします*/
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span:nth-of-type(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    transform: translateY(0) rotate(315deg);
    width: 100%;
  }
  #sp_navi {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 15px;
    overflow-y: scroll;
    text-align: left;
    z-index: 999;
    display: none;
    transition: 0.7s ease-in-out;
  }
  .open_navi #sp_navi {
    display: block;
    transition: 0.7s ease-in-out;
  }
  .open_navi #wrapper {
    transform-origin: left center;
    filter: blur(3px);
    opacity: 0.3;
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding-top: 80px;
    text-align: center;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: right;
    cursor: pointer;
    color: #222;
    margin: 0 auto;
    font-size: 1.6rem;
    font-weight: 600;
    box-sizing: border-box;
    animation-name: spNav;
    animation-duration: 1s;
    animation-delay: 0.8s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    opacity: 0;
    transform: translateX(15px);
  }
  #sp_navi .menu .menu-item:nth-child(2) {
    animation-delay: 0.9s;
  }
  #sp_navi .menu .menu-item:nth-child(3) {
    animation-delay: 1s;
  }
  #sp_navi .menu .menu-item:nth-child(4) {
    animation-delay: 1.1s;
  }
  #sp_navi .menu .menu-item:nth-child(5) {
    animation-delay: 1.2s;
  }
  #sp_navi .menu-item a,
  #sp_navi .menu-item span {
    display: block;
    padding: 15px 0 14px;
  }
  #sp_navi .menu-item a:link, #sp_navi .menu-item a:visited, #sp_navi .menu-item a:hover, #sp_navi .menu-item a:active {
    color: #222;
    font-weight: 600;
    text-decoration: none;
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: center;
    display: none;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    text-align: center;
    border-top: #ddd 1px solid;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 11px 0 10px;
    color: #ccc;
    background: rgba(0, 0, 0, 0.2);
  }
  #sp_navi .sub-menu li a:link, #sp_navi .sub-menu li a:visited, #sp_navi .sub-menu li a:hover, #sp_navi .sub-menu li a:active {
    color: #fff;
    text-decoration: none;
  }
  #sp_navi .sub-menu li a:hover {
    color: #ccc;
    background: none;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    transform: rotate(-45deg);
    transition: 0.2s ease-in-out;
    top: 22px;
  }
  @keyframes spNav {
    from {
      opacity: 0;
      transform: translateX(15px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
/****************************************

pc用 横ナビ

*****************************************/
#g_navi {
  width: auto;
}
#g_navi .menu {
  width: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#g_navi .menu li {
  position: relative;
  width: auto;
  height: 60px;
  text-align: center;
  line-height: 1.8;
  font-size: 1.6rem;
}
#g_navi .menu li a {
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0 15px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  letter-spacing: 0.1em;
}
#g_navi .menu li ul {
  width: 100%;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
#g_navi .menu li ul li {
  width: 100%;
  height: auto;
}
#g_navi .menu li ul li a {
  width: 100%;
  height: auto;
  padding: 15px 3px;
  border-top: 1px solid #ccc;
  font-size: 1.3rem;
  background: #fff;
  color: #000;
  text-align: center;
  opacity: 0.95;
  font-weight: normal;
  line-height: 1.5;
  text-shadow: none;
}
#g_navi .menu li ul li a:hover {
  background: #00913a;
  color: #fff;
  transition: 0.2s linear;
}
#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.95;
}
#g_navi .menu li ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .menu > li > a:hover .img {
    transform: translateY(-5px);
  }
  .menu > li > a {
    position: relative;
    display: inline-block;
    transition: 0.6s;
  }
  .menu > li > a::after {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    width: 0;
    height: 2px;
    background: #00913a;
    transition: 0.6s;
    transform: translateX(0%);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .menu > li > a::after {
    bottom: 0;
  }
  .menu > li > a:hover::after {
    width: 100%;
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
}
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
}
/****************************************

ティーザー

*****************************************/
#sp_teaser {
  display: none;
}

#kv {
  width: 89.4%;
  margin: 0 auto;
  overflow: hidden;
}
#kv .kv_inner {
  position: relative;
  overflow: hidden;
}
#kv .kv_inner .kv_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 200px);
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .kv_inner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(67, 115, 100, 0) 0%, rgba(25, 42, 37, 0.6) 100%);
  left: 0;
  bottom: 0;
  z-index: 2;
}
#kv .kv_txt {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  inset: 0;
  margin: auto;
  z-index: 7;
}

#mv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#mv .mv_img {
  position: relative;
  width: 1920px;
  left: calc(50% - 960px);
}

@media screen and (max-width: 767px) {
  #kv {
    width: 87%;
  }
  #kv .kv_inner .kv_img {
    height: calc(100vh - 6.5vw - 60px);
  }
  #kv .kv_inner:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, rgba(67, 115, 100, 0) 0%, rgba(25, 42, 37, 0.6) 100%);
    left: 0;
    bottom: 0;
    z-index: 2;
  }
  #kv .kv_txt {
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    inset: 0;
    margin: auto;
    z-index: 7;
    text-align: center;
  }
  #kv .kv_txt img {
    width: 80%;
  }
  #mv .mv_img {
    position: relative;
    width: 150%;
    left: -25%;
  }
}
/****************************************

アニメーション設定

*****************************************/
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeBlurTrigger,
.fadeImgTrigger img {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.maskBgTriggerWrap {
  text-align: center;
}

.maskBgTrigger {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.maskBgTrigger h2 {
  opacity: 0;
  transition: opacity 0ms 450ms;
}
.maskBgTrigger .inner {
  opacity: 0;
  transition: opacity 0ms 450ms;
}
.maskBgTrigger:after {
  background: #caa478;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-101%, 0);
}

.maskBgTrigger.maskBg h2 {
  opacity: 1;
}
.maskBgTrigger.maskBg .inner {
  opacity: 1;
}
.maskBgTrigger.maskBg:after {
  animation: maskBg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

@keyframes maskBg {
  0% {
    transform: translate(-101%, 0);
  }
  40% {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeBlur {
  animation-name: fadeBlurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeBlurAnime {
  from {
    opacity: 0;
    filter: blur(50px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
.fadeImg {
  position: relative;
  overflow: hidden;
}
.fadeImg img {
  opacity: 0;
  animation-name: fadeImgAnime01;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
}
.fadeImg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #dc0032;
  left: -100%;
  top: 0;
  z-index: 3;
  animation-name: fadeImgAnime02;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
}

@keyframes fadeImgAnime01 {
  45% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeImgAnime02 {
  0% {
    left: -100%;
  }
  40% {
    left: 0;
  }
  60% {
    left: 0;
  }
  99% {
    left: 100%;
  }
  100% {
    left: 100%;
    display: none;
  }
}
/****************************************

content 共通設定

*****************************************/
main#top_main {
  width: 100%;
}

main#page_main {
  width: 1020px;
  margin: 0 auto 80px;
  padding-top: 60px;
}

.breadcrumb {
  width: 1160px;
  margin: 10px auto 40px;
}
.breadcrumb p {
  font-size: 1.5rem;
  color: #333;
}
.breadcrumb a {
  color: #333;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.breadcrumb a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.breadcrumb a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.mb100 {
  margin-bottom: 100px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mt30 {
  margin-top: 30px;
}

.mt20 {
  margin-top: 20px;
}

.mt15 {
  margin-top: 15px;
}

.tc {
  text-align: center;
}

.btn {
  position: relative;
}
.btn a {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
  height: 80px;
  padding-right: 160px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
}
.btn a:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: #333;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn a:after {
  position: absolute;
  content: "";
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #333;
  background: url(../images/arrow_bk.svg) center center no-repeat;
  right: 0;
  top: 0;
  transition: 0.3s;
}
.btn a:hover:after {
  width: 60px;
  height: 60px;
  right: 10px;
  top: 10px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 100%;
    padding: 0 10px;
    margin: 10px auto 30px;
  }
  .breadcrumb p {
    font-size: 1rem;
  }
  main#top_main {
    width: 100%;
  }
  main#page_main {
    width: 100%;
    padding: 40px 10px 0;
    margin-bottom: 70px;
  }
  .btn {
    position: relative;
  }
  .btn a {
    height: 40px;
    padding-right: 80px;
    font-size: 1.8rem;
  }
  .btn a:before {
    width: 50px;
    height: 1px;
    right: 20px;
  }
  .btn a:after {
    width: 40px;
    height: 40px;
    background: url(../images/arrow_bk.svg) center center/10px auto no-repeat;
  }
  .btn a:hover:after {
    width: 30px;
    height: 30px;
    right: 5px;
    top: 5px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .mb90,
  .mb85,
  .mb80,
  .mb75,
  .mb70,
  .mb65,
  .mb60,
  .mb55 {
    margin-bottom: 50px;
  }
}
/****************************************

contentトップ用

*****************************************/
.concept_box {
  position: relative;
  width: 100%;
  padding: 100px 0 150px;
  background: url(../images/box01_sub_bg02.png) left bottom no-repeat, url(../images/box01_main_bg@2x.jpg) center center/cover no-repeat;
}
.concept_box .concept_box_inner {
  width: 1080px;
  margin: 0 auto;
}
.concept_box .concept_box_inner h2 {
  margin-bottom: 80px;
}
.concept_box .concept_box_inner .concept_box_txt p {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.8;
}
.concept_box .concept_box_logo {
  position: absolute;
  width: 30.5%;
  min-width: 430px;
  right: calc(20% - 200px);
  bottom: -60px;
}
.concept_box:after {
  position: absolute;
  content: "";
  background: url(../images/box01_sub_bg01.png) 0 0 no-repeat;
  width: 987px;
  height: 1754px;
  right: 0;
  top: -600px;
  z-index: 2;
}

.concept_box_logo svg .stop1 {
  animation-name: stop01;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.concept_box_logo svg .stop2 {
  animation-name: stop02;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.concept_box_logo svg .stop3 {
  animation-name: stop03;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.concept_box_logo svg .stop4 {
  animation-name: stop04;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.concept_box_logo svg .stop5 {
  animation-name: stop05;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.concept_box_logo svg .stop6 {
  animation-name: stop06;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.grad_logo {
  fill: url(#grad_logo_color);
}

@keyframes stop01 {
  0% {
    stop-color: #d5a23d;
  }
  16% {
    stop-color: #30b2d5;
  }
  33% {
    stop-color: #3e7a44;
  }
  49% {
    stop-color: #f7b62b;
  }
  66% {
    stop-color: #e8402a;
  }
  83% {
    stop-color: #1b8dc9;
  }
  100% {
    stop-color: #d5a23d;
  }
}
@keyframes stop02 {
  0% {
    stop-color: #30b2d5;
  }
  16% {
    stop-color: #3e7a44;
  }
  33% {
    stop-color: #f7b62b;
  }
  49% {
    stop-color: #e8402a;
  }
  66% {
    stop-color: #1b8dc9;
  }
  83% {
    stop-color: #d5a23d;
  }
  100% {
    stop-color: #30b2d5;
  }
}
@keyframes stop03 {
  0% {
    stop-color: #3e7a44;
  }
  16% {
    stop-color: #f7b62b;
  }
  33% {
    stop-color: #e8402a;
  }
  49% {
    stop-color: #1b8dc9;
  }
  66% {
    stop-color: #d5a23d;
  }
  83% {
    stop-color: #30b2d5;
  }
  100% {
    stop-color: #3e7a44;
  }
}
@keyframes stop04 {
  0% {
    stop-color: #f7b62b;
  }
  16% {
    stop-color: #e8402a;
  }
  33% {
    stop-color: #1b8dc9;
  }
  49% {
    stop-color: #d5a23d;
  }
  66% {
    stop-color: #30b2d5;
  }
  83% {
    stop-color: #3e7a44;
  }
  100% {
    stop-color: #f7b62b;
  }
}
@keyframes stop05 {
  0% {
    stop-color: #e8402a;
  }
  16% {
    stop-color: #1b8dc9;
  }
  33% {
    stop-color: #d5a23d;
  }
  49% {
    stop-color: #30b2d5;
  }
  66% {
    stop-color: #3e7a44;
  }
  83% {
    stop-color: #f7b62b;
  }
  100% {
    stop-color: #e8402a;
  }
}
@keyframes stop06 {
  0% {
    stop-color: #1b8dc9;
  }
  16% {
    stop-color: #d5a23d;
  }
  33% {
    stop-color: #30b2d5;
  }
  49% {
    stop-color: #3e7a44;
  }
  66% {
    stop-color: #f7b62b;
  }
  83% {
    stop-color: #e8402a;
  }
  100% {
    stop-color: #1b8dc9;
  }
}
.goods_box {
  width: 100%;
  padding: 120px calc((100% - 1080px) / 2);
  background: #fff;
}
.goods_box h2 {
  margin-bottom: 100px;
}

.tab_area {
  margin-bottom: 116px;
}

.search_area_item_area {
  width: 100%;
  height: 100px;
  background: #f2f2f2;
  border-radius: 15px;
  padding: 0 30px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search_area_item_area .search_area_cap {
  padding-top: 2px;
  min-height: 40px;
  padding-left: 60px;
  margin-right: 65px;
  font-size: 1.8rem;
  font-weight: 500;
  background: url(../images/serch_icon.svg) left top no-repeat;
}
.search_area_item_area .search_area_item {
  padding: 4px 15px;
  background: #e6e6e6;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.search_area_item_area .search_area_item span {
  position: relative;
  padding-left: 25px;
}
.search_area_item_area .search_area_item span:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 3px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.search_area_item_area .search_area_item .search_area_item_inner02:before {
  background: #00913a;
}
.search_area_item_area .search_area_item .search_area_item_inner03:before {
  background: #49a1b5;
}
.search_area_item_area .search_area_item .search_area_item_inner04:before {
  background: #c6995e;
}
.search_area_item_area .search_area_item .search_area_item_inner05:before {
  width: 17px;
  height: 17px;
  background: url(../images/cart_icon.svg) center center/13px auto no-repeat, #fff;
}
.search_area_item_area .search_area_item .search_area_item_inner06:before {
  width: 17px;
  height: 17px;
  background: url(../images/none_icon.svg) center center/13px auto no-repeat, #fff;
}
.search_area_item_area .search_area_item:hover {
  background: #333;
  color: #fff;
}
.search_area_item_area .search_area_item.is-active {
  background: #333;
  color: #fff;
}

.tab_panel {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
}
.tab_panel .more_btn {
  text-align: right;
  margin-top: 40px;
}
.tab_panel .more_btn button {
  color: #000;
  background: #fff;
  border: 2px solid #000;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 4px 15px;
  cursor: pointer;
  transition: all 0.5s;
}
.tab_panel .more_btn button:hover {
  background: #000;
  color: #fff;
}
.tab_panel .more_btn.is-btn-hidden {
  display: none;
}

.tab_item_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}
.tab_item_wrap > li {
  position: relative;
  width: 340px;
  height: auto;
  border-radius: 15px;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 30%, #333 31%);
  opacity: 1;
  transition: 0.3s;
}
.tab_item_wrap > li a {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.tab_item_wrap > li a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.tab_item_wrap > li .tab_item_img {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}
.tab_item_wrap > li .tab_item_img figure {
  width: 100%;
  height: 338px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab_item_wrap > li .tab_item_img figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab_item_wrap > li .tab_item_img .tab_item_img_list {
  height: 338px;
}
.tab_item_wrap > li .tab_item_img .tab_item_img_list img {
  width: 338px;
  height: 338px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab_item_wrap > li .tab_item_img .tab_item_img_list .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 11;
  font-size: 0;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.tab_item_wrap > li .tab_item_img .tab_item_img_list .slick-next {
  right: 2px;
  background: url(../images/arrow.svg) 0 0/cover no-repeat;
}
.tab_item_wrap > li .tab_item_img .tab_item_img_list .slick-next:hover {
  opacity: 0.6;
}
.tab_item_wrap > li .tab_item_img .tab_item_img_list .slick-prev {
  display: none !important;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark li {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark li:not(:last-child) {
  margin-right: 5px;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark .gray {
  background: #ccc;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark .green {
  background: #00913a;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark .blue {
  background: #49a1b5;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark .brown {
  background: #c6995e;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark .cart {
  width: 20px;
  height: 20px;
  background: url(../images/cart_icon.svg) center center/16px auto no-repeat, #fff;
}
.tab_item_wrap > li .tab_item_img .tab_item_mark .none {
  width: 20px;
  height: 20px;
  background: url(../images/none_icon.svg) center center/16px auto no-repeat, #fff;
}
.tab_item_wrap > li .tab_item_cap {
  padding: 13px 10px 15px 20px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background: #333;
  border-radius: 0 0 15px 15px;
}
.tab_item_wrap > li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  display: none;
}

.tab_panel.is-show {
  display: block;
  animation: tabAnime 0.5s forwards;
}

@keyframes tabAnime {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.share_area h3 {
  text-align: center;
  margin-bottom: 80px;
}
.share_area .share_slider {
  width: 970px;
  margin: 0 auto;
}
.share_area .share_slider .slick-slide {
  margin: 0 17px;
  position: relative;
  width: 300px;
}
.share_area .share_slider .slick-arrow {
  width: 81px;
  height: 81px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  font-size: 0;
  border: none;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  transition: 0.3s;
}
.share_area .share_slider .slick-next {
  right: -60px;
  background: url(../images/arrow_r.svg) 0 0/cover no-repeat;
}
.share_area .share_slider .slick-next:hover {
  transform: translateY(-50%) translateX(10px);
}
.share_area .share_slider .slick-prev {
  left: -60px;
  background: url(../images/arrow_l.svg) 0 0/cover no-repeat;
}
.share_area .share_slider .slick-prev:hover {
  transform: translateY(-50%) translateX(-10px);
}

.material_box {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 120px 0;
  background: url(../images/box03_bg.png) center top no-repeat;
}
.material_box h2 {
  width: 1080px;
  margin: 0 auto 100px;
}
.material_box .material_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.material_box .material_item .material_item_txt {
  width: 50%;
  padding-left: calc((100% - 1080px) / 2);
  padding-right: 80px;
}
.material_box .material_item .material_item_txt h3 {
  margin-bottom: 40px;
}
.material_box .material_item .material_item_txt p {
  font-weight: 500;
}
.material_box .material_item figure {
  width: 50%;
  position: relative;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}
.material_box .material_item figure img {
  width: 960px;
  position: relative;
  left: calc(50% - 480px);
  transition: 0.3s;
}
.material_box .material_item figure a .more {
  position: absolute;
  height: 80px;
  padding-right: 160px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
}
.material_box .material_item figure a .more:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: #333;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.material_box .material_item figure a .more:after {
  position: absolute;
  content: "";
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #333;
  background: url(../images/arrow_bk.svg) center center no-repeat;
  right: 0;
  top: 0;
  transition: 0.3s;
}
.material_box .material_item figure a:hover img {
  opacity: 0.8;
}
.material_box .material_item figure a:hover .more:after {
  width: 60px;
  height: 60px;
  right: 10px;
  top: 10px;
}
.material_box .material_item.mbn {
  margin-bottom: 0;
}
.material_box .material_item.w_more figure a .more {
  color: #fff;
}
.material_box .material_item.w_more figure a .more:before {
  background: #fff;
}
.material_box .material_item.w_more figure a .more:after {
  border: 1px solid #fff;
  background: url(../images/arrow_wh.svg) center center no-repeat;
}
.material_box .material_box_bottom {
  width: 1080px;
  margin: 120px auto 0;
}
.material_box .material_box_bottom p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 4;
}
.material_box .material_box_bottom p span {
  position: relative;
  vertical-align: top;
  padding-block-end: 14px;
  background-image: repeating-linear-gradient(-45deg, #949494, #949494 3px, transparent 3px, transparent 6px);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: auto 2px;
  left: 0;
  bottom: 0;
}

.products_box {
  position: relative;
  margin-bottom: 120px;
}
.products_box h2 {
  text-align: center;
  margin-bottom: 100px;
}
.products_box .products_slide01 {
  margin-bottom: 20px;
}
.products_box .products_slide01 .slick-track {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.products_box .products_slide01 .slick-track .slick-slide {
  border-radius: 15px;
  overflow: hidden;
}
.products_box .products_slide02 .slick-track {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.products_box .products_slide02 .slick-track .slick-slide {
  border-radius: 15px;
  overflow: hidden;
}
.products_box:after {
  position: absolute;
  content: "";
  background: url(../images/circle_bg01.png) 0 0 no-repeat;
  width: 874px;
  height: 1364px;
  right: 0;
  bottom: 350px;
  z-index: -1;
}

.conpany_box {
  position: relative;
  width: 100%;
  padding: 0 calc((100% - 1080px) / 2) 120px;
  display: flex;
  justify-content: space-between;
}
.conpany_box figure {
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
}
.conpany_box .conpany_box_txt {
  width: 460px;
}
.conpany_box .conpany_box_txt h2 {
  margin-bottom: 40px;
}
.conpany_box .conpany_box_txt ul {
  margin-bottom: 50px;
}
.conpany_box .conpany_box_txt ul li {
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 2px solid #a4a4a4;
}
.conpany_box .conpany_box_txt ul li:not(:last-child) {
  margin-bottom: 15px;
}
.conpany_box:after {
  position: absolute;
  content: "";
  background: url(../images/circle_bg02.png) left bottom/contain no-repeat;
  width: 738px;
  height: 1176px;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .concept_box {
    padding: 60px 15px 150px;
    background: url(../images/box01_sub_bg02.png) left bottom/300px 302px no-repeat, url(../images/box01_main_bg@2x.jpg) center center/cover no-repeat;
  }
  .concept_box h2 img {
    width: auto;
    height: 120px;
  }
  .concept_box .concept_box_inner {
    width: 100%;
  }
  .concept_box .concept_box_inner h2 {
    margin-bottom: 50px;
  }
  .concept_box .concept_box_inner .concept_box_txt p {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.4;
  }
  .concept_box .concept_box_logo {
    width: 180px;
    min-width: auto;
    right: 5px;
    bottom: -20px;
  }
  .concept_box:after {
    position: absolute;
    content: "";
    background: url(../images/box01_sub_bg01.png) 0 0/contain no-repeat;
    width: 230px;
    height: 424px;
    right: 0;
    top: -120px;
    z-index: 2;
  }
  .goods_box {
    padding: 70px 15px;
  }
  .goods_box h2 {
    margin-bottom: 50px;
  }
  .goods_box h2 img {
    width: auto;
    height: 58px;
  }
  .tab_area {
    margin-bottom: 70px;
  }
  .search_area_item_area {
    width: 100%;
    height: auto;
    padding: 25px 15px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .search_area_item_area .search_area_cap {
    width: 100%;
    margin-right: auto;
    font-size: 1.6rem;
    margin-bottom: 15px;
    padding-top: 5px;
  }
  .search_area_item_area .search_area_item {
    padding: 4px 10px;
    font-size: 1.4rem;
  }
  .search_area_item_area .search_area_item span {
    position: relative;
    padding-left: 15px;
  }
  .search_area_item_area .search_area_item span:before {
    width: 10px;
    height: 10px;
  }
  .search_area_item_area .search_area_item .search_area_item_inner05 {
    padding-left: 17px;
  }
  .search_area_item_area .search_area_item .search_area_item_inner05:before {
    width: 12px;
    height: 12px;
    background: url(../images/cart_icon.svg) center center/10px auto no-repeat, #fff;
  }
  .search_area_item_area .search_area_item .search_area_item_inner06 {
    padding-left: 17px;
  }
  .search_area_item_area .search_area_item .search_area_item_inner06:before {
    width: 12px;
    height: 12px;
    background: url(../images/none_icon.svg) center center/10px auto no-repeat, #fff;
  }
  .tab_item_wrap {
    gap: 35px 14px;
  }
  .tab_item_wrap li {
    position: relative;
    width: calc(50vw - 22px);
  }
  .tab_item_wrap li .tab_item_img {
    position: relative;
    width: 100%;
    height: calc(50vw - 22px);
  }
  .tab_item_wrap li .tab_item_img figure {
    height: calc(50vw - 22px);
  }
  .tab_item_wrap li .tab_item_img .tab_item_img_list {
    height: calc(50vw - 22px);
  }
  .tab_item_wrap li .tab_item_img .tab_item_img_list img {
    width: 100%;
    height: calc(50vw - 22px);
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tab_item_wrap li .tab_item_img .tab_item_img_list .slick-arrow {
    width: 20px;
    height: 20px;
  }
  .tab_item_wrap li .tab_item_img .tab_item_mark li {
    width: 10px;
    height: 10px;
  }
  .tab_item_wrap li .tab_item_img .tab_item_mark .cart {
    width: 14px;
    height: 14px;
    background: url(../images/cart_icon.svg) center center/12px auto no-repeat, #fff;
  }
  .tab_item_wrap li .tab_item_img .tab_item_mark .none {
    width: 14px;
    height: 14px;
    background: url(../images/none_icon.svg) center center/12px auto no-repeat, #fff;
  }
  .tab_item_wrap li .tab_item_cap {
    padding: 10px;
    font-size: 1.2rem;
  }
  .share_area h3 {
    text-align: center;
    margin-bottom: 10px;
  }
  .share_area h3 img {
    width: auto;
    height: 78px;
  }
  .share_area .share_slider {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .share_area .share_slider .slick-slide {
    margin: 0;
    position: relative;
    width: 250px;
    transform: scale(0.9);
  }
  .share_area .share_slider .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .share_area .share_slider .slick-next {
    right: -30px;
    background: url(../images/arrow_r.svg) 0 0/cover no-repeat;
  }
  .share_area .share_slider .slick-next:hover {
    transform: translateY(-50%) translateX(10px);
  }
  .share_area .share_slider .slick-prev {
    left: -30px;
    background: url(../images/arrow_l.svg) 0 0/cover no-repeat;
  }
  .share_area .share_slider .slick-prev:hover {
    transform: translateY(-50%) translateX(-10px);
  }
  .material_box {
    width: 100%;
    padding: 70px 0;
    background: url(../images/box03_bg.png) center top no-repeat;
  }
  .material_box h2 {
    width: calc(100% - 30px);
    margin: 0 auto 50px;
  }
  .material_box h2 img {
    width: auto;
    height: 104px;
  }
  .material_box .material_item {
    display: block;
    margin-bottom: 60px;
  }
  .material_box .material_item .material_item_txt {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 25px;
  }
  .material_box .material_item .material_item_txt h3 {
    margin-bottom: 30px;
  }
  .material_box .material_item figure {
    position: relative;
    width: calc(100% - 15px);
    margin-left: auto;
    border-radius: 15px 0 0 15px;
  }
  .material_box .material_item figure img {
    width: 120%;
    height: auto;
    left: 0;
  }
  .material_box .material_item figure a .more {
    position: absolute;
    height: 40px;
    padding-right: 80px;
    font-size: 1.8rem;
    right: 10px;
    bottom: 10px;
  }
  .material_box .material_item figure a .more:before {
    width: 50px;
    right: 20px;
  }
  .material_box .material_item figure a .more:after {
    position: absolute;
    content: "";
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    background: url(../images/arrow_bk.svg) center center/10px auto no-repeat;
  }
  .material_box .material_item figure a:hover img {
    opacity: 0.8;
  }
  .material_box .material_item figure a:hover .more:after {
    width: 30px;
    height: 30px;
    right: 5px;
    top: 5px;
  }
  .material_box .material_item.w_more figure a .more:after {
    background: url(../images/arrow_wh.svg) center center/10px auto no-repeat;
  }
  .material_box .material_item .limex_tit img {
    width: auto;
    height: 40px;
  }
  .material_box .material_item .circulex_tit img {
    width: auto;
    height: 37px;
  }
  .material_box .material_item .plax_tit img {
    width: auto;
    height: 28px;
  }
  .material_box .material_box_bottom {
    width: 100%;
    padding: 0 15px;
    margin: 70px auto 0;
  }
  .material_box .material_box_bottom p {
    font-size: 1.3rem;
    line-height: 3.5;
  }
  .material_box .material_box_bottom p span {
    padding-block-end: 11px;
  }
  .products_box {
    margin-bottom: 70px;
  }
  .products_box h2 {
    margin-bottom: 50px;
  }
  .products_box h2 img {
    width: auto;
    height: 59px;
  }
  .products_box .products_slide01 {
    margin-bottom: 20px;
  }
  .products_box .products_slide01 .slick-track {
    gap: 0 10px;
  }
  .products_box .products_slide01 .slick-track .slick-slide {
    width: 140px;
  }
  .products_box .products_slide02 .slick-track {
    gap: 0 10px;
  }
  .products_box .products_slide02 .slick-track .slick-slide {
    width: 140px;
  }
  .products_box:after {
    background: url(../images/circle_bg01.png) 0 0/contain no-repeat;
    width: 230px;
    height: 359px;
    bottom: 250px;
  }
  .conpany_box {
    padding: 0 15px 70px;
    display: block;
  }
  .conpany_box figure {
    width: 100%;
    margin-bottom: 40px;
  }
  .conpany_box .conpany_box_txt {
    width: 100%;
  }
  .conpany_box .conpany_box_txt h2 {
    margin-bottom: 30px;
  }
  .conpany_box .conpany_box_txt h2 img {
    width: auto;
    height: 48px;
  }
  .conpany_box .conpany_box_txt ul {
    margin-bottom: 30px;
  }
  .conpany_box .conpany_box_txt ul li {
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 2px solid #a4a4a4;
  }
  .conpany_box .conpany_box_txt ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .conpany_box:after {
    background: url(../images/circle_bg02.png) left bottom/contain no-repeat;
    width: 220px;
    height: 350px;
  }
}
/****************************************

content下層用

*****************************************/
/* お問い合わせ */
.contact_txt {
  text-align: center;
}

.sitepolicy {
  width: 1080px;
  margin: 40px auto;
  padding: 30px;
  background: #eee;
  text-align: center;
}
.sitepolicy dt {
  font-size: 1.4rem;
}
.sitepolicy dd p {
  font-size: 1.4rem;
}

.form {
  width: 1080px;
  margin: 0 auto 100px;
}

@media screen and (max-width: 767px) {
  .contact_txt {
    text-align: left;
  }
  .sitepolicy {
    width: 100%;
    padding: 25px 15px;
  }
  .sitepolicy dt {
    font-size: 1.3rem;
  }
  .sitepolicy dd p {
    font-size: 1.3rem;
  }
  .form {
    width: 100%;
    margin: 0 auto 80px;
  }
}
/****************************************

single.php

*****************************************/
#single_box {
  width: 100%;
  min-height: 300px;
}
#single_box time {
  font-size: 1.4rem;
  display: block;
  color: #aaa;
  margin-bottom: 10px;
}

.single_txt {
  width: 100%;
  min-height: 300px;
}
.single_txt img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}

.pager {
  clear: both;
  text-align: center;
  padding: 0;
  margin: 30px 0 80px;
}

a.page-numbers {
  background: rgba(0, 0, 0, 0.02);
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
}

.pager .current {
  background: rgba(0, 0, 0, 0.02);
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: rgb(0, 0, 0);
  border: solid 1px rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.nav-below {
  margin: 30px 0 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #single_box {
    width: 100%;
  }
}
/****************************************

sidebar

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

テーブル

*****************************************/
td p {
  font-size: 100%;
}

.top_box04_table {
  width: 100%;
  border-collapse: collapse;
}
.top_box04_table th {
  width: 20%;
  padding: 26px 0;
  border-bottom: 1px solid #ccc;
  font-weight: normal;
  text-align: left;
}
.top_box04_table th span {
  position: relative;
  padding-left: 30px;
}
.top_box04_table th span:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: #d7a269;
  left: 0;
  top: 12px;
}
.top_box04_table td {
  width: 80%;
  padding: 26px 0;
  border-bottom: 1px solid #ccc;
}
.top_box04_table tr:first-child th,
.top_box04_table tr:first-child td {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .top_box04_table tr {
    display: block;
  }
  .top_box04_table th {
    width: 100%;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .top_box04_table th span {
    position: relative;
    padding-left: 15px;
  }
  .top_box04_table th span:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 23px;
    background: #d7a269;
    left: 0;
    top: 0;
  }
  .top_box04_table td {
    width: 100%;
    display: block;
  }
  .top_box04_table tr:first-child td {
    padding-top: 26px;
  }
}
/****************************************

P

*****************************************/
/* 改行 */
p.line_break,
span.line_break {
  padding-top: 25px;
}

/* 改行 */
p.line_break02 {
  padding-top: 30px;
}

/* オレンジ文字*/
.yellow {
  color: #dfd014;
}

.orange {
  color: #ee7844;
}

.green {
  color: #4b8e66;
}

.big_green {
  font-size: 1.8rem;
  color: #4b8e66;
  font-weight: bold;
}

/* 赤文字*/
.red {
  color: #cb3f3f;
}

.big_red {
  color: #cb3f3f;
  font-size: 2.2rem;
  font-weight: bold;
}

.purple {
  color: #4e3f7f;
}

.pink {
  color: #ac5490;
}

/* 強調*/
.big_bold {
  font-size: 2rem;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.blue {
  color: #62c2ea;
}

/* 小文字*/
.small {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .big_bold {
    font-size: 1.7rem;
  }
}
/****************************************

タイトル

*****************************************/
h1.headline {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 45px;
  color: #aaa;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", "NotoSansCJKjp", "メイリオ", Meiryo, sans-serif;
}
h1.headline .inner {
  display: block;
  font-size: 4.6rem;
  color: #202020;
  font-weight: 600;
}
h1.headline .inner::first-letter {
  color: #caa478;
  letter-spacing: 0.15em;
}

h2.subhead01 {
  text-align: center;
  background: #4b8f67;
  padding: 13px 10px 15px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 40px;
}

h3.subhead01 {
  text-align: center;
  padding: 10px 5px;
  background: #222;
  color: #fff;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  h1.headline {
    font-size: 1.3rem;
  }
  h1.headline .inner {
    font-size: 2.6rem;
  }
}
/****************************************

  footer

  *****************************************/
footer {
  padding: 80px 4% 60px;
  background: #333;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .footer_logo {
  line-height: 1;
}

.copyright {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 30px 4% 20px;
    background: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .footer_logo {
    margin-bottom: 30px;
  }
  .copyright {
    font-size: 1.3rem;
  }
}
/****************************************

  Contact Form7

  *****************************************/
/* フォームカラー */
.wpcf7 {
  width: 100%;
}

.wpcf7-form textarea {
  width: 100%;
  /*本文*/
  max-width: 100%;
  padding: 3px 5px;
  border: 1px solid rgba(154, 139, 120, 0.5);
  border-radius: 3px;
  transition: 0.3s;
}
.wpcf7-form select {
  width: auto;
  padding: 3px 5px;
  border: 1px solid rgba(154, 139, 120, 0.5);
  border-radius: 3px;
  transition: 0.3s;
}
.wpcf7-form input {
  padding: 10px;
  border: 1px solid rgba(154, 139, 120, 0.5);
  border-radius: 3px;
  transition: 0.3s;
  /*ラジオボタン、チェックボタン*/
}

/* 送信ボタン */
.wpcf7 .tc input[type=submit] {
  cursor: pointer;
  width: 410px;
  max-width: 100%;
  padding: 18px;
  box-shadow: none;
  border: 1px #222 solid;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.25s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 30px;
}

.wpcf7 .tc input[type=submit]:disabled {
  cursor: not-allowed;
  box-shadow: none !important;
  border: 1px solid #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  color: #929292 !important;
}
.wpcf7 .tc input[type=submit]:hover {
  box-shadow: 0 0 1px 1px rgba(34, 34, 34, 0.3);
  background-color: #fff;
  color: #222;
  transition: all 0.25s;
}
.wpcf7 .tc input[type=submit]:focus {
  outline: 0;
  border: 1px #222 solid;
  box-shadow: 0 0 2px 2px rgba(34, 34, 34, 0.5);
}

.wpcf7-text {
  width: 100%;
}

.form_row {
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #ccc;
}
.form_row .form_label {
  width: 300px;
}
.form_row .form_label .required {
  display: inline-block;
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #cc0000;
  margin-right: 10px;
  border-radius: 3px;
}
.form_row .form_label .any {
  display: inline-block;
  color: #797979;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #d7d7d7;
  margin-right: 10px;
  border-radius: 3px;
}
.form_row .form_input {
  width: calc(100% - 300px);
}
.form_row .form_input_post {
  width: 180px;
}
.form_row .form_input_post_txt {
  color: #b20000;
  font-weight: normal;
  font-size: 1.3rem;
}

.form_row.last_row {
  padding-bottom: 0;
  border-bottom: none;
}

.wpcf7 .form_input_post input[type=tel],
.wpcf7 .form_input input[type=email],
.wpcf7 .form_input input[type=tel],
.wpcf7 .form_input input[type=text],
.wpcf7 .form_input_post input[type=text],
.wpcf7 .form_input textarea {
  position: relative;
  border-left: 2px solid #222;
}

.seireki input[type=text] {
  width: 130px;
  margin: 0 10px;
}

.month input[type=text] {
  width: 60px;
  margin: 0 10px;
}

.old input[type=text] {
  width: 60px;
  margin: 0 10px 0 0;
}

/* フォームの装飾ここから */
/* チェックボックス */
.wpcf7 .form_input input[type=checkbox] {
  display: none;
}
.wpcf7 .form_input input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #222;
  border-radius: 4px;
  background-color: #fefefe;
  box-sizing: border-box;
}
.wpcf7 .form_input input[type=checkbox] + span:after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #222;
  border-right: 3px solid #222;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span {
  color: #6c5d2f;
  transition: all 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:before {
  opacity: 1;
  border: 1px solid #222;
  box-shadow: 0 0 2px 2px rgba(34, 34, 34, 0.5);
  background-color: #222;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity 0.25s ease;
}

/* ラジオボタン */
.wpcf7 .form_input input[type=radio] {
  display: none;
}
.wpcf7 .form_input input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #222;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio]:checked + span {
  color: #222;
}
.wpcf7 .form_input input[type=radio]:checked + span:before {
  box-shadow: 0 0 2px 2px rgba(34, 34, 34, 0.5);
}
.wpcf7 .form_input input[type=radio]:checked + span:after {
  opacity: 1;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #222;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

/* セレクト */
.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:focus-within::after {
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
}

.wpcf7 .form_input select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: 0.5em 3.5em 0.5em 1em;
  border: 1px solid #222;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  background-image: linear-gradient(90deg, rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.7));
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.wpcf7 .form_input select:-ms-expand {
  display: none;
}

.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 60%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}

/* テキストフィールド フォーカス時 */
.wpcf7 .form_input input[type=text]:focus,
.wpcf7 .form_input input[type=tel]:focus,
.wpcf7 .form_input input[type=email]:focus,
.wpcf7 .form_input input[type=url]:focus,
.wpcf7 .form_input input[type=date]:focus,
.wpcf7 .form_input input[type=number]:focus,
.wpcf7 .form_input_post input[type=text]:focus,
.wpcf7 .form_input textarea:focus,
.wpcf7 .form_input_post input[type=tel]:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  box-shadow: 0 0 1px 1px rgba(34, 34, 34, 0.3);
}

.wpcf7 .form_input select:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  box-shadow: 0 0 1px 1px rgba(34, 34, 34, 0.3);
}

.wpcf7-response-output {
  font-size: 1.3em;
}

@media screen and (max-width: 767px) {
  .wpcf7-form textarea {
    width: 100% !important;
    /*本文*/
  }
  .wpcf7-form input {
    max-width: 100% !important;
    /*ラジオボタン、チェックボタン*/
  }
  .wpcf7-submit {
    width: 100%;
  }
  .form_row {
    flex-direction: column;
    padding: 0 0 30px;
  }
  .form_row .form_label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form_row .form_input {
    width: 100%;
  }
  .seireki input[type=text] {
    width: 75px;
    margin: 0 5px;
  }
  .month input[type=text] {
    width: 45px;
    margin: 0 5px;
  }
  .old {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .old input[type=text] {
    width: 45px;
    margin: 0 10px;
  }
  .ajax-loader {
    width: auto;
  }
}
/****************************************

  clearfix

  *****************************************/
.clearfix {
  display: inline-block;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */
/****************************************

  追加

  *****************************************/
.pcn {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

@media screen and (max-width: 767px) {
  .pcn {
    display: block;
  }
  .spn {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */