@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/*==================================
  設定
==================================*/
/* color
==================================*/
/* font-size base
==================================*/
/* font-weight
==================================*/
/* width
==================================*/
/* height
==================================*/
/* padding
==================================*/
/* margin
==================================*/
/* border
==================================*/
/* base
==================================*/
body {
  font-feature-settings: "palt" 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
@media (min-width: 800px) {
  a.tel {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 800px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 799px) {
  .pc {
    display: none !important;
  }
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.6s ease;
}

.c-anim-left {
  transform: translate(-100px, 0);
  opacity: 0;
  transition: transform 0.6s ease;
}
@media (max-width: 799px) {
  .c-anim-left {
    transform: translate(0, 30px);
  }
}

.c-anim-right {
  transform: translate(100px, 0);
  opacity: 0;
  transition: transform 0.6s ease;
}
@media (max-width: 799px) {
  .c-anim-right {
    transform: translate(0, 30px);
  }
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}
@media (max-width: 799px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
  logo
==================================*/
.logo {
  width: 100%;
  transition: all 0.5s ease;
}
.logo a {
  display: block;
}
@media (min-width: 800px) {
  .logo a:hover {
    opacity: 0.7;
  }
}

/*==================================
  sec_title
==================================*/
.sec_title {
  text-align: center;
}
.sec_title .sec_title_sub {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.sec_title .sec_title_sub.green {
  color: #155217;
}
.sec_title .sec_title_sub.brown {
  color: #522424;
}
.sec_title h2 {
  font-size: 38px;
  line-height: 1;
  font-weight: 100;
  letter-spacing: 0.3em;
  padding-top: 15px;
}

/*==================================
  story / action contents
==================================*/
.con_wrap .con_in {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.con_wrap .con_in .con {
  width: 100%;
  display: flex;
  justify-content: center;
}
.con_wrap .con_in .con.revers {
  flex-direction: row-reverse;
}
.con_wrap .con_in .con.revers .con_lead .con_lead_in {
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 20px !important;
}
.con_wrap .con_in .con .con_image img {
  width: 100%;
}
.con_wrap .con_in .con .con_lead .con_lead_in {
  padding-right: 10px;
}
@media (max-width: 799px) {
  .con_wrap .con_in .con .con_lead .con_lead_in {
    text-align: center;
  }
}
.con_wrap .con_in .con .con_lead .con_lead_in h3 {
  font-size: 25px;
  line-height: 1;
  border-bottom: 1px solid #155217;
  display: inline-block;
  padding-bottom: 1px;
  margin-bottom: 35px;
}
@media (max-width: 900px) {
  .con_wrap .con_in .con .con_lead .con_lead_in h3 {
    font-size: 2.78vw;
    margin-bottom: 3.89vw;
  }
}
.con_wrap .con_in .con .con_lead .con_lead_in h3.green {
  color: #155217;
  border-bottom: 1px solid #155217;
}
.con_wrap .con_in .con .con_lead .con_lead_in h3.brown {
  color: #522424;
  border-bottom: 1px solid #522424;
  white-space: nowrap;
}
.con_wrap .con_in .con .con_lead .con_lead_in p {
  font-size: 15px;
  line-height: 2.13;
}
@media (max-width: 799px) {
  .con_wrap .con_in .con .con_lead .con_lead_in p {
    font-size: 13px;
  }
}
.con_wrap .con_in .con .con_lead .con_lead_in p span {
  font-size: 19px;
  font-weight: 600;
}
@media (max-width: 799px) {
  .con_wrap .con_in .con .con_lead .con_lead_in p span {
    font-size: 17px;
  }
}

#loading {
  width: 100vw;
  height: 100vh;
  background-color: #eeeee9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  display: grid;
  place-content: center;
  place-items: center;
  transition: 1.3s ease-out;
}
#loading .logo_loading {
  width: 140px;
  animation: scall 2s ease-out forwards;
}
@keyframes scall {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
  }
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  height: 100px;
}

/* footer
==================================*/
footer {
  background: #1f1715;
  padding: 100px 0 40px;
}
footer .footer_inner {
  width: 100%;
  height: 100%;
}
footer .footer_inner .footer_logo {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  padding-bottom: 90px;
}
footer .footer_inner .copy {
  font-size: 11px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  text-align: center;
  color: #fff;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  mainVisual
==================================*/
#waguri main .mainVisual {
  display: block;
  width: 100%;
}
#waguri main .mainVisual .slideWrap {
  display: flex;
  overflow: hidden;
}
#waguri main .mainVisual .slideWrap .slideList {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 2px;
  padding-top: 2px;
  animation: loop 50s infinite linear 0.5s both;
}
#waguri main .mainVisual .slideWrap .slideList:nth-child(2) {
  margin-left: 2px;
}
#waguri main .mainVisual .slideWrap .slideList li {
  width: 25vw;
}
#waguri main .mainVisual .slideWrap .slideList li img {
  width: 100%;
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*==================================
  about
==================================*/
#waguri .about {
  padding: 70px 0 67.5px;
}
#waguri .about h2 {
  font-size: 30px;
  line-height: 1.6;
  color: #403c38;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
#waguri .about .about_text {
  text-align: center;
  padding: 30px 25px 0;
}
#waguri .about .about_text p {
  font-size: 18px;
  line-height: 1.9;
}

/*==================================
  story
==================================*/
#waguri .story {
  background-color: #eeeee9;
  padding: 100px 0 225px;
  overflow: hidden;
}
#waguri .story .con_wrap {
  padding-top: 225px;
}
#waguri .story .con_wrap .con_in .con.revers .con_lead .con_lead_in {
  margin-right: 6.233%;
}
#waguri .story .con_wrap .con_in .con .con_image {
  width: 93.767%;
}
#waguri .story .con_wrap .con_in .con .con_lead {
  width: 93.767%;
  padding-top: clamp(16px, 2.29vw, 32px);
}
#waguri .story .con_wrap .con_in .con .con_lead.pt45 {
  padding-top: clamp(22.5px, 3.21vw, 45px);
}
#waguri .story .con_wrap .con_in .con .con_lead.pt75 {
  padding-top: clamp(37.5px, 5.36vw, 75px);
}
#waguri .story .con_wrap .con_in .con .con_lead .con_lead_in {
  margin-left: 6.233%;
}
/*==================================
  action
==================================*/
#waguri .action {
  background-color: #fcfbf8;
  padding: 140px 0 214px;
  overflow: hidden;
}
#waguri .action .con_wrap {
  padding-top: 209px;
}
#waguri .action .con_wrap .con_in .con.revers .con_lead .con_lead_in {
  margin-right: 7.9%;
}
#waguri .action .con_wrap .con_in .con .con_image {
  width: 78.1%;
}
#waguri .action .con_wrap .con_in .con .con_lead {
  width: 92.1%;
  padding-top: clamp(8px, 1.14vw, 16px);
}
#waguri .action .con_wrap .con_in .con .con_lead.pt80 {
  padding-top: clamp(40px, 5.71vw, 80px);
}
#waguri .action .con_wrap .con_in .con .con_lead .con_lead_in {
  margin-left: 7.9%;
}
#waguri .action .banner_waguri {
  text-align: center;
  padding: 120px 0 0 0;
}
#waguri .action .banner_waguri a:hover {
  opacity: 0.7;
}
@media (max-width: 799px) {
  #waguri .action .banner_waguri {
    padding: 60px 24px 0 24px;
  }
}
#waguri .action .banner_waguri02 {
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 799px) {
  #waguri .action .banner_waguri02 {
    padding: 60px 24px 0 24px;
  }
}

/*==================================
  partners
==================================*/
#waguri .partners {
  background-color: #eeeee9;
  padding: 120px 0 130px;
}
@media (max-width: 799px) {
  #waguri .partners {
    padding: 100px 0;
    background-color: #fff;
  }
}
#waguri .partners .sec_title h2 {
  letter-spacing: 0.2em;
}
#waguri .partners .partners_lead {
  padding-top: 56px;
}
#waguri .partners .partners_lead p {
  font-size: 21px;
  text-align: center;
  line-height: 2.14;
}
#waguri .partners .partners_list {
  padding: 0 10px;
  text-align: center;
  max-width: 1000px;
  margin: 77px auto 0 auto;
}
@media (max-width: 799px) {
  #waguri .partners .partners_list {
    padding: 0 24px;
  }
}
#waguri .partners .partners_list .tit {
  text-align: left;
  padding: 0 0 25px 0;
}
#waguri .partners .partners_list .tit img {
  max-width: 400px;
}
@media (max-width: 799px) {
  #waguri .partners .partners_list .tit img {
    max-width: 250px;
  }
}
#waguri .partners .partners_list ul {
  display: flex;
  flex-wrap: wrap;
}
#waguri .partners .partners_list ul li {
  padding: 0 0 5px 0;
}
@media (max-width: 799px) {
  #waguri .partners .partners_list ul li {
    font-size: 13px;
  }
}

/*==================================
  report
==================================*/
#waguri .report {
  background-color: #fcfbf8;
  padding: 150px 0 185px;
}
#waguri .report .report_list {
  width: 100%;
  max-width: 1035px;
  margin: 85px auto 0;
  padding: 0 10px;
  box-sizing: border-box;
}
#waguri .report .report_list .report_list_head .report_list_link {
  width: 100%;
  max-width: 185px;
  margin-left: auto;
}
#waguri .report .report_list .report_list_head .report_list_link a {
  display: block;
  border-radius: 30px;
  border: 1px solid #403c38;
  padding: 18.5px 0 18.5px 37px;
  font-size: 20px;
  position: relative;
  color: #403c38;
  font-family: "Noto Sans JP";
  font-weight: 400;
  transition: all 0.3s ease;
}
#waguri .report .report_list .report_list_head .report_list_link a::after {
  content: "〉";
  display: inline-block;
  padding-left: 25px;
  transition: all 0.3s ease;
}
@media (min-width: 800px) {
  #waguri .report .report_list .report_list_head .report_list_link a:hover::after {
    transform: translateX(10px);
  }
}
#waguri .report .report_list .report_list_items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
#waguri .report .report_list .report_list_items .report_item {
  width: 31.5%;
  box-sizing: border-box;
  background-color: #d4d4b4;
  padding: 20px 25px 27px 20px;
}
#waguri .report .report_list .report_list_items .report_item:not(:nth-child(3n+1)) {
  margin-left: 2.75%;
}
#waguri .report .report_list .report_list_items .report_item:nth-child(n+4) {
  margin-top: 40px;
}
#waguri .report .report_list .report_list_items .report_item a .report_item_head {
  margin-bottom: 38px;
}
#waguri .report .report_list .report_list_items .report_item a .report_item_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 253px;
}
#waguri .report .report_list .report_list_items .report_item a .report_item_body .report_item_picture_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#waguri .report .report_list .report_list_items .report_item a .report_item_body .report_item_picture_wrap .report_item_picture {
  position: relative;
  padding-top: 61.66%;
  transition: all 0.3s ease;
}
#waguri .report .report_list .report_list_items .report_item a .report_item_body .report_item_picture_wrap .report_item_picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
#waguri .report .report_list .report_list_items .report_item a .report_item_body .report_item_date {
  line-height: 1;
  margin-top: 22px;
  font-size: 12px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  color: #403c38;
  text-align: center;
}
#waguri .report .report_list .report_list_items .report_item a .report_item_body .report_item_title {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.91;
  font-family: "Noto Sans JP";
  font-weight: 500;
  color: #403c38;
  min-height: 60px;
}
@media (min-width: 800px) {
  #waguri .report .report_list .report_list_items .report_item a:hover .report_item_body .report_item_picture_wrap .report_item_picture img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/*==================================
  contact
==================================*/
#waguri .contact {
  padding: 46px 10px 92px;
}
#waguri .contact .contact_banner_wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
#waguri .contact .contact_banner_wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
#waguri .contact .contact_banner_wrap a .contact_banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}
#waguri .contact .contact_banner_wrap a .contact_banner img {
  transition: all 0.3s ease;
}
#waguri .contact .contact_banner_wrap a .contact_banner_link {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 100%;
  max-width: 285px;
}
#waguri .contact .contact_banner_wrap a .contact_banner_link span {
  font-size: 15px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #fff;
  background-color: #3b2424;
  padding: 15px 0 15px 70px;
  display: block;
  position: relative;
  border-radius: 22px;
  transition: all 0.3s ease;
}
@media (min-width: 800px) {
  #waguri .contact .contact_banner_wrap a .contact_banner_link span {
    letter-spacing: 0.2em;
  }
}
#waguri .contact .contact_banner_wrap a .contact_banner_link span::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 10px;
  transform: translate(-50%);
  width: 42px;
  height: 7px;
  transition: all 0.3s ease;
  background: url(/waguri/images/contact_arrow.png) center center/contain;
}
#waguri .contact .contact_banner_wrap a:hover .contact_banner img {
  opacity: 0.7;
}
#waguri .contact .contact_banner_wrap a:hover .contact_banner_link span::after {
  transform: translateX(-10%);
}
@media (max-width: 799px) {
  #waguri .contact .contact_banner_wrap a:hover .contact_banner img {
    opacity: 1;
  }
  #waguri .contact .contact_banner_wrap a:hover .contact_banner_link span::after {
    transform: none;
  }
}