@charset "UTF-8";
/* ===================================
Foundation
=================================== */
/*
 * _setting.scss
 */
/*
 * _mixin.scss
 */
/* -----------------------------------
media query print
------------------------------------ */
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
transition
------------------------------------ */
/* -----------------------------------
clearfix
------------------------------------ */
/* -----------------------------------
formFocus
------------------------------------ */
/* -----------------------------------
shadow
------------------------------------ */
/* -----------------------------------
vw
------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
/*
 * _reset.scss
 */
/* -----------------------------------
reset
------------------------------------ */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

form {
  display: inline;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: middle;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

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

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 60%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.15em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

ol,
ul {
  list-style: none;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

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

fieldset {
  border: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 15px 0;
  padding: 0;
}

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

/*
 * _base.scss
 */
html {
  font-size: 62.5%;
}

body {
  color: #4e5064;
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  max-height: 999999px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
}

@media print {
  html, body {
    height: auto;
  }
}
a {
  color: #333333;
}
a.disabled {
  pointer-events: none;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

/* ===================================
Layout
=================================== */
/*
 * _layout.scss
 */
.l-wrapper {
  position: relative;
  overflow: clip;
}

.l-header {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.l-header_in {
  position: relative;
  width: 100%;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .l-header_in {
    height: 13.3333333333vw;
    padding: 0 4vw;
  }
}
.l-header_logo {
  position: absolute;
  line-height: 1;
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: auto;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: 11;
}
@media screen and (max-width: 768px) {
  .l-header_logo {
    left: 4vw;
  }
}
.l-header_logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.l-header_logo a img {
  height: auto;
  line-height: 1;
  vertical-align: middle;
}
.l-header_logo a img:nth-of-type(1) {
  width: 164px;
}
@media screen and (max-width: 768px) {
  .l-header_logo a img:nth-of-type(1) {
    width: 34.6666666667vw;
  }
}
.l-header_logo a img:nth-of-type(2) {
  width: 174px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .l-header_logo a img:nth-of-type(2) {
    display: none;
  }
}
.l-header_logo.is-hidden {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.l-header_logo.is-open {
  opacity: 1;
  visibility: visible;
  z-index: 11;
}


.l-header_logo_r {
  margin: 0 0 0 auto;
  width: 15%;
}

.l-header_logo_r.is-hidden {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}



@media screen and (max-width: 768px) {
  .l-header_logo_r {
  width: 27%;
}
}



.l-content {
  position: relative;
  z-index: 0;
  width: 100%;
}
.l-sec {
  position: relative;
  padding: 0 0px;
  padding-top: min(90px, 5.625%);
  padding-bottom: min(90px, 5.625%);
}
@media screen and (max-width: 768px) {
  .l-sec {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.l-sec_in {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.l-footer {
  position: relative;
  padding: 10px 30px;
  background: #000;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 5.3333333333vw;
  }
}
@media screen and (min-width: 1001px) {
  .l-footer_in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer_in {
    text-align: center;
  }
}
.l-footer_nav ul {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-footer_nav ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (min-width: 769px) {
  .l-footer_nav ul li {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_nav ul li {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
.l-footer_nav ul li a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-footer_nav ul li a {
    font-size: 2.9333333333vw;
    padding: 10px 0;
    display: block;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .l-footer_nav ul li a:hover {
    text-decoration: underline;
  }
}
.l-footer_copyright {
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer_copyright {
    text-align: center;
    margin-top: 2.6666666667vw;
    font-size: 1.8666666667vw;
  }
}

/* ===================================
Object
=================================== */
/* -----------------------------------
Component
------------------------------------ */
/*
 * _component.scss
 */
.c-btnStyle1 {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 37px;
  width: 100%;
  text-decoration: none;
  background: #3978cd;
  //background-image: linear-gradient(150deg, rgba(212, 171, 73, 1), rgba(175, 55, 37, 1) 37%, rgba(172, 26, 32, 1));
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-btnStyle1 {
    height: 10.6666666667vw;
  }
}
.c-btnStyle1::before {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #b9c6d8;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  mix-blend-mode: soft-light;
}
.c-btnStyle1 > span {
  position: relative;
  z-index: 2;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  //font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-btnStyle1 > span {
    font-size: 3.4666666667vw;
  }
}
.c-btnStyle1:after {
  content: "▼";
  line-height: 1;
  color: #fff;
  display: block;
  position: absolute;
  z-index: 3;
  top: 51%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
@media screen and (min-width: 769px) {
  .c-btnStyle1:hover {
        filter: brightness(1.2);
    //background: rgba(78, 80, 100, 0.9);
  }
  .c-btnStyle1:hover::before {
        filter: brightness(1.2);
  }
  .c-btnStyle1:hover:after {
    color: #fff;
  }
  .c-btnStyle1:hover > span {
    color: #fff;
  }
}
@media screen and (min-width: 769px) {
  a:hover .c-btnStyle1 {

  }
  a:hover .c-btnStyle1::before {
  }
  a:hover .c-btnStyle1:after {
    color: #fff;
  }
  a:hover .c-btnStyle1 > span {
    color: #fff;
  }
}

.c-btnStyle1.-mv:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}






.c-btnStyle2 {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  width: 100%;
  text-decoration: none;
  background: #f7f7f7;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2 {
    height: 10.6666666667vw;
  }
}
.c-btnStyle2::before {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #fff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}
.c-btnStyle2 > span {
  position: relative;
  z-index: 2;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  color: #4e5064;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-btnStyle2 > span {
    font-size: 3.4666666667vw;
  }
}
.c-btnStyle2:after {
  content: "▼";
  line-height: 1;
  display: block;
  position: absolute;
  z-index: 3;
  top: 51%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
@media screen and (min-width: 769px) {
  .c-btnStyle2:hover {
    background: rgba(78, 80, 100, 0.9);
  }
  .c-btnStyle2:hover::before {
    background: #4e5064;
  }
  .c-btnStyle2:hover:after {
    color: #fff;
  }
  .c-btnStyle2:hover > span {
    color: #fff;
  }
}
@media screen and (min-width: 769px) {
  a:hover .c-btnStyle2 {
    background: rgba(78, 80, 100, 0.9);
  }
  a:hover .c-btnStyle2::before {
    background: #4e5064;
  }
  a:hover .c-btnStyle2:after {
    color: #fff;
  }
  a:hover .c-btnStyle2 > span {
    color: #fff;
  }
}

.c-btnStyle2.-mv:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}






/* -----------------------------------
Project
------------------------------------ */
/*
 * _project.scss
 */
.p-secMain {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-secMain {
    padding-top: 0px;
    padding-bottom: 160px;
    background: url(../img/top/main_bg.webp) no-repeat center/cover;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain {
    background: url(../img/top/main_bg_sp.webp) no-repeat center/cover;
        padding: 0;
        padding-bottom: 100px;
        width: 100%;
  }
}
.p-secMain_in {
  position: relative;
  max-width: 1400px;
      width: 80vw;
}

@media screen and (max-width: 768px) {
  .p-secMain_in {
  padding-top: 40px;
}
}




.p-secMain_cnt1 ._img1 {
  position: relative;
}
.p-secMain_cnt1 ._img1 ._link {
  text-decoration: none;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .p-secMain_cnt1 ._img1 ._link {
right: 10.7%;
        bottom: 0.2%;
        width: 38.6%;
        height: 46.5%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain_cnt1 ._img1 ._link {
        right: 4.5%;
        bottom: -3%;
        width: 91%;
        height: 32.5%;
  }
}
.p-secMain_cnt1 ._img1 ._link .c-btnStyle1 {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .p-secMain_cnt1 ._img1 ._link .c-btnStyle1 {
        right: -4px;
        bottom: -2px;
        width: 101%;
        height: 20%;
  }
}
@media screen and (max-width: 768px) {
  .p-secMain_cnt1 ._img1 ._link .c-btnStyle1 {
        bottom: 0%;
        height: 18%;
  }
}

.p-secContents {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: #f9f9f9;
}
.p-secContents::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #f9f9f9;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
.p-secContents_in {
  position: relative;
  z-index: 2;
}
.p-secContents_nav {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: -146px;
  left: 0;
  height: 146px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-secContents_nav {
    top: -80px;
    height: 80px;
  }
}
.p-secContents_nav ul {
  max-width: 1600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-secContents_nav ul li {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: relative;
  background: #fdf;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 146px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  cursor: pointer;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
@media screen and (min-width: 769px) {
  .p-secContents_nav ul li {
    -webkit-flex-basis: 24.5%;
        -ms-flex-preferred-size: 24.5%;
            flex-basis: 24.5%;
    margin: 0 0.25%;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_nav ul li {
    -webkit-flex-basis: 24%;
        -ms-flex-preferred-size: 24%;
            flex-basis: 24%;
    margin: 0 0.5%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 80px;
  }
}
.p-secContents_nav ul li[data-cate=tenjijo] {
  //background: url(../img/top/over_1.png) no-repeat center/cover;
  background: #da5c00;
}
.p-secContents_nav ul li[data-cate=bunjo] {
  //background: url(../img/top/over_2.png) no-repeat center/cover;
  background: #efa92e;
}
.p-secContents_nav ul li[data-cate=event] {
  //background: url(../img/top/over_3.png) no-repeat center/cover;
  background: #4d7eb5;
}
.p-secContents_nav ul li[data-cate=plant] {
  //background: url(../img/top/over_4.png) no-repeat center/cover;
  background: #153d77;
  //color: #4e5064;
}
.p-secContents_nav ul li > a, .p-secContents_nav ul li > span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 2rem;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: inherit;
}
@media screen and (min-width: 769px) {
  .p-secContents_nav ul li > a, .p-secContents_nav ul li > span {
    margin-left: 10%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_nav ul li > a, .p-secContents_nav ul li > span {
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_nav ul li > a, .p-secContents_nav ul li > span {
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_nav ul li > a span, .p-secContents_nav ul li > span span {
    font-size: 0.9em;
  }
}
.p-secContents_nav ul li::after {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  display: block;
  background: url(../img/top/ico_arrow_wh.svg) no-repeat center/contain;
}
@media screen and (min-width: 769px) {
  .p-secContents_nav ul li::after {
    width: 42px;
    height: 42px;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_nav ul li::after {
    width: 15px;
    height: 15px;
    position: static;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: 2px;
  }
}
.p-secContents_nav ul li[data-cate=plant]::after {
  background: url(../img/top/ico_arrow_wh.svg) no-repeat center/contain;
}
@media screen and (min-width: 769px) {
  .p-secContents_nav ul li.is-visible::after, .p-secContents_nav ul li:hover::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}
@media screen and (min-width: 769px) {
  .p-secContents_nav ul li:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-secContents_nav ul li.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-secContents_cnt1_item {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
}
.p-secContents_cnt1_item::after {
  content: "";
  display: block;
  width: 100vw;
  height: 16px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item::after {
    height: 1.3333333333vw;
  }
}


.p-secContents_cnt1_item ._box {
}

.p-secContents_cnt1_item ._box ul::after  {
  content:"";
  display: block;
  width:31%;
}



.p-secContents_cnt1_item[data-cate=tenjijo]::after {
  background: #da5c00;
}
.p-secContents_cnt1_item[data-cate=bunjo]::after {
  background: #efa92e;
}
.p-secContents_cnt1_item[data-cate=event]::after {
  background: #4d7eb5;
}
.p-secContents_cnt1_item[data-cate=plant]::after {
  background: #153d77;
}
.p-secContents_cnt1_item::before {
  content: "";
  display: block;
  width: 100vw;
  height: 16px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item::before {
    height: 1.3333333333vw;
  }
}
.p-secContents_cnt1_item[data-cate=tenjijo]::before {
  background: #da5c00;
}
.p-secContents_cnt1_item[data-cate=bunjo]::before {
  background: #efa92e;
}
.p-secContents_cnt1_item[data-cate=event]::before {
  background: #4d7eb5;
}
.p-secContents_cnt1_item[data-cate=plant]::before {
  background: #ffffff;
}
.p-secContents_cnt1_item[data-cate=plant]::before {
  background: #153d77;
}
.p-secContents_cnt1_item.is-visible {
  display: block;
}
@media screen and (min-width: 1001px) {
  .p-secContents_cnt1_item ._in {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-secContents_cnt1_item ._txt h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (min-width: 1001px) {
  .p-secContents_cnt1_item ._txt h2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item ._txt h2 {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._txt h2 {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 5.3333333333vw;
  }
}
.p-secContents_cnt1_item ._txt h2 span {
  font-size: 4.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item ._txt h2 span {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._txt h2 span {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 1001px) {
  .p-secContents_cnt1_item ._txt h2 span + span {
    margin-top: 25px;
  }
}
.p-secContents_cnt1_item ._txt h2 span strong {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.p-secContents_cnt1_item ._txt h2::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .p-secContents_cnt1_item ._txt h2::before {
    width: 57px;
    height: 72px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item ._txt h2::before {
    width: 39.9px;
    height: 50.4px;
    margin-bottom: 0;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._txt h2::before {
    width: 7.4666666667vw;
    height: 9.6vw;
    margin-right: 2.6666666667vw;
  }
}
.p-secContents_cnt1_item ._txt ._map {
  position: absolute;
  width: 660px;
  width: 55%;
  bottom: 100px;
}
.p-secContents_cnt1_item ._txt ._map img {
  opacity: 0.4;
  -webkit-filter: drop-shadow(0 0 5px rgba(102, 102, 102, 0.3));
          filter: drop-shadow(0 0 5px rgba(102, 102, 102, 0.3));
}
@media screen and (max-width: 1000px) {
  .p-secContents_cnt1_item ._txt ._map {
    display: none;
  }
}
.p-secContents_cnt1_item[data-cate=tenjijo] ._txt h2 span {
  border-color: #da5c00;
}
.p-secContents_cnt1_item[data-cate=bunjo] ._txt h2 span {
  border-color: #efa92e;
}
.p-secContents_cnt1_item[data-cate=event] ._txt h2 span {
  border-color: #4d7eb5;
}
.p-secContents_cnt1_item[data-cate=plant] ._txt h2 span {
  border: none;
}
.p-secContents_cnt1_item[data-cate=tenjijo] ._txt h2::before {
  background-image: url(../img/top/ico_pin_tenjijo.svg);
}
.p-secContents_cnt1_item[data-cate=bunjo] ._txt h2::before {
  background-image: url(../img/top/ico_pin_bunjo.svg);
}
.p-secContents_cnt1_item[data-cate=event] ._txt h2::before {
  background-image: url(../img/top/ico_pin_event.svg);
}
.p-secContents_cnt1_item[data-cate=plant] ._txt h2::before {
  background-image: url(../img/top/ico_pin_plant.svg);
}
.p-secContents_cnt1_item ._list {
  position: relative;
  background: #f9f9f9;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 50px;
  border-radius: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item ._list {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._list {
    padding: 5.8666666667vw 4.8vw;
  }
}
.p-secContents_cnt1_item ._list::after {
  content: "";
  display: block;
  inset: 20px;
  background: #fff;
  position: absolute;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._list::after {
    inset: 10px;
  }
}
.p-secContents_cnt1_item ._list dl {
  position: relative;
  z-index: 1;
}
.p-secContents_cnt1_item ._list dl + dl {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._list dl + dl {
    margin-top: 2.6666666667vw;
  }
}
.p-secContents_cnt1_item ._list dl dt {
  display: none;
}
.p-secContents_cnt1_item ._list dl dd ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._list dl dd ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-secContents_cnt1_item ._list dl dd ul li {
  position: relative;
}
.p-secContents_cnt1_item ._list dl dd ul li::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-secContents_cnt1_item ._list dl dd ul li:last-child::before {
  display: none;
}
.p-secContents_cnt1_item ._list dl dd ul li a {
  display: block;
  font-size: 1.9rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  padding: 5px 20px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._list dl dd ul li a {
    font-size: 3.7333333333vw;
    padding: 1.3333333333vw 2.1333333333vw;
  }
}
.p-secContents_cnt1_item ._list dl dd ul li a:hover {
  background: #fee;
  color: #fff;
}
.p-secContents_cnt1_item ._list dl.-tohoku dd ul li::before {
  background: #85c9eb;
}
.p-secContents_cnt1_item ._list dl.-kitakantou dd ul li::before {
  background: #80c1b6;
}
.p-secContents_cnt1_item ._list dl.-kantou dd ul li::before {
  background: #eea3a3;
}
.p-secContents_cnt1_item ._list dl.-chubu dd ul li::before {
  background: #b7d38d;
}
.p-secContents_cnt1_item ._list dl.-kinki dd ul li::before {
  background: #dfbc62;
}
.p-secContents_cnt1_item ._list dl.-chugoku dd ul li::before {
  background: #ecabcf;
}
.p-secContents_cnt1_item ._list dl.-shikoku dd ul li::before {
  background: #e9ab82;
}
.p-secContents_cnt1_item ._list dl.-kyusyu dd ul li::before {
  background: #bca1e7;
}
.p-secContents_cnt1_item ._list dl.-tohoku dd ul li a:hover {
  background: #85c9eb;
}
.p-secContents_cnt1_item ._list dl.-kitakantou dd ul li a:hover {
  background: #80c1b6;
}
.p-secContents_cnt1_item ._list dl.-kantou dd ul li a:hover {
  background: #eea3a3;
}
.p-secContents_cnt1_item ._list dl.-chubu dd ul li a:hover {
  background: #b7d38d;
}
.p-secContents_cnt1_item ._list dl.-kinki dd ul li a:hover {
  background: #dfbc62;
}
.p-secContents_cnt1_item ._list dl.-chugoku dd ul li a:hover {
  background: #ecabcf;
}
.p-secContents_cnt1_item ._list dl.-shikoku dd ul li a:hover {
  background: #e9ab82;
}
.p-secContents_cnt1_item ._list dl.-kyusyu dd ul li a:hover {
  background: #bca1e7;
}
@media screen and (min-width: 769px) {
  .p-secContents_cnt1_item ._box ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
        margin-bottom: 30px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    flex-wrap: wrap; 
  }
}



@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item ._box ul {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.p-secContents_cnt1_item ._box ul li {
  position: relative;
  background: #f9f9f9;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  border-radius: 10px;
}
@media screen and (min-width: 769px) {
  .p-secContents_cnt1_item ._box ul li {
    -webkit-flex-basis: 31%;
        -ms-flex-preferred-size: 31%;
            flex-basis: 31%;
                margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item ._box ul li {
    -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
            flex-basis: 32%;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._box ul li + li {
    margin-top: 5.3333333333vw;
  }
}
.p-secContents_cnt1_item ._box ul li::after {
  content: "";
  display: block;
  inset: 10px;
  background: #fff;
  position: absolute;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.p-secContents_cnt1_item ._box ul li ._img {
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.p-secContents_cnt1_item ._box ul li ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-secContents_cnt1_item ._box ul li ._txt {
  position: relative;
  z-index: 1;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.p-secContents_cnt1_item ._box ul li ._txt2 {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}


.p-secContents_cnt1_item ._box ul li ._txt p {
  padding: 20px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secContents_cnt1_item ._box ul li ._txt p {
    font-size: 1.6rem;
    padding: 15px 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-secContents_cnt1_item ._box ul li ._txt p {
    padding: 2.6666666667vw 4vw;
    font-size: 3.7333333333vw;
  }
}
.p-secContents_cnt1_item ._box ul li ._txt a {
  width: 100%;
}

.p-secSlider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 240px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-secSlider {
    height: 75px;
    height: 26.6666666667vw;
  }
}
.p-secSlider img {
  width: auto;
  height: 100%;
  max-width: 5000px;
}
.p-secSlider img:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}
.p-secSlider img:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}
@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

.p-secCampaign_title h2 {
  font-size: 4.8rem;
  color: #4e5064;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secCampaign_title h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_title h2 {
    font-size: 8vw;
    text-align: center;
    margin-bottom: 5.3333333333vw;
  }
}
.p-secCampaign_cnt1 + .p-secCampaign_cnt1 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 + .p-secCampaign_cnt1 {
    margin-top: 10.6666666667vw;
  }
}
.p-secCampaign_cnt1 > ._title p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-secCampaign_cnt1 > ._title p span {
  display: inline-block;
  color: #daa8a1;
  font-size: 1.2rem;
  white-space: nowrap;
}
.p-secCampaign_cnt1 > ._title p::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #daa8a1;
  margin-left: 20px;
}
@media screen and (min-width: 769px) {
  .p-secCampaign_cnt1 > ._cnt {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 > ._cnt {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt {
    margin-top: 5.3333333333vw;
  }
}
.p-secCampaign_cnt1 > ._cnt > ._txt > h3 {
  font-size: 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > h3 {
    font-size: 4.8vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > h3 span {
    display: inline-block;
    margin-right: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > h3 span {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > h3 span {
    display: block;
    text-align: center;
    font-size: 4.2666666667vw;
  }
}
.p-secCampaign_cnt1 > ._cnt > ._txt > dl {
  margin-top: 30px;
}
@media screen and (min-width: 1001px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > dl {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > dl > dt {
    min-width: 230px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > dl > dt {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 > ._cnt > ._txt > dl > dt {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
}
.p-secCampaign_cnt1 > ._cnt > ._txt > dl > dd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-secCampaign_cnt1 > ._cnt > ._txt > dl > dd ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.p-secCampaign_cnt1 > ._cnt > ._txt > dl > dd ._list2 {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .p-secCampaign_cnt1 > ._cnt > ._img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    -webkit-flex-basis: 340px;
        -ms-flex-preferred-size: 340px;
            flex-basis: 340px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-secCampaign_cnt1 > ._cnt > ._img {
    text-align: center;
  }
  .p-secCampaign_cnt1 > ._cnt > ._img img {
    width: 50%;
  }
}

/* -----------------------------------
Utility
------------------------------------ */
/*
 * _utility.scss
 */
/* -----------------------------------
print
------------------------------------ */
@media print {
  .u-printHidden {
    display: none;
  }
}

.u-printVisible {
  display: none;
}
@media print {
  .u-printVisible {
    display: block;
  }
}

/* -----------------------------------
font
------------------------------------ */
.u-fwb {
  font-weight: bold !important;
}

.u-fwn {
  font-weight: normal !important;
}

/* -----------------------------------
align
------------------------------------ */
.u-tc {
  text-align: center !important;
}

.u-tl {
  text-align: left !important;
}

.u-tr {
  text-align: right !important;
}

/* -----------------------------------
padding
------------------------------------ */
.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

/* -----------------------------------
font-size rem
------------------------------------ */
.u-fz10px {
  font-size: 1rem;
}

.u-fz11px {
  font-size: 1.1rem;
}

.u-fz12px {
  font-size: 1.2rem;
}

.u-fz13px {
  font-size: 1.3rem;
}

.u-fz14px {
  font-size: 1.4rem;
}

/* -----------------------------------
font-size em
------------------------------------ */
.u-fz09em {
  font-size: 0.9em;
}

.u-fz10em {
  font-size: 1em;
}

.u-fz11em {
  font-size: 1.1em;
}

.u-fz12em {
  font-size: 1.2em;
}

.u-fz13em {
  font-size: 1.3em;
}

.u-fz14em {
  font-size: 1.4em;
}

/* -----------------------------------
clerfix
------------------------------------ */
.sec::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* -----------------------------------
display
------------------------------------ */
.u-d_b {
  display: block !important;
}

.u-d_n {
  display: none !important;
}

.u-d_ib {
  display: inline-block !important;
}

/* -----------------------------------
display adjust
------------------------------------ */
.u-smhide, .u-sphide, .u-middlehide, .u-tablethide, .u-basehide {
  display: block;
}

.u-smblock, .u-spblock, .u-middleblock, .u-tabletblock, .u-baseblock {
  display: none;
}

@media screen and (max-width: 1499px) {
  .u-baseblock {
    display: block;
  }
  .u-basehide {
    display: none !important;
  }
}
@media screen and (max-width: 1100px) {
  .u-tabletblock {
    display: block;
  }
  .u-tablethide {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-middleblock {
    display: block;
  }
  .u-middlehide {
    display: none !important;
  }
}
@media screen and (max-width: 589px) {
  .u-spblock {
    display: block;
  }
  .u-sphide {
    display: none !important;
  }
}
@media screen and (max-width: 374px) {
  .u-smblock {
    display: block;
  }
  .u-smhide {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */