@charset "UTF-8";
@media screen and (min-width: 769px) {
  .visible_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .visible_pc {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 88px;
  background-color: #F2F1ED;
  border-bottom: solid #E6E1DC 1px;
}

@media screen and (max-width: 768px) {
  header {
    height: 49px;
  }
}

@media screen and (min-width: 769px) {
  header .row {
    padding: 0 30px;
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  header .left {
    display: flex;
    align-items: center;
    gap: 55px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1040px) {
  header .left {
    gap: 40px;
  }
}

header h1 a {
  display: block;
}

@media screen and (max-width: 768px) {
  header h1 a {
    text-align: center;
  }
}

header h1 a img {
  height: 30px;
}

@media screen and (max-width: 768px) {
  header h1 a img {
    height: 20px;
  }
}

header .logo img {
  height: 22px;
}

@media screen and (min-width: 769px) {
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5em;
}

@media screen and (max-width: 1040px) {
  header nav ul {
    gap: 1em;
  }
}

header nav ul li.current-menu-item a:before {
  width: 100%;
  left: 0;
}

header nav ul li a {
  display: inline-block;
  font-weight: 500;
  position: relative;
  height: 88px;
  line-height: 88px;
}

header nav ul li a:before {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #937A63;
  transition: 0.4s ease-in-out;
}

header nav ul li a:hover {
  text-decoration: none;
}

header nav ul li a:hover:before {
  width: 100%;
  left: 0;
}

footer {
  background: #36322B;
  color: #fff;
  padding: 0;
}

.f_inner {
  padding: 60px 40px 35px;
  max-width: 1560px;
  margin: 0 auto;
}

body.home .f_inner {
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  body.home .f_inner {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1280px) {
  .f_inner {
    padding: 60px 60px 35px;
  }
}

@media screen and (max-width: 768px) {
  .f_inner {
    padding: 30px 20px 30px;
  }
}

.f_info {
  display: flex;
  gap: 30px;
  position: relative;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .f_info {
    margin-bottom: 50px;
    flex-direction: column;
    gap: 35px;
    padding: 0 4px;
  }
}

.f_info .logo img {
  width: 184px;
}

@media screen and (min-width: 769px) {
  .f_info .logo {
    width: 250px;
    border-right: solid 1px rgba(255, 255, 255, 0.1);
  }
}

@media screen and (min-width: 769px) {
  .f_info dl {
    padding-right: 150px;
    width: calc(100% - 250px);
  }
}

.f_info dt {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .05em;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .f_info dt {
    line-height: 1.574;
    font-size: 14px;
  }
}

.f_info dd {
  font-size: 14px;
  line-height: 1.71;
}

@media screen and (max-width: 768px) {
  .f_info dd {
    line-height: 1.7;
    font-size: 13px;
  }
}

.f_info dd .link {
  margin-top: 1em;
}

.f_info .link a {
  color: inherit;
  border-bottom: solid 1px #fff;
  display: inline-block;
  padding-bottom: .2em;
  font-size: 13px;
  letter-spacing: .05em;
  transition: opacity .3s;
}

.f_info .link a:hover {
  opacity: .8;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .f_info .link a {
    font-size: 12px;
  }
}

.f_info > .link {
  position: absolute;
  right: 0;
  top: 0;
}

.f_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 3.448%;
  margin-bottom: 75px;
}

@media screen and (max-width: 1000px) {
  .f_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .f_list {
    gap: 50px;
    margin-bottom: 40px;
  }
}

.f_list dt {
  font-weight: bold;
  letter-spacing: .02em;
  margin-bottom: .8em;
}

@media screen and (max-width: 768px) {
  .f_list dt {
    font-size: 14px;
    margin: 2em 0 1.2em;
  }
}

.f_list dd {
  font-size: 13px;
  line-height: 1.69;
}

@media screen and (max-width: 768px) {
  .f_list {
    margin-left: 4px;
  }
  .f_list figure {
    width: 240px;
  }
  .f_list li {
    padding-left: 20px;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
  }
}

.f_list li a {
  color: #fff;
  transition: opacity .3s;
}

.f_list li a:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media screen and (min-width: 769px) {
  .f_list li a {
    display: flex;
    justify-content: space-between;
  }
  .f_list figure {
    width: 39.2857%;
  }
  .f_list dl {
    width: 55.357%;
  }
}

.f_news {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .f_news {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 50px;
  }
}

.f_news p {
  letter-spacing: .05em;
}

.f_news .ttl {
  font-weight: 600;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .f_news .ttl {
    border-right: solid 1px rgba(255, 255, 255, 0.1);
    width: 21.38%;
    font-size: 16px;
  }
}

.f_news ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media screen and (min-width: 769px) {
  .f_news ul {
    width: 74.31%;
    gap: 30px;
  }
}

.f_news .date {
  font-size: 12px;
}

@media screen and (min-width: 769px) {
  .f_news .date {
    width: 100px;
  }
}

.f_news .tit {
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-right: 1.5em;
}

@media screen and (min-width: 769px) {
  .f_news .tit {
    font-size: 14px;
    width: calc(100% - 100px);
    padding: 0;
  }
}

.f_news .tit:after {
  content: '';
  background: url(assets/images/ico_arrow_w.svg) no-repeat 50%/contain;
  aspect-ratio: 8 / 10;
  width: 5px;
  display: inline-block;
  margin-left: 1.2em;
  top: -.1em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .f_news .tit:after {
    position: absolute;
    right: 0;
    top: .5em;
  }
}

.f_news a {
  color: inherit;
  display: flex;
  transition: opacity .3s;
}

@media screen and (max-width: 768px) {
  .f_news a {
    flex-direction: column;
    gap: 8px;
  }
}

.f_news a:hover {
  opacity: .8;
  text-decoration: none;
  color: inherit;
}

.f_copy {
  font-size: 11px;
  letter-spacing: .05em;
  color: #B4A698;
}

@media screen and (max-width: 768px) {
  .f_copy {
    font-size: 10px;
  }
}

@media screen and (min-width: 1600px) {
  .home_wrap {
    width: calc(100% - 320px);
  }
}

@media screen and (min-width: 1600px) {
  body.home footer, body.home header {
    width: calc(100% - 320px);
  }
}

#mainvisual {
  width: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 57px;
}

@media screen and (min-width: 1600px) {
  #mainvisual {
    margin-bottom: 74px;
  }
}

@media screen and (min-width: 769px) {
  #mainvisual {
    height: calc(100vh - 88px);
    min-height: 500px;
  }
}

@media screen and (max-width: 768px) {
  #mainvisual {
    aspect-ratio: 390 / 520;
    margin-bottom: 25px;
    height: auto;
  }
}

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

#mainvisual .slider {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#mainvisual .slider .slick-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

#mainvisual .slider .slick-slider .slick-list {
  height: 100%;
}

#mainvisual .slider .slick-slider .slick-list .slick-track {
  height: 100%;
}

#mainvisual .slick-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#mainvisual .slick-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 35%;
  background: linear-gradient(#626262 0%, #a6a6a6 49.9%, #fff 100%);
  bottom: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  transform: rotate(180deg);
}

#mainvisual .slick-slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

#mainvisual .slick-slide img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
}

#mainvisual .slick-slide .txt {
  position: absolute;
  bottom: 8.2%;
  left: 5%;
  z-index: 3;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #mainvisual .slick-slide .txt {
    bottom: 3.84%;
  }
}

#mainvisual .slick-slide p {
  font-size: 13px;
  margin-bottom: 40px;
  letter-spacing: .05em;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  #mainvisual .slick-slide p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

#mainvisual .slick-slide p span {
  display: inline-block;
  padding-left: 6em;
  position: relative;
}

#mainvisual .slick-slide p span:before {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border-bottom: solid 1px #fff;
  width: 4.153em;
  left: .8em;
}

#mainvisual .slick-slide h2 {
  font-weight: bold;
  font-size: 27px;
  letter-spacing: 0.03em;
  line-height: 1.66;
  margin-bottom: .8em;
}

@media screen and (max-width: 768px) {
  #mainvisual .slick-slide h2 {
    font-size: 18px;
  }
}

#mainvisual .slick-slide .tag {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: .4em;
  margin: 0;
}

#mainvisual .slick-slide .tag i {
  font-style: normal;
  letter-spacing: .05em;
  border: solid 1px #fff;
  text-align: center;
  border-radius: 3em;
  display: inline-block;
  padding: .4em 1em;
  min-width: 80px;
}

@media screen and (max-width: 768px) {
  #mainvisual .slick-slide .tag {
    font-size: 11px;
  }
}

#mainvisual .slick-dots {
  bottom: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  column-gap: 4px;
}

@media screen and (max-width: 768px) {
  #mainvisual .slick-dots {
    padding: 4px;
  }
}

#mainvisual .slick-dots li {
  width: auto;
  height: auto;
  margin: unset;
  flex: 1;
}

#mainvisual .slick-dots li button {
  position: relative;
  width: 100%;
  height: 3px;
  padding: 0;
  background-color: #fff;
}

#mainvisual .slick-dots li button::before {
  content: none;
}

#mainvisual .slick-dots li button:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0%;
  height: 100%;
}

#mainvisual .slick-active button:after {
  background-color: #1e986d;
  animation: progress 6s linear forwards;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.u_inner {
  padding: 0 40px;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  .u_inner {
    padding: 0 60px;
  }
}

@media screen and (max-width: 768px) {
  .u_inner {
    padding: 0 20px;
  }
}

@media screen and (min-width: 769px) {
  #page .u_inner {
    max-width: 1560px;
    margin: 0 auto;
  }
}

.ft_e {
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
}

.top_about {
  position: fixed;
  z-index: 100;
  right: 0;
  width: 320px;
}

@media screen and (max-width: 768px) {
  .top_about {
    display: none;
  }
}

.top_about a {
  background: #905C40 url(assets/images/ico_arrow_w.svg) no-repeat calc(100% - 20px) center/8px;
  height: 88px;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .01em;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 1em;
  padding-top: .2em;
  transition: opacity .3s;
}

.top_about a:hover {
  text-decoration: none;
  color: #fff;
  opacity: .8;
}

.top_about img {
  width: 132px;
  position: relative;
  top: -.1em;
}

@media screen and (min-width: 1600px) {
  .top_about {
    top: 0;
  }
}

.top_sec {
  position: relative;
  margin-bottom: 90px;
}

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

.top_sec a {
  transition: opacity .3s;
}

.top_sec a:hover {
  opacity: .8;
  text-decoration: none;
}

.top_sec h2 {
  font-size: 14px;
  letter-spacing: .05em;
  margin-bottom: 28px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top_sec h2 {
    font-size: 13px;
  }
}

@media screen and (min-width: 769px) {
  .top_sec h2 {
    margin-bottom: 40px;
    padding-bottom: 1.1em;
    border-bottom: solid 1px #949494;
  }
  .top_sec h2:before {
    content: '';
    position: absolute;
    right: 0;
    border-bottom: solid 3px #905C40;
    bottom: -1px;
    width: 86px;
  }
}

.top_sec h2 i {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: .02em;
  vertical-align: -.2em;
  margin-right: .5em;
}

@media screen and (max-width: 768px) {
  .top_sec h2 i {
    font-size: 28px;
  }
}

.top_sec h2 em {
  font-style: normal;
  font-size: 18px;
  position: relative;
  padding-bottom: .3em;
}

@media screen and (max-width: 768px) {
  .top_sec h2 em {
    font-size: 15px;
    margin: 0 -.4em;
  }
}

.top_sec h2 em:before {
  content: '';
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
  width: calc(100% - 1em);
  height: 3px;
  background: #CB883A;
}

@media screen and (max-width: 768px) {
  .top_sec .link {
    margin: 30px -8px 0;
  }
}

.top_sec .link a {
  color: #905C40;
  font-size: 12px;
  display: inline-block;
  padding: 0 2em;
}

@media screen and (max-width: 768px) {
  .top_sec .link a {
    text-align: center;
    display: block;
    background: #E6E1DC;
    line-height: 48px;
  }
}

@media screen and (min-width: 769px) {
  .top_sec .link {
    position: absolute;
    top: 9px;
    right: 0;
  }
}

@media screen and (min-width: 1000px) {
  .top_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  #top-people {
    width: 65%;
  }
  #top-news {
    width: 29.82%;
  }
}

@media screen and (min-width: 769px) {
  #top-articles {
    margin-bottom: 68px;
  }
}

@media screen and (max-width: 768px) {
  #top-articles h2 {
    margin-bottom: 22px;
  }
}

@media screen and (min-width: 1600px) {
  #top-articles {
    position: fixed;
    top: 88px;
    width: 320px;
    right: 0;
    background: #fff;
    height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 24px 30px;
  }
  #top-articles h2 {
    text-align: center;
    border: none;
    padding: 0;
    font-size: 13px;
    margin-bottom: 30px;
  }
  #top-articles h2:before {
    content: none;
  }
  #top-articles h2 i {
    display: block;
    margin-right: 0;
    font-weight: 500;
  }
  #top-articles h2 em {
    font-size: 15px;
  }
  #top-articles .link {
    position: static;
  }
  #top-articles .link a {
    padding: 0;
    text-align: center;
    display: block;
    background: #E6E1DC;
    line-height: 48px;
  }
  #top-articles li .tag {
    display: none;
  }
}

#top-articles figure img {
  aspect-ratio: 240 / 160;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #top-articles figure {
    margin: 0 -8px 13px;
  }
}

@media screen and (min-width: 1600px) {
  #top-articles figure {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1599px) {
  #top-articles ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #top-articles li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition-property: background;
  }
  #top-articles li a:hover {
    background: #fff;
    opacity: 1;
  }
  #top-articles li a:hover .tag i {
    background: #F2F1ED;
  }
  #top-articles li figure {
    width: 44.445%;
  }
  #top-articles li .body {
    width: 51.85%;
  }
}

@media screen and (min-width: 1600px) {
  #top-articles li {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  #top-articles li {
    margin-bottom: 25px;
  }
}

#top-articles li p {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: calc(24 / 16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 表示する行数 */
  overflow: hidden;
  margin: .7em 0 0;
}

@media screen and (min-width: 1600px) {
  #top-articles li p {
    margin: .3em 0 0;
  }
}

@media screen and (max-width: 768px) {
  #top-articles li p {
    margin-top: .2em;
  }
}

#top-articles .cat span {
  font-weight: 700;
  font-size: 13px;
}

@media screen and (min-width: 1600px) {
  #top-articles .cat span {
    font-size: 12px;
  }
}

#top-articles .cat span::before {
  content: "●";
  margin-right: .5em;
  font-size: 10px;
  position: relative;
  top: -.1em;
}

#top-articles .cat01 span {
  color: #1e986d;
}

#top-articles .cat02 span {
  color: #397bbe;
}

#top-articles .cat03 span {
  color: #cb883a;
}

#top-articles .tag {
  margin-top: 2em;
  font-size: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: .4em;
}

#top-articles .tag i {
  font-style: normal;
  letter-spacing: .05em;
  color: #905C40;
  background: #fff;
  text-align: center;
  border-radius: 3em;
  display: block;
  padding: .4em 1em;
  min-width: 80px;
}

@media screen and (max-width: 768px) {
  #top-articles .tag {
    display: none;
  }
}

#top-pickup ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 5.17%;
}

@media screen and (max-width: 1000px) {
  #top-pickup ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 17px;
  }
}

#top-pickup li {
  border-bottom: solid 1px #E6E1DC;
  position: relative;
}

#top-pickup li:before {
  content: '';
  position: absolute;
  right: 0;
  border-bottom: solid 1px #905C40;
  bottom: -1px;
  width: 60px;
}

@media screen and (max-width: 768px) {
  #top-pickup li:before {
    width: 40px;
  }
}

#top-pickup li a {
  display: flex;
}

@media screen and (min-width: 769px) {
  #top-pickup li a {
    min-height: 110px;
  }
}

@media screen and (max-width: 1000px) {
  #top-pickup li a {
    min-height: 85px;
  }
}

@media screen and (max-width: 768px) {
  #top-pickup li a {
    min-height: 0;
    padding-bottom: 18px;
    flex-direction: column;
    gap: 11px;
  }
}

#top-pickup li .date {
  font-size: 12px;
  letter-spacing: .03em;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  #top-pickup li .date {
    width: 100px;
    margin-top: .3em;
  }
}

#top-pickup li .tit {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5;
  background: url(assets/images/ico_arrow.svg) no-repeat calc(100% - 26px) 1.8em/8px;
  padding-right: 75px;
}

@media screen and (max-width: 768px) {
  #top-pickup li .tit {
    font-size: 14px;
    background-position: calc(100% - 15px) 0.8em;
    padding-right: 58px;
  }
}

@media screen and (min-width: 769px) {
  #top-pickup li .tit {
    width: calc(100% - 100px);
  }
}

#top-people ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 0;
  margin-top: 47px;
}

@media screen and (max-width: 600px) {
  #top-people ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }
}

#top-people li a {
  display: block;
  max-width: 180px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #top-people li a {
    max-width: 165px;
  }
}

#top-people li p {
  letter-spacing: .05em;
  font-weight: bold;
}

#top-people .sub {
  color: #905C40;
  font-size: 11px;
  line-height: 2;
  border-radius: 3em;
  background: #E6E1DC;
}

@media screen and (max-width: 768px) {
  #top-people .sub {
    font-size: 10px;
  }
}

#top-people .name {
  font-size: 15px;
  margin: 1em 0 .3em;
}

#top-people .en {
  font-size: 13px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  #top-people .en {
    font-size: 11px;
  }
}

#top-people figure {
  margin-bottom: 22px;
}

#top-people figure img {
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: solid 4px #fff;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #top-people figure img {
    width: 150px;
  }
}

#top-news {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #top-news {
    margin-bottom: 30px;
  }
}

#top-news h2 {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #top-news h2 {
    margin-bottom: 10px;
  }
}

#top-news li + li {
  border-top: solid 1px #E6E1DC;
}

#top-news li a {
  display: block;
  padding: 17px 0 22px;
}

@media screen and (min-width: 769px) {
  #top-news li a {
    min-height: 129px;
    padding: 25px 0 0;
  }
}

#top-news .date {
  display: block;
  font-size: 12px;
  letter-spacing: .05em;
  margin-bottom: .8em;
}

#top-news .tit {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.71;
}

@media screen and (max-width: 768px) {
  #top-news .tit {
    font-size: 14px;
  }
}

@media screen and (min-width: 769px) {
  #top-news .tit {
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 768px) {
  .about_header#page-header {
    padding-left: 0;
    padding-right: 0;
  }
}

.about_header .catch {
  margin-bottom: 70px;
}

.about_header .catch img {
  max-width: 330px;
}

@media screen and (max-width: 768px) {
  .about_header .catch img {
    max-width: 204px;
  }
}

.about_header p {
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .about_header p {
    text-align: left;
    font-size: 15px;
  }
}

.about_sec {
  margin-bottom: 120px;
}

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

.about_sec h3 {
  text-align: center;
  font-size: 18px;
  letter-spacing: .05em;
  padding: 1.2em 0;
  border-top: solid 1px #36322B;
  border-bottom: solid 1px #36322B;
  margin-bottom: 120px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .about_sec h3 {
    margin-bottom: 50px;
    padding-left: .5em;
    font-size: 15px;
    line-height: 1.6;
  }
}

@media screen and (min-width: 401px) {
  .about_sec h3 .sp2 {
    display: none;
  }
}

.about_sec h4 {
  text-align: center;
  border-left-width: .03em;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .about_sec h4 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.about_sec i {
  font-style: normal;
}

.about_sec .row {
  display: flex;
}

@media screen and (max-width: 1100px) {
  .about_sec .row {
    flex-direction: column;
    gap: 60px;
  }
}

@media screen and (min-width: 1101px) {
  .about_sec .row > * {
    width: 50%;
  }
}

.about_sec .row2 {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .about_sec .row2 {
    flex-direction: column;
    gap: 50px;
  }
}

.about_sec .row2 figure {
  text-align: center;
}

.about_sec .row2 figure img {
  width: 806px;
}

@media screen and (min-width: 1101px) {
  .about_sec .row2 figure {
    width: 63.5%;
  }
  .about_sec .row2 .desc {
    width: 30%;
    margin-right: 2%;
  }
}

.about_sec .row2 p {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
  .about_sec .row2 p {
    font-size: 15px;
  }
}

.about_act {
  text-align: center;
}

.about_act ul {
  background: url(assets/images/about_circle.svg) no-repeat 50%/contain;
  aspect-ratio: 745 / 404;
  display: flex;
  padding: 4% 4.2%;
  margin: 0 auto;
  max-width: 74.5em;
  font-size: 10px;
}

@media screen and (min-width: 1101px) and (max-width: 1600px) {
  .about_act ul {
    font-size: calc(100vw * 10 / 1600);
  }
}

@media screen and (max-width: 1000px) {
  .about_act ul {
    font-size: calc(100vw * 10 / 1000);
  }
}

@media screen and (max-width: 768px) {
  .about_act ul {
    font-size: calc(100vw * 10 / 800);
    padding: 6% 4.2%;
  }
}

.about_act li {
  width: 50%;
}

.about_act i {
  color: #905C40;
  display: block;
  margin-bottom: 1.8em;
  font-size: 3.4em;
  letter-spacing: .05em;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .about_act i {
    margin-bottom: 1.2em;
  }
}

.about_act dl {
  padding: 0 5em 10%;
  position: relative;
}

.about_act dt {
  font-size: 2.1em;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: .8em;
}

.about_act dd {
  font-size: 1.4em;
  letter-spacing: .05em;
  line-height: 1.57;
  font-weight: bold;
}

.about_act .link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  font-size: 1.5em;
  width: 20em;
  margin: 2.9em auto 0;
}

@media screen and (max-width: 768px) {
  .about_act .link {
    margin: 2em auto 0;
  }
}

.about_act .link p {
  background: #905C40;
  font-weight: 500;
  color: #fff;
  border-radius: 3em;
  padding: .1em 1em;
}

.about_sol {
  padding: 0 0 0 40px;
}

@media screen and (max-width: 1100px) {
  .about_sol {
    padding: 0;
  }
}

@media screen and (min-width: 1500px) {
  .about_sol {
    padding: 0 0 0 126px;
  }
}

.about_sol dl {
  border-bottom: solid 1px #905C40;
  padding: 20px 20px 20px 95px;
  background: #fff;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .about_sol dl {
    padding: 20px 20px 25px 65px;
  }
}

.about_sol dl:nth-of-type(3) {
  position: relative;
}

.about_sol dl:nth-of-type(3):before {
  content: '';
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: -12px;
  background: #905C40;
  width: 22px;
  height: 12px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.about_sol dt {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .1em;
  margin-bottom: .4em;
}

@media screen and (max-width: 768px) {
  .about_sol dt {
    font-size: 16px;
  }
}

.about_sol dt i {
  position: absolute;
  font-size: 30px;
  letter-spacing: .05em;
  color: #905C40;
  left: -68px;
  margin-top: .1em;
}

@media screen and (max-width: 768px) {
  .about_sol dt i {
    font-size: 25px;
    left: -47px;
  }
}

.about_sol dd {
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 1.53;
}

@media screen and (max-width: 768px) {
  .about_sol dd {
    font-size: 13px;
  }
}

.about_sol .link {
  margin-top: 23px;
}

.about_sol .link a {
  background: #905C40 url(assets/images/ico_arrow_w.svg) no-repeat calc(100% - 20px) center/8px;
  padding: 1.63em 0;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .03em;
  transition: opacity .3s;
}

@media screen and (max-width: 768px) {
  .about_sol .link a {
    text-align: left;
    padding: 1em 1.2em;
  }
}

.about_sol .link a:hover {
  opacity: .8;
  text-decoration: none;
}

/*# sourceMappingURL=customize-style2.css.map */