@charset "utf-8";
/* CSS Document */

/*---------------------------------------------------------------------
	container
---------------------------------------------------------------------*/
#container {
  overflow: hidden;
}
#container.fixed {
  position: fixed;
  width: 100%;
}

@media print, screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
@media print, screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

@media print, screen and (max-width: 425px) {
  .sp_block {
    display: block;
  }
}

.font_mincho {
  font-family: "Noto Serif JP";
}

/*---------------------------------------------------------------------
	Slider content
---------------------------------------------------------------------*/
.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slick-slider {
  display: none;
}

/*slick-initializedクラスが付与されたら*/
.slick.slick-initialized {
  display: block;
}

/*---------------------------------------------------------------------
	alert_box
---------------------------------------------------------------------*/
.alert_box {
  padding: 10px;
  background: #b20000;
}
.alert_box .inner {
  background: #fff;
  padding: 12px;
  border: 4px solid #ff8a92;
  max-width: 1200px;
  margin: 0 auto;
}
.alert_box .head {
  background: #b20000;
  padding: 10px;
  position: relative;
}
.alert_box .ttl {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
}
.alert_box .link {
  position: absolute;
  right: 8px;
  top: 8px;
}
.alert_box .link a {
  color: #000;
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  text-align: center;
  background: #fff;
  border: 1px solid #bfbfbf;
  padding: 2px 20px 2px 10px;
}
.alert_box .link a::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #e60011;
}

.alert_box .list {
}
.alert_box .list li {
}
.alert_box .list a {
  display: block;
  text-decoration: none;
  border-bottom: 1px dotted #bfbfbf;
  padding: 5px;
  padding-left: 20px;
  position: relative;
}
.alert_box .list a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  border: 5px solid transparent;
  border-left: 7px solid #b20000;
}
.alert_box .list .date {
  color: #707070;
  font-size: 1.4rem;
}
.alert_box .list .title {
  text-decoration: underline;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .alert_box {
    padding: 30px;
  }
  .alert_box .ttl {
    font-size: 2.4rem;
  }
  .alert_box .link a {
    width: 200px;
    padding: 6px;
    transition: 0.3s;
  }
  .alert_box .link a::before {
    right: 8px;
    top: 14px;
  }
  .alert_box .link a:hover {
    background: #fff4bd;
  }
  .alert_box .list a {
    display: table;
    width: 100%;
    padding: 10px 10px 10px 20px;
    transition: 0.3s;
  }
  .alert_box .list a:hover {
    border-bottom-color: #b20000;
    background: #fff4bd;
  }
  .alert_box .list .date {
    display: table-cell;
    vertical-align: top;
    font-size: 1.6rem;
    width: 140px;
    padding-top: 4px;
  }
  .alert_box .list .title {
    display: table-cell;
    vertical-align: top;
    font-size: 2rem;
  }
  .alert_box .list a::before {
    top: 22px;
  }
}

/*---------------------------------------------------------------------
	site_header
---------------------------------------------------------------------*/
#site_header {
  position: relative;
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 5px;
  right: 10px;
  margin: 0 auto;
}
.site_logo {
  max-width: 300px;
  line-height: 1;
  vertical-align: top;
}

.header_menu {
  display: none;
}

.header_mail {
  display: none;
}

/*--- fixed ---*/

.site_logo {
  display: none;
}

#site_header.fixed .btn_site_navi {
  display: block;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  #site_header {
    padding: 15px 60px 15px 25px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    column-gap: 1.6rem;
    position: relative;
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 100;
  }

  #site_header:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: url(../image/common/header_line.jpg) repeat-x;
    background-size: 6px 2px;
  }

  #site_header.fixed {
    padding: 15px 75px 15px 25px;
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 60px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  }

  #site_header.fixed .header_mail {
    display: block;
    margin-left: 20px;
  }

  #site_header .btn_site_navi {
    display: block;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 10px;
  }

  #site_header .btn_site_navi a {
    background-color: transparent;
    color: #1c1c1c;
  }

  #site_header .line {
    background-color: #1c1c1c;
    width: 20px;
    left: 16px;
    top: 19px;
  }

  #site_header .btn_site_navi .line::before {
    top: -7px;
  }

  #site_header .btn_site_navi .line::after {
    top: 7px;
  }

  #site_header .btn_site_navi .line::before,
  #site_header .btn_site_navi .line::after {
    background-color: #1c1c1c;
    width: 20px;
  }

  #site_header .btn_site_navi .text {
    display: none;
  }

  .site_logo {
    display: block;
  }

  #site_header.fixed .btn_site_navi {
    right: 20px;
  }

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

  .site_navi.open .btn_site_navi {
    display: block;
  }

  .header_mail {
    display: block;
  }

  .header_menu {
    display: block;
    float: right;
    text-align: right;
  }
  .g_navi {
    justify-self: end;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    max-width: 780px;
  }
  .g_navi > li {
  }
  .g_navi > li + li {
    margin-left: 10px;
  }
  .g_navi > li > a {
    color: #000;
    font-size: 1.7rem;
    font-weight: 500;
    display: block;
    text-decoration: none;
    padding: 5px 20px;
    transition: 0.3s;
  }
  .g_navi > li > a:hover {
    color: #019fe8;
  }
}

/*----- btn_site_navi -----*/
.btn_site_navi {
  z-index: 100;
  width: 75px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 12px;
  /* display: none; */
}
.btn_site_navi a {
  width: 100%;
  height: 100%;
  color: #fff;
  background: #336dbd;
  text-decoration: none;
  border-radius: 20px;
  position: relative;
  display: block;
}

.btn_site_navi .line {
  position: absolute;
  left: 27px;
  top: 24px;
  margin-left: -13px;
  background: #fff;
  width: 10px;
  height: 2px;
  margin-top: -15%;
}
.btn_site_navi .line::before,
.btn_site_navi .line::after {
  content: "";
  position: absolute;
  left: 0;
  background: #fff;
  width: 10px;
  height: 2px;
  transition: 0.3s;
}
.btn_site_navi .line::before {
  top: -4px;
}
.btn_site_navi .line::after {
  top: 4px;
}
.btn_site_navi .text {
  display: block;
  padding: 4px 0 0 20px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  font-family: "Albert Sans", sans-serif;
}

/*----- site_navi -----*/
.site_navi {
  /*display: none;*/
  background: #ffffff;
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  /* padding: 60px 20px 20px; */
  transition: 0.8s;
  opacity: 0;
  max-width: 600px;
}
.site_navi .inner {
  height: 100%;
  overflow-y: scroll;
}
.close_site_navi {
  cursor: pointer;
  right: 10px;
}

.close_site_navi .line {
  background-color: transparent;
}
.close_site_navi .line::before,
.close_site_navi .line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease 1s;
}
.close_site_navi .line::before {
  top: -9px;
}
.close_site_navi .line::after {
  top: 3px;
}

.open .close_site_navi .line {
  top: 27px;
}
.open .close_site_navi .line::before {
  top: -3px;
  transform: rotate(-45deg);
}
.open .close_site_navi .line::after {
  transform: rotate(45deg);
  top: -3px;
}

/* openした時 */
.site_navi.open {
  right: 0;
  opacity: 1;
}

.site_navi.open .site_logo {
  display: block;
  margin: 50px 30px 0;
}

.site_navi.open .site_logo img {
  width: 300px;
}

.site_navi.open .menu {
  margin-top: 10px;
  padding: 0 30px;
}

.site_navi.open .menu li {
  position: relative;
}

.site_navi.open .menu li:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 8px;
  top: 30px;
  right: 20px;
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
  background: url(../image/common/icon_arrow_black.svg);
}

.site_navi.open .menu li:hover a {
  color: #336dbd;
}

.site_navi.open .menu li:hover:after {
  transform: translateX(8px);
}

.site_navi.open .menu li a {
  color: #1c1c1c;
  position: relative;
  display: block;
  padding: 20px 15px;
  border-bottom: 1px solid #d8d8d8;
  text-decoration: none;
}

.site_navi.open .menu li a:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  bottom: -3px;
  left: -3px;
  background-color: #d8d8d8;
  border-radius: 3px;
}

.site_navi.open .menu li a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  bottom: -3px;
  right: -3px;
  background-color: #d8d8d8;
  border-radius: 3px;
}

.site_navi.open .footer__line {
  margin: 30px auto;
}

.site_navi.open figure {
  margin: 0 auto;
  position: relative;
}

.site_navi.open figure:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 180px;
  height: 30px;
  margin: 0 auto;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.site_navi.open figure img {
  width: 100%;
  height: 100%;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .site_navi {
    padding: 0px 40px 40px;
  }
  .site_navi .inner {
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  /*
  .site_navi .inner::-webkit-scrollbar {
    width: 2px;
  }
  .site_navi .inner::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  .site_navi .inner::-webkit-scrollbar-thumb {
    background-color: #336dbd;
    border-radius: 6px;
  }

  .site_navi .inner {
    scrollbar-width: thin;
    scrollbar-color: #336dbd #fff;
  } */

  .site_navi.open .menu li:after {
    right: 30px;
  }

  .site_navi.open figure {
    display: none;
  }
}

/* ----------------------------------------------------------------
section common
---------------------------------------------------------------- */
.sec {
  padding: 100px 0;
  width: calc(100% - 160px);
  max-width: 1200px;
  margin: 0 auto;
}
.sec .sec__eng-title {
  font-family: "Albert Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: 0.15em;
  position: relative;
  display: block;
  margin-bottom: 5px;
}
.sec .sec__eng-title span {
  position: relative;
  display: inline-block;
  line-height: 1.5;
}
.sec .sec__eng-title span::before, .sec .sec__eng-title span::after {
  position: absolute;
  display: block;
  content: "";
}
.sec .sec__eng-title.eng-title01 {
  padding: 0 10px;
}
.sec .sec__eng-title.eng-title01 span::before {
  width: 8px;
  height: 8px;
  top: 0;
  left: -15px;
  background-image: url(/image/common/icon_kakko.svg);
}
.sec .sec__eng-title.eng-title01 span::after {
  width: 8px;
  height: 8px;
  bottom: 0;
  right: -15px;
  background-image: url(/image/common/icon_kakko.svg);
  transform: scale(-1, -1);
}
.sec .sec__eng-title.eng-title02 {
  padding: 0 10px;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
}
.sec .sec__eng-title.eng-title02 span::before {
  width: 8px;
  height: 8px;
  bottom: 8px;
  left: -15px;
  background-image: url(/image/common/icon_shikaku.svg);
}
.sec .sec__eng-title.eng-title03 {
  padding: 0 10px;
}
.sec .sec__eng-title.eng-title03 span {
  padding: 0 10px;
}
.sec .sec__eng-title.eng-title03 span::before {
  width: 10px;
  height: 13px;
  top: 14px;
  left: -15px;
  background-image: url(/image/common/icon_waku.svg);
}
.sec .sec__eng-title.eng-title03 span::after {
  width: 10px;
  height: 13px;
  top: 14px;
  right: -15px;
  background-image: url(/image/common/icon_waku.svg);
  transform: scale(-1, -1);
}
.sec .sec__title {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: bold;
  letter-spacing: 0.15em;
  color: #17184b;
}
.sec .sec__leadtext {
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: 0.12em;
}
.sec .sec__text {
  font-size: clamp(15px, 1.6vw, 16px);
  letter-spacing: 0.12em;
  margin-top: 30px;
}
.sec .sec__btn,
.eco__inner .sec__btn {
  margin-top: 40px;
  width: 260px;
  height: 70px;
  color: #fff;
  border-radius: 50px;
  background-color: #336dbd;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: relative;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.12em;
}
.sec .sec__btn span {
  position: relative;
  display: block;
  letter-spacing: 0.1rem;
}
.sec .sec__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #336dbd, rgb(18.4875, 39.5125, 68.5125));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}
.sec .sec__btn::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 8px;
  right: 30px;
  background-image: url(/image/common/icon_arrow_white.svg);
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
  z-index: 1;
}
.sec .sec__btn:hover::before {
  opacity: 1;
}
.sec .sec__btn:hover::after {
  transform: translateX(10px);
}
.sec .sec__btn.btn--no-arrow::after {
  display: none;
}
.sec .sec__btn.btn--no-text {
  width: 62px;
  height: 62px;
  padding: 0;
  margin: 40px auto 0;
}
.sec .sec__btn.btn--no-text::before {
  background: linear-gradient(175deg, #336dbd, rgb(40.1625, 85.8375, 148.8375));
}
.sec .sec__btn.btn--no-text:after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sec .sec__btn.btn--no-text:hover::after {
  transform: translateX(4px);
}
@media (max-width: 992px) {
  .sec {
    width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .sec {
    width: calc(100% - 40px);
  }
  .sec .sec__btn {
    margin: 40px auto 0;
  }
}
.sec .sec-item01,
.sec .sec-item02,
.sec .sec-item03,
.sec .sec-item04,
.sec .sec-item05,
.sec .sec-item06 {
  opacity: 0;
  transform: translateY(20px);
}
.sec.is-visible .sec-item01,
.sec.is-visible .sec-item02,
.sec.is-visible .sec-item03,
.sec.is-visible .sec-item04,
.sec.is-visible .sec-item05,
.sec.is-visible .sec-item06 {
  opacity: 1;
  transform: translateY(0);
}
.sec.is-visible .sec-item01 {
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}
.sec.is-visible .sec-item02 {
  transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}
.sec.is-visible .sec-item03 {
  transition: opacity 0.6s ease-out 0.9s, transform 0.6s ease-out 0.9s;
}
.sec.is-visible .sec-item04 {
  transition: opacity 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
}
.sec.is-visible .sec-item05 {
  transition: opacity 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
}
.sec.is-visible .sec-item06 {
  transition: opacity 0.6s ease-out 1.8s, transform 0.6s ease-out 1.8s;
}

/* ===== border ===== */
.border-set {
  position: relative;
  display: block;
  padding: 50px 40px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.border-set .border-cirle {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.border-set .border-cirle:before, .border-set .border-cirle:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #d8d8d8;
  border-radius: 3px;
}
.border-set .border-cirle:before {
  top: -3px;
  left: 0;
}
.border-set .border-cirle:after {
  top: -3px;
  right: 0;
}
.border-set .border-cirle.bottom:before {
  top: auto;
  bottom: -3px;
}
.border-set .border-cirle.bottom:after {
  top: auto;
  bottom: -3px;
}
.border-set.border-toponly {
  border-bottom: none;
}

.border-set__vertical {
  position: relative;
  display: block;
  padding: 0 40px 0 0;
  border-right: 1px solid #d8d8d8;
}
.border-set__vertical .border-cirle {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.border-set__vertical .border-cirle:before, .border-set__vertical .border-cirle:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #d8d8d8;
  border-radius: 3px;
}
.border-set__vertical .border-cirle:before {
  top: -3px;
  right: -3px;
  left: auto;
}
.border-set__vertical .border-cirle:after {
  top: auto;
  bottom: -3px;
  right: -3px;
}
@media (max-width: 768px) {
  .border-set__vertical {
    border-right: none;
    border-bottom: 1px solid #d8d8d8;
  }
  .border-set__vertical .border-cirle:before {
    top: auto;
    bottom: -3px;
    right: auto;
    left: -3px;
  }
  .border-set__vertical .border-cirle:after {
    top: auto;
    bottom: -3px;
    right: -3px;
  }
}
/*---------------------------------------------------------------------
	page top
---------------------------------------------------------------------*/
.pagetop {
  position: relative;
}
/* scroll */
.scrolldown {
  position: absolute;
  width: 280px;
  height: 40px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
  z-index: 2;
  padding: 10px 0;
}
.scrolldown a {
  display: block;
  text-align: center;
  margin: 0 auto;
}

/* ゆらゆら */
.bob {
  display: inline-block;
  animation: bobY 2s ease-in-out infinite;
  will-change: transform;
}

.bob:hover {
  animation-play-state: paused;
}

@keyframes bobY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/*---------------------------------------------------------------------
	topic_path_top
---------------------------------------------------------------------*/
.topic_path_top {
  background: #F3F4F8;
  padding: 10px 15px 8px;
  border-radius: 5px;
  line-height: 1;
  margin: 10px auto 30px;
}
.topic_path_top > ol {
  font-size: 13px;
  font-size: 1.3rem;
}
.topic_path_top > ol > li {
  display: inline;
}
.topic_path_top > ol > li + li::before {
  content: ">";
  margin: 0 5px;
}
.topic_path_top > ol > li a {
  text-decoration: underline;
}
.topic_path_top > ol > li:last-child a {
  text-decoration: none;
  color: #333;
}

/*---------------------------------------------------------------------
	pagebody
---------------------------------------------------------------------*/
.pagebody_inner {
  max-width: 1000px;
  padding: 30px 15px;
  box-sizing: content-box;
  margin: 0 auto;
}
.pagebody_inner_02 {
  max-width: 1760px;
  padding: 0 15px;
  box-sizing: content-box;
  margin: 0 auto;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .pagebody_inner_02 {
    padding: 0 40px;
  }
  .pagebody_inner_02 .pagebody_inner {
    padding: 0;
  }
}

/*--------------------------------------------------
	alpha
--------------------------------------------------*/
#alpha {
}

/* pc */
@media print, screen and (min-width: 1280px) {
  #alpha {
    float: left;
    width: 76.66%;
  }
}

/*--------- text -----------*/
.page_ttl {
  position: relative;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  background: #eee;
  padding: 25px 10px;
  line-height: 1.4;
  width: 100%;
  height: 350px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_ttl:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 350px;
  top: 0;
  left: 0;
  background: url(../image/common/page_bg.jpg);
  background-size: cover;
  background-position: center;
}

.page_ttl:after {
  position: absolute;
  content: "";
}

.page_ttl span {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .page_ttl {
    font-size: 3rem;
  }
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .page_ttl {
    font-size: 3.4rem;
    padding: 35px;
  }
}

.content1 {
  line-height: 1.8;
}
.content1 p {
  margin: 1em 0;
}
.content1 h2 + p,
.content1 h3 + p,
.content1 h4 + p,
.content1 h5 + p,
.content1 h6 + p {
  margin-top: 0;
}
.content1 div > p {
  margin-top: 0;
}

/* headline */
.content1 * + h2 {
  margin-top: 80px;
}
.content1 * + h3 {
  margin-top: 60px;
}
.content1 * + h4 {
  margin-top: 40px;
}
.content1 * + h5 {
  margin-top: 20px;
}
.content1 h2 + h3,
.content1 h3 + h4 {
  margin-top: 0;
}

/* utility */
.content1 * + dl,
.content1 * + ol,
.content1 * + ul,
.content1 * + table {
  margin-top: 20px;
}

.lead_01,
.content1 h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #17184B;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
  padding: 10px 20px;
}
.lead_01::before, .content1 h2::before {
  position: absolute;
  content: "";
  border-top: 3px solid #666686;
  border-left: 3px solid #666686;
  width: 8px;
  height: 8px;
  top: 0;
  left: 0;
  opacity: .6;
}
.lead_01::after, .content1 h2::after {
  position: absolute;
  content: "";
  border-top: 3px solid #666686;
  border-right: 3px solid #666686;
  width: 8px;
  height: 8px;
  bottom: 0;
  right: 0;
  transform: rotate(90deg);
}
.lead_02,
.content1 h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #17184B;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #17184B;
  position: relative;
}
.lead_02::before, .content1 h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3.3px;
  width: 6px;
  height: 6px;
  background: #17184B;
  border-radius: 4px;
}
.lead_03, .content1 h4 {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 6px;
  margin-bottom: 15px;
  border-left: 1px solid #17184B;
  padding: 10px 10px 10px 30px;
    padding-bottom: 10px;
}
.lead_04,
.content1 h5 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.content1 h6 {
  font-weight: bold;
  background: #F3F4F8;
  padding: 2px 10px;
  font-size: 1.8rem;
}

.lead_05 {
  color: #224262;
  font-weight: 500;
  font-size: 1.8rem;
}
.lead_06 {
  color: #1C1C1C;
  font-weight: 500;
  font-size: 1.8rem;
  padding-left: 20px;
  background: url(/image/common/icon_shikaku.svg) no-repeat left center;
  margin-bottom: 20px;
}
.lead_07 {
  color: #333333;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 0 20px 10px;
}
.lead_07 > span { position: relative; }
.lead_07 > span::before,
.lead_07 > span::after {
  position: absolute;
  content: "";
  border-top: 2px solid #666686;
  border-left: 2px solid #666686;
  width: 7px;
  height: 7px;
  top: 30%;
}
.lead_07 > span::before {
  left: -18px;
  transform: rotate(-45deg);
}
.lead_07 > span::after {
  right: -18px;
  transform: rotate(135deg);
}

table th {
  border: 1px solid #fff;
  background: #336DBD;
  font-weight: normal;
  color: #fff;
}
/* pc */
@media print, screen and (min-width: 1280px) {
  .lead_01, .content1 h2 {
    font-size: 3rem;
    margin-bottom: 35px;
  }
  .lead_02,
  .content1 h3 {
    font-size: 2.8rem;
    padding-bottom: 15px;
  }

  .lead_03,
  .content1 h4 {
    font-size: 2.6rem;
    padding-bottom: 12px;
  }

  .lead_04,
  .content1 h5 {
    font-size: 2.4rem;
  }

  .lead_05,
  .lead_06,
  .lead_07 {
    font-size: 2rem;
  }
}

.fc_01 {
  color: #d80000;
}

.modified_date {
  color: #333;
  font-size: 86.66%;
  margin-bottom: 20px;
  text-align: right;
}

/*--------- btn -----------*/
a.btn_01 {
  max-width: 345px;
  height: 70px;
  color: #fff;
  border-radius: 50px;
  background-color: #336dbd;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: relative;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.12em;
}
a.btn_01 span {
  position: relative;
  display: block;
  letter-spacing: 0.1rem;
}
a.btn_01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #336dbd, rgb(18.4875, 39.5125, 68.5125));
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}
a.btn_01::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 8px;
  right: 30px;
  background-image: url(/image/common/icon_arrow_white.svg);
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
  z-index: 1;
}
a.btn_01:hover::before {
  opacity: 1;
}
a.btn_01:hover::after {
  transform: translateX(10px);
}
@media (max-width: 768px) {
  a.btn_01 {
    margin: 40px auto 0;
  }
}
/* pc */
@media screen and (min-width: 1280px) {
  a.btn_01 {
    padding: 18px 30px;
  }
  a.btn_01 {
    transition: 0.3s;
  }
  a.btn_01:hover {
  }
}

/*--------- bg -----------*/
.bg_box_01 {
  background: #F3F4F8;
  padding: 30px;
  border-radius: 15px;
}
.bg_box_02 {
  background: #f6f5ee;
  padding: 10px 15px;
}
.bg_box_03 {
  border: 1px solid #D8D8D8;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1280px) {
  .bg_box_03 {
    padding: 30px 30px 0;
  }
}
/*--------- template -----------*/
.fll_img {
  margin-bottom: 15px;
}
.flr_img {
  margin-bottom: 15px;
}

.sp_flr_img {
  float: right;
  margin: 0 0 0 20px;
}
.sp_fll_img {
  float: left;
  margin: 0 20px 0 0;
}

.fll_img img,
.fll_img img {
  max-width: 100%;
  height: auto;
}

.fl_over {
  overflow: hidden;
}

@media print, screen and (min-width: 767px) {
  .fll_img {
    float: left;
    max-width: 45%;
    margin: 0 40px 0 0;
  }
  .flr_img {
    float: right;
    max-width: 45%;
    margin: 0 0 0 40px;
  }
}
.caption,
.list_1column .caption,
.list_2column .caption,
.list_3column .caption,
.list_4column .caption,
.list_5column .caption {
  font-size: 86.66%;
  line-height: 1.4;
  padding-top: 7px;
  text-align: center;
  margin: 0;
}
.list_1column img,
.list_2column img,
.list_3column img,
.list_4column img,
.list_5column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.list_2column .width_auto,
.list_3column .width_auto {
  width: auto;
}

/* list_2column */
.list_2column {
}
.list_2column .item + .item {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .list_2column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_2column .item {
    width: 48.75%;
    margin: 0 2.5% 2.5% 0;
  }
  .list_2column .item + .item {
    margin-top: 0;
  }
  .list_2column .item:nth-child(2n) {
    margin-right: 0;
  }
}

/* list_3column */
.list_3column {
}
.list_3column .item + .item {
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .list_3column {
    display: flex;
    flex-wrap: wrap;
  }
  .list_3column .item {
    width: 31.08%;
    margin: 0 3.33% 3.33% 0;
  }
  .list_3column .item + .item {
    margin-top: 0;
  }
  .list_3column .item:nth-child(3n) {
    margin-right: 0;
  }
}

/* list_4column */
.list_4column {
  display: flex;
  flex-wrap: wrap;
}
.list_4column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_4column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_4column .item,
  .list_4column .item:nth-child(2n) {
    width: 23.33%;
    margin: 0 2.08% 2.08% 0;
  }
  .list_4column .item:nth-child(4n) {
    margin-right: 0;
  }
}

/* list_5column */
.list_5column {
  display: flex;
  flex-wrap: wrap;
}
.list_5column .item {
  width: 48.75%;
  margin: 0 2.5% 2.5% 0;
}
.list_5column .item:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .list_5column .item,
  .list_5column .item:nth-child(2n) {
    width: 18%;
  }

  .list_5column .item:nth-child(2n) {
    margin-right: 2.5%;
  }

  .list_5column .item:nth-child(5n) {
    margin-right: 0;
  }
}

.contact_box {
  background: #fafafa;
  padding: 15px 20px;
  border: 3px solid #133775;
}
* + .contact_box {
  margin-top: 60px;
}

/*----contents----*/
/*copper_nugets*/
.flex_contents .item_fixed {
  display: none;
}
.flex_contents .item_frex {
  display: flex;
  flex-wrap: wrap;
}
.flex_contents .item_fixed {
  display: none;
}
.flex_contents .item_flex {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.item_flex .square {
  margin-right: 4%;
  width:20%;
  position: relative;
}
.item_flex .square .box {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  width: 70px;
  height: 76px;
  border: 1px solid #D8D8D8;
  padding: 10px;
  line-height: 1.7;
}
.item_flex .square span {
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
}
.item_flex .contents {
  width: 80%;
}
.item_flex .contents .lead_04 {
  color: #17184B;
  font-weight: 600;
  font-size: 2.6rem;
}
.flex_contents .item_flex::before {
  position: absolute;
  content: "";
  background: #D8D8D8;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  top: 96px;
  left: 32px;
}
.item_flex .square::before {
  position: absolute;
  content: "";
  border-left: 1px solid #D8D8D8;
  width: 1px;
  height: 80%;
  top: 96px;
  left: 34px;
}
@media print, screen and (min-width: 768px) {
  .item_flex .square { width: 10%; }
  .item_flex .contents { width: 90%; }
}
@media print, screen and (min-width: 1024px) {
  .flex_contents { display: flex; }
  .flex_contents .item_fixed {
    display: block;
  }
  .flex_contents .item_fixed {
    max-width: 266px;
    width: 30%;
  }
  .flex_contents .item_fixed.fixed {
    position:fixed;
    top:100px;
    left: calc(50% - 500px); /* max-width:1000px 中央寄せ対応 */
    margin-right: 226px;
  }
  .flex_contents .item_scroll { 
    width: 70%;
    frex:1;
  }
  .flex_contents .item_scroll.margin { margin-left: 266px; }
  .item_fixed .item a {
    color: #4F5459;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
  }
  .item_fixed .item.active a {
    padding-left: 20px;
    color: #000;
    position: relative;
  }
  .item_fixed .item.active a::before {
    position: absolute;
    content: "";
    background: #336DBD;
    width: 8px;
    height: 8px;
    top: 10px;
    left: 0;
  }
}
.box_01 {
  margin-bottom: 30px;
}
.box_01 .flex_contents {
  display: block;
}
.box_01 .flex_contents .fll,
.box_01 .flex_contents .flr {
  width: 100%;
}
.flex_contents.anchor {
  display: flex;
  margin-bottom: 60px;
}
.anchor .item {
  width: 50%;
}
.anchor .item .blue {
  display: block;
  text-align: center;
  padding: 20px 0;
  color: #fff;
  text-decoration: none;
  background: #336DBD;
  position: relative;
}
.anchor .item.a01 .blue { border-radius: 5px 0 0 5px; position: relative; }
.anchor .item.a01 .blue::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 2px;
  height: 100%;
  top: 0;
  right: 0;
} 
.anchor .item.a02 .blue { border-radius: 0 5px 5px 0; }
.anchor .item a > span { position: relative; }
.anchor .item a > span::after {
  position: absolute;
  content: "";
  background: #fff url(/image/common/icon_arrow_bottom2.svg) no-repeat center 15px;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  bottom: -80px;
  left: 50%;
  margin-left: -35px;
}
.bg_box_01 .left {
  font-size: 2.4rem;
  color: #17184B;
  margin: 0 40px 0 0;
}
.price {
  position: relative;
  line-height: 1.4;
  text-align: right;
}
.price::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg,rgb(210, 239, 255) 0%, rgb(51, 109, 189) 100%);
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}
.price::after {
  position: absolute;
  content: "買取価格";
  bottom: 15px;
  left: 0;
  color: #4F5459;
}

.itemlist {
  margin: 30px 0;
}
.itemlist .flex_contents {
  margin-bottom: 30px;
}
.itemlist .flex_contents .thumb {
  margin: 30px 0 20px;
}
.itemlist .flex_contents .detail span {
  font-size: 5rem;
  font-family: Albert Sans;
  padding-right: 10px;
  font-weight: 600;
  color: #146EE4;
  position: relative;
}
.itemlist .flex_contents .detail span::after {
  position: absolute;
  content: "（税込）";
  font-size: 1.2rem;
  font-weight: normal;
  color: #1C1C1C;
  top: 16px;
  right: -40px;
}
@media print, screen and (min-width: 512px) {
  .itemlist .flex_contents {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .itemlist .flex_contents .thumb {
    width: 33%;
    margin: 0 2% 0 0;
  }
  .itemlist .flex_contents .detail {
    width: 65%;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 980px) {
  .box_01 .flex_contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 70px;
  }

  .box_01 .flex_contents .fll {
    width: 70%;
  }
  .box_01 .flex_contents .flr {
    width: 30%;
  }
  
  .itemlist {
    margin: 30px;
  }
}
/*--------- list_index -----------*/
* + .list_index {
  margin-top: 60px;
}
.list_index {
}
.list_index .item {
  margin: 0 0 30px 0;
}
.list_index .item + .item {
  margin-top: 15px;
}
.list_index .item > a {
  color: #000;
  text-decoration: none;
  position: relative;
  border: 1px solid #bfbfbf;
  display: table;
  width: 100%;
}
.list_index .item .thumb {
  display: table-cell;
  vertical-align: middle;
  width: 35%;
}
.list_index .item .thumb span {
  position: relative;
  padding-bottom: 66.66%;
  overflow: hidden;
  display: block;
}
.list_index .item .thumb img {
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  max-width: none;
  max-height: 100%;
  transition: 0.5s;
  width: 100%;
}
.list_index .item > a:hover .thumb img {
  opacity: 1;
  transform: scale(1.08);
}
.list_index .item .thumb + .detail {
  border-left: 1px solid #ccc;
}
.list_index .item .detail {
  display: table-cell;
  vertical-align: middle;
  background: #f3f4f8 no-repeat right 10px center/40px;
  padding: 15px 0;
}
.list_index .item .ttl {
  font-size: 1.8rem;
  color: #000;
  font-weight: normal;
  position: relative;
  padding-left: 30px;
  padding-right: 10px;
}
.list_index .item .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #30314c;
  border-bottom: 2px solid #30314c;
  transform: rotate(-45deg);
}
.list_index .item .lead {
  font-size: 1.5rem;
  margin-top: 5px;
  padding: 7px 10px;
  background: #fce6d6;
}
.list_index .item > ul {
  margin: 5px 0 30px 10px;
}
.list_index .item > ul li + li {
}
.list_index .item > ul a {
  display: block;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #bfbfbf;
  font-size: 1.5rem;
  padding: 5px 10px 5px 20px;
  position: relative;
}
.list_index .item > ul a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  border: 4px solid transparent;
  border-left: 6px solid #30314c;
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .list_index {
    display: flex;
    flex-wrap: wrap;
  }
  .list_index .item {
    width: 100%;
    margin: 0 0 3.33% 0;
  }
  .list_index .item + .item {
    margin-top: 0;
  }
  .list_index .item:nth-child(3n) {
    margin-right: 0;
  }

  .list_index .item a {
    display: block;
  }
  .list_index .item a:hover {
    border-color: #30314c;
    background-color: #5d5d7c;
  }
  .list_index .item a:hover .ttl {
    color: #fff;
  }
  .list_index .item .thumb {
    display: block;
    width: auto;
  }
  .list_index .item .detail {
    display: block;
    padding: 15px 10px;
    background-size: auto;
  }
  .list_index .item a:hover .detail {
    /*background-color: #ffffe9;*/
    background-color: #5d5d7c;
    transition: 0.3s;
  }
  .list_index .item .thumb + .detail {
    border-left: none;
  }
  .list_index .item .ttl {
    padding: 7px 0 7px 30px;
  }
  .list_index .item .ttl::before {
    left: 7px;
  }
}


/*--------------------------------------------------
	list_topics
--------------------------------------------------*/
/* list_topics */
.list_topics {
  background: #fff;
  border-top: 1px dotted #bbb;
}
.list_topics li {
  border-bottom: 1px dotted #bbb;
}
.list_topics li a {
  color: #000;
  display: block;
  text-decoration: none;
  padding: 10px;
}
.list_topics li span {
  display: inline-block;
  vertical-align: top;
}
.list_topics li .date {
  margin-right: 10px;
  font-size: 1.3rem;
}
.list_topics li .icon_cat {
  font-size: 1.1rem;
  text-align: center;
  font-weight: normal;
  background: #ebebeb;
  padding: 1px 8px;
  border-radius: 3px;
}
.list_topics li .cat_01 {
  background: #dfffbf;
}
.list_topics li .cat_02 {
  background: #bfdfff;
}
.list_topics li .cat_03 {
  background: #e4f4fc;
}
.list_topics li .cat_04 {
  background: #fff9e5;
}
.list_topics li .cat_05 {
  background: #ece5ff;
}

.list_topics li .title {
  display: block;
  margin-top: 5px;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_topics li a {
    padding: 15px 20px;
  }
  .list_topics li .date {
    font-size: 1.5rem;
  }
  .list_topics li .icon_cat {
    font-size: 1.3rem;
    padding: 3px 20px;
  }
}
/* pc */
@media print, screen and (min-width: 1280px) {
  .list_topics li a {
    transition: 0.3s;
  }
  .list_topics li a:hover {
    background-color: #fffced;
  }
  .list_topics li a:hover .title {
    text-decoration: underline;
  }
}

/* .pager */
.pager {
  margin: 60px 0;
  padding: 50px 0;
  text-align: center;
  background: #fcf8ed;
}
.pager ul {
}
.pager ul li {
  font-size: 81.25%;
  margin: 3px;
  display: inline-block;
}
.pager a,
.pager span {
  color: #000;
  display: block;
  text-decoration: none;
  border: 1px solid #ccc;
  padding: 9px 16px;
  background-color: #fff;
}
.pager li.total span {
  border-color: #fff;
}
.pager li.prev span,
.pager li.next span,
.pager li.first span,
.pager li.last span {
  border: 1px solid #ccc;
  color: #ededed;
}
.pager li.current span {
  color: #fff;
  background: #915e33;
}
.pager a:hover {
  color: #915e33;
  border: 1px solid #999;
  background: #eeead9;
}

/* link_prev_next */
.link_prev_next {
  text-align: center;
  max-width: 600px;
  margin: 60px auto 0;
  border-top: 1px solid #ccc;
  padding-top: 40px;
}
.link_prev_next > li {
  display: inline-block;
  width: 80%;
  max-width: 300px;
}
.link_prev_next > li a {
  color: #000;
  border: 1px solid #ccc;
  display: block;
  padding: 16px 40px;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 3px;
  position: relative;
}
.link_prev_next > li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  border: 5px solid transparent;
  border-right: 8px solid #aaa;
  margin-top: -5px;
}
.link_prev_next > li a:hover {
  background-color: #e6f6fd;
}
/* pc */
@media print, screen and (min-width: 1280px) {
  .link_prev_next {
    margin-top: 80px;
  }
}

/*サムネイル付きトピックス*/
.list_thumb_topics {
  font-size: 0;
  margin-bottom: 30px;
}
.list_thumb_topics li {
  font-size: 16px;
  width: 31.66%;
  display: inline-block;
  margin: 0 2.5% 0 0;
  vertical-align: top;
}
.list_thumb_topics li:nth-child(3n) {
  margin-right: 0;
}
.list_thumb_topics .thumb {
  position: relative;
  padding-bottom: 66.66%;
  overflow: hidden;
  background-color: #f8f6f0;
  border: 1px solid #ccc;
}
.list_thumb_topics .thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}
.list_thumb_topics a {
  text-decoration: none;
}
.list_thumb_topics .detail {
  font-size: 15px;
  color: #333;
  padding: 5px 0;
  border-bottom: 1px dotted #bbb;
}
.list_thumb_topics a:hover .detail {
  background-color: #f8f6f0;
}
/*---------------------------------------------------
	sidemenu
---------------------------------------------------*/
.side_menu {
}
.side_menu a {
  color: #000;
  display: block;
  text-decoration: none;
}
.side_menu a:hover {
  text-decoration: underline;
}
.side_menu .level_1 {
  border-top: 1px solid #ccc;
}
.side_menu .level_1 > li > a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.side_menu .level_1 > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  border: 5px solid transparent;
  border-left: 7px solid #aaa;
}
.side_menu .level_1 > li > a.selected,
.side_menu .level_1 > li > a:hover {
  color: #133557;
}
.side_menu .level_2 > li + li {
}
.side_menu .level_2 > li > a {
  font-size: 1.4rem;
  border-bottom: 1px dotted #bbb;
  padding: 15px;
  position: relative;
}
.side_menu .level_2 > li > a::before {
  content: "";
  width: 2px;
  height: 20px;
  background: #bbbbbb;
  position: absolute;
  left: 0;
  top: 16px;
}
.side_menu .level_2 > li > a.selected,
.side_menu .level_2 > li > a:hover {
  color: #008ecf;
}
.side_menu .level_2 > li > a.selected::before,
.side_menu .level_2 > li > a:hover::before {
  background: #009fe8;
}

.side_menu .level_3 {
  margin: 10px 0 10px 10px;
  background: #fafafa;
}
.side_menu .level_3 > li > a {
  padding: 10px;
  padding-left: 23px;
  font-size: 1.4rem;
  border-bottom: 1px dotted #ccc;
  position: relative;
}
.side_menu .level_3 > li > a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}
.side_menu .level_3 > li > a.selected,
.side_menu .level_3 > li > a:hover {
  color: #133557;
}
.side_menu .level_3 > li > a.selected::before,
.side_menu .level_3 > li > a:hover::before {
  background: #009fe8;
}

.side_menu .level_4 {
  margin-left: 22px;
}
.side_menu .level_4 > li + li {
  border-top: 1px dotted #ccc;
}
.side_menu .level_4 > li > a {
  padding: 8px;
  font-size: 1.4rem;
  position: relative;
}
.side_menu .level_4 > li > a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.side_menu .level_4 > li > a.selected,
.side_menu .level_4 > li > a:hover {
  color: #133557;
}
.side_menu .level_4 > li > a.selected::before,
.side_menu .level_4 > li > a:hover::before {
  border-left-color: #009fe8;
  border-bottom-color: #009fe8;
}

/*--------- beta -----------*/
.list_side_menu {
  border: 4px double #bdbdbd;
}
.list_side_menu + .list_side_menu {
  margin-top: 30px;
}
.list_side_menu .ttl {
  font-size: 100%;
  color: #007fb9;
  font-weight: bold;
  padding: 15px 10px;
  position: relative;
  background: #ececec;
}
.list_side_menu ul {
  padding: 10px;
}
.list_side_menu li {
}
.list_side_menu li + li {
  border-top: 1px dotted #e0d7bc;
}
.list_side_menu li a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 94%;
  padding: 7px 5px 7px 23px;
  position: relative;
}
.list_side_menu li a::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  border: 5px solid transparent;
  border-left: 7px solid #aaa;
}
.list_side_menu li .date {
  display: block;
  font-size: 90%;
  font-weight: bold;
}
/* pc */
@media print, screen and (min-width: 1280px) {
  .list_side_menu li a {
    transition: 0.3s;
  }
  .list_side_menu li a:hover {
    background: #ecf7fd;
  }
}

/*------サイドバナー-------*/
.bnr_side li {
  font-size: 14px;
  text-align: center;
  margin: 0 0 10px;
}
/*---------------------------------------------------------------------
	faq
---------------------------------------------------------------------*/
.list_faq + .lead_01 {
  margin-top: 60px;
}
.list_faq .item {
  margin-bottom: 20px;
}
.list_faq .btn_q {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  background-color: #f2f2f2;
}
.list_faq .btn_q::before,
.list_faq .btn_q::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -11px;
  width: 2px;
  height: 22px;
  background: #17184B;
  transition: 0.3s;
}
.list_faq .btn_q::before {
}
.list_faq .btn_q::after {
  transform: rotate(90deg);
}

/*.list_faq .btn_q.on {
  background: #ffffe7;
}*/
.list_faq .btn_q.on::before {
  transform: rotate(-90deg);
  background: #17184B;
}
.list_faq .btn_q.on::after {
  transform: rotate(270deg);
  background: #17184B;
}

.list_faq .btn_q > * {
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 112.5%;
  line-height: 1.6;
  padding: 15px 40px 15px 43px;
  position: relative;
}
.list_faq .btn_q > *::before {
  content: "Q";
  display: inline-block;
  color: #30314C;
  position: absolute;
  top: 14px;
  left: 16px;
}
.list_faq .box_a {
  display: none;
  position: relative;
  background: #F3F4F8;
  padding: 15px 15px 15px 50px;
  border-top: none;
}
.list_faq .box_a::before {
  content: "A";
  display: inline-block;
  color: #336DBD;
  font-size: 112.5%;
  font-weight: bold;
  position: absolute;
  top: 14px;
  left: 22px;
}
.faq_contents {
}
.faq_contents .icon_q {
}
.faq_contents .icon_a {
}

@media screen and (min-width: 768px) {
  .list_faq .item {
    margin-bottom: 20px;
  }
  .list_faq .btn_q > * {
  }

  .list_faq + .lead_01 {
    margin-top: 100px;
  }
}

/*---------------------------------------------------------------------
	gallery　フォトアルバム
---------------------------------------------------------------------*/
.list_gallery {
  width: 100% !important;
}
.list_gallery .item {
  float: left;
  /*width: 260px;*/
  width: 100%;
  margin-bottom: 20px;
}
.list_gallery .item a {
  color: #fff;
  display: block;
  position: relative;
}
.list_gallery .item img {
  width: 100%;
}
.list_gallery .detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.list_gallery .detail dl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.list_gallery .detail .date {
  font-size: 15px;
  text-align: center;
}
.list_gallery .detail .ttl {
  font-size: 17px;
  text-align: center;
}

/* tablet */
@media print, screen and (min-width: 768px) {
  .list_gallery .item {
    width: 32%;
    margin: 0 1% 1% 0;
  }
}

/* pc */
@media print, screen and (min-width: 1280px) {
  .list_gallery .item {
    width: 24%;
    margin: 0 1% 1% 0;
  }
  .list_gallery .detail {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transform: rotateY(-90deg) rotateX(-90deg);
    transform: rotateY(-90deg) rotateX(-90deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
  }
  .list_gallery a:hover .detail {
    -webkit-transform: rotateY(0) rotateX(0);
    transform: rotateY(0) rotateX(0);
    opacity: 1;
  }
}

/* gallery_detail */
.gallery_detail_head {
  margin-bottom: 30px;
}
.gallery_detail_head .date {
  font-size: 17px;
  text-align: center;
}
.gallery_detail_head .ttl {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}
.gallery_detail_head .content {
  text-align: center;
  margin-top: 20px;
}
/*---------------------------------------------------------------------
	contact
---------------------------------------------------------------------*/
.mail_form {
  border: 8px solid #f3f4f8;
  margin: 0 auto;
  padding: 22px;
}
.mail_form form {
  margin: 0 auto;
}
.mail_form form dl {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 20px;
}
.mail_form form dt {
  width: 30%;
  display: table-cell;
  vertical-align: top;
  font-size: 93.75%;
  padding-right: 10px;
  padding-top: 12px;
}
.mail_form form dd {
  display: table-cell;
  vertical-align: top;
}
.mail_form form .bg_on {
  background-color: #ececec;
  padding: 12px;
}
.mail_form form .bg_on label {
  /*width: 20%;*/
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.mail_form form .border_on {
  border: 1px solid #cccccc;
  padding: 12px;
}
.mail_form.confirm_list dd {
  background-color: #e5f6fb;
  padding: 12px;
  word-break: break-all;
}
.mail_form .btn_list {
  text-align: center;
  margin: 20px auto;
}
.mail_form .icon_required::before {
  content: "必須";
  color: #fff;
  background: #e20000;
  font-size: 80%;
  border-radius: 3px;
  padding: 2px 9px;
  margin-right: 10px;
}
.icon_required_p {
  color: #fff;
  background: #e20000;
  font-size: 80%;
  border-radius: 3px;
  padding: 2px 9px;
  margin-right: 10px;
}
.mail_form .error {
  color: #d71618;
  font-size: 13px;
}
.form_errors {
  color: #d80000;
  border: 5px solid #e69898;
  text-align: left;
  padding: 20px;
  background: #fafafa;
  margin-bottom: 20px;
}
.mail_form.type_02 form {
  max-width: none;
}
.mail_form.type_02 form dl {
  max-width: 870px;
}
.mail_form.type_02 form dl dt {
  width: 35%;
}
.mail_form input,
.mail_form button,
.mail_form textarea,
.mail_form select {
  margin: 0;
  font-size: 16px;
  padding: 12px;
}
.mail_form input:-ms-input-placeholder {
  color: #808080;
}
.mail_form select,
.mail_form textarea,
.mail_form input[type="tel"],
.mail_form input[type="text"],
.mail_form input[type="email"],
.mail_form input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  background-color: #ececec;
}
.mail_form input.small {
  width: 27%;
}
.mail_form input[type="file"] {
  font-size: 16px;
}
.mail_form input[type="radio"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form input[type="checkbox"] {
  margin-right: 5px;
  padding: 5px;
}
.mail_form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background-color: #ececec;
  position: relative;
}
.mail_form .twin {
  font-size: 0;
}
.mail_form .twin input + input {
  margin-left: 3.44%;
}
.mail_form .twin input {
  width: 48.26%;
  display: inline-block;
}
.mail_form textarea {
  width: 100%;
  height: 150px;
  background-color: #ececec;
}
.mail_form input[type="text"]:focus,
.mail_form input[type="email"]:focus,
.mail_form textarea:focus {
  box-shadow: 0 0 7px #008cd6;
}
.btm_text {
  /*width: 69%;
  margin-left: auto;*/
  text-align: center;
}
.mail_form input[type="submit"] {
  color: #fff;
  padding: 1em 5em;
  background-color: #358fdd;
  border: none;
  border-radius: 0;
}
.mail_form input[type="submit"]:hover {
  background-color: #055fad;
}
.mail_form input[type="reset"],
.mail_form input.back {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
  border: none;
  border-radius: 0;
}
.mail_form input[type="reset"]:hover,
.mail_form input.back:hover {
  background-color: #555;
}
.mail_form .btn_backhome {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #358fdd;
  text-decoration: none;
  border: none;
  border-radius: 0;
  display: inline-block;
}
.mail_form .btn_backhome:hover {
  color: #fff;
  padding: 0.6em 1em;
  background-color: #b5b5b5;
}
.form_message {
  background-color: #ffffbb;
  border: 2px solid #df0000;
  color: #df0000;
  font-size: 120%;
  font-weight: bold;
  margin: 10px auto;
  padding: 10px 15px;
}

@media print, screen and (max-width: 768px) {
  .mail_form {
    padding: 12px;
    border-width: 4px;
  }
  .mail_form form dl {
    padding: 0 10px;
    margin-bottom: 15px;
  }
  .mail_form form dt {
    display: block;
    width: auto;
    text-align: left;
    margin: 0 0 10px;
    padding: 0;
  }
  .mail_form form dd {
    display: block;
    width: auto;
  }
  .mail_form input,
  .mail_form button,
  .mail_form textarea,
  .mail_form select {
    padding: 10px;
  }
  .mail_form input.small {
    width: 50%;
  }
  .mail_form input[type="submit"] {
    padding: 1em;
  }
  .btm_text {
    width: auto;
    text-align: center;
  }
}

/* btn_radio  btn_checkbox */
.btn_radio,
.btn_checkbox {
  display: inline-block;
  margin-right: 6px;
}
.btn_radio + label,
.btn_checkbox + label {
  background-color: #ececec;
  /*border: 1px solid #358fdd;*/
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 10px 10px;
  position: relative;
  margin-bottom: 5px;
}
#confirm.btn_checkbox + label {
  background: #ffffe5;
  border: 1px solid #aaa;
  width: 100%;
}

.btn_radio.size_s + label,
.btn_checkbox.size_s + label {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
}

@media (min-width: 1px) {
  .btn_radio,
  .btn_checkbox {
    display: none;
    margin: 0;
  }
  .btn_radio + label,
  .btn_checkbox + label {
    padding-left: 37px;
    color: #000;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .btn_radio:checked + label,
  .btn_checkbox:checked + label {
    background-color: #cbe2f6;
    border-color: #358fdd;
  }
  .btn_radio + label::before,
  .btn_checkbox + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;

    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;

    background: #fff;
  }
  .btn_radio + label::before {
    border: 1px solid #aaa;
    border-radius: 30px;
  }
  .btn_checkbox + label::before {
    border: 1px solid #aaa;
  }
  .btn_radio:checked + label::after,
  .btn_checkbox:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;

    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }
  .btn_radio:checked + label::after {
    left: 15px;

    width: 8px;
    height: 8px;
    margin-top: -4px;

    background: #358fdd;
    border-radius: 8px;
  }
  .btn_checkbox:checked + label::after {
    left: 12px;

    width: 16px;
    height: 8px;
    margin-top: -8px;

    border-left: 3px solid #358fdd;
    border-bottom: 3px solid #358fdd;

    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.input_btn_list {
  letter-spacing: -0.5em;
}

.input_btn_list li {
  letter-spacing: normal;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px 10px 0;
}

.input_btn_list label {
  margin: 0 !important;
}

.mail_form input.input_other {
  display: none;
  width: auto;
  margin-left: 10px;
  padding: 10px;
}

/*---------------------------------------------------------------------
	404
---------------------------------------------------------------------*/
.thumb_404 {
  margin-right: 40px;
  float: left;
  width: 20%;
}
.border_box {
  padding: 20px;
}
.border_box > ul {
  color: #ff7f00;
  padding-left: 20px !important;
}

/*---------------------------------------------------------------------
	search
---------------------------------------------------------------------*/
/* google カスタム検索の調整 */
.site_search {
}
.site_search #___gcse_0 {
  background: #edf8fd;
  padding: 15px;
}
.site_search #___gcse_0 .gsc-control-searchbox-only {
  max-width: 500px;
  margin: 0 auto;
}
.site_search table,
.site_search table.gsc-search-box td,
.site_search table.gsc-search-box td.gsc-input {
  padding: 0;
  border: none;
}
.site_search .gsc-adBlock {
  display: none;
}

/* pc */
@media screen and (min-width: 1280px) {
  .site_search #___gcse_0 {
    padding: 30px;
  }
  .site_search input#gsc-i-id1 {
    padding: 10px !important;
  }
  .site_search button.gsc-search-button {
    padding: 15px 27px;
    margin-left: 10px;
  }
  .site_search .gsc-above-wrapper-area-container {
    border: none;
  }
  .site_search .gsc-above-wrapper-area-container td {
    border: none;
    padding: 0;
  }
  .site_search .gsc-selected-option-container {
    box-sizing: content-box;
  }
  .site_search .gsc-webResult.gsc-result {
    border: 1px solid #e9e9e9;
    margin: 20px 0;
    padding: 15px 20px;
  }
  .site_search .gsc-results {
    width: 100%;
  }
  .site_search .gsc-cursor-box.gs-bidi-start-align {
    text-align: center;
  }
  .site_search .gsc-cursor-page {
    font-size: 1.6rem;
    border: 1px solid #ccc;
    padding: 7px 15px;
    border-radius: 3px;
    display: inline-block !important;
  }
  .site_search {
  }
}

.list_search {
}
.list_search .item {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
}
.list_search .item + .item {
  margin-top: 20px;
}
.list_search .ttl {
  font-size: 1.8rem;
  font-weight: bold;
}
.list_search .url {
  color: #808080;
  font-size: 1.2rem;
  margin: 5px 0;
}

/*---------------------------------------------------------------------
	sitemap
---------------------------------------------------------------------*/
.list_sitemap {
}
.list_sitemap a:hover {
  opacity: 0.8;
}

.list_sitemap .level01 {
  font-size: 100%;
  font-weight: normal;
  margin-bottom: 15px;
}
.list_sitemap * + .level01 {
  margin-top: 40px;
}
.list_sitemap .level01 > a {
  display: block;
  background: #30314c;
  background-size: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 160%;
  padding: 12px 15px;
  position: relative;
  border-radius: 3px;
}
.list_sitemap .level02 {
  font-size: 0;
}
.list_sitemap .level02 > li {
  font-size: 16px;
  display: inline-block;
  vertical-align: top;
  width: 49.16%;
  margin: 0 1.66% 1.66% 0;
}
.list_sitemap .level02 > li:nth-child(2n) {
  margin-right: 0;
}
.list_sitemap .level02 > li > a {
  border: 1px solid #ccc;
  display: block;
  text-decoration: none;
  padding: 12px;
  border-radius: 3px;
  color: #133775;
  background: #fafafa;
  position: relative;
}
.list_sitemap .level02 > li > a::before {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  margin-top: -6px;
  border: 4px solid transparent;
  border-left: 6px solid #133775;
}

.list_sitemap .level03,
.list_sitemap .level04,
.list_sitemap .level05 {
  color: #4787ed;
  margin-top: 10px;
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 36px;
}
.list_sitemap .level04,
.list_sitemap .level05 {
  margin-left: 24px;
}
.list_sitemap .level03 li + li {
  margin-top: 5px;
}

/*---------------------------------------------------------------------
  js-inview
---------------------------------------------------------------------*/
/* 管理画面で見えなくなるので…#container */
#container .js_slide_up {
  opacity: 0;
  position: relative;
  top: 50px;
}
#container .js_slide_down {
  opacity: 0;
  position: relative;
  top: -50px;
}
#container .js_slide_left {
  opacity: 0;
  position: relative;
  left: -50px;
}
#container .js_slide_right {
  opacity: 0;
  position: relative;
  right: -50px;
}
#container .js_fade {
  opacity: 0;
}

/*---------------------------------------------------------------------
	page_scroll
---------------------------------------------------------------------*/
#page_scroll_navi {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -30px;
  margin-left: -30px;
}
#page_scroll_navi a {
  display: block;
  background: #133557;
  width: 60px;
}
#page_scroll_navi.fixed {
  position: fixed;
  top: auto;
  bottom: 70px;
}

/* pc */
@media screen and (min-width: 1280px) {
  #page_scroll_navi {
    left: auto;
    right: 30px;
    margin: 0;
  }
  #page_scroll_navi a {
    width: 70px;
  }
}

/* ===== contact ===== */
.contact {
  width: 100%;
  max-width: 100%;
  color: #fff;
  background-color: #30314c;
}
.contact .sec__eng-title {
  text-align: center;
}
.contact .sec__title {
  text-align: center;
  color: #fff;
}
.contact .contact__lead {
  margin-top: 40px;
  text-align: center;
}
.contact .contact__box {
  position: relative;
  width: calc(100% - 160px);
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 60px 40px 0;
  z-index: 1;
}
.contact .contact__subtext {
  font-weight: bold;
  font-size: clamp(16px, 1.2vw, 18px);
  margin-bottom: 12px;
}
.contact .contact__link {
  margin-top: 40px;
  position: relative;
  display: block;
  padding-left: 35px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.2;
}
.contact .contact__link:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 14px;
  left: 0;
  background: url(/image/common/icon_tel.svg);
}
.contact .contact__link.link--mail:before {
  background: url(/image/common/icon_mail.svg);
}
.contact .contact__link .sec__btn {
  position: absolute;
  margin: 0 auto;
  top: 0;
  right: 20px;
}
@media (max-width: 992px) {
  .contact .contact__box {
    width: calc(100% - 40px);
    padding: 60px 20px 0;
  }
  .contact .contact__link .sec__btn {
    right: 0px;
  }
}
@media (max-width: 768px) {
  .contact .contact__box {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  .contact .contact__tel {
    padding-right: 0px;
    padding-bottom: 30px;
    margin: 0 auto 0 0;
    width: 100%;
  }
  .contact .contact__form {
    margin: 30px auto 0 0;
    width: 100%;
  }
  .contact .contact__link:before {
    top: 4px;
  }
}
@media (min-width: 1280px) {
#site_header.fixed {
    top: 30px;
  }
}
@media (min-width: 1680px) {
#site_header.fixed {
    top: 48px;
  }
}
/*---------------------------------------------------------------------
	site_footer
---------------------------------------------------------------------*/
#site_footer {
  background: #fff;
  margin-top: 70px;
  position: relative;
  padding: 20px;
}
#site_footer .inner {
  padding: 10px;
}

.footer-logo {
  width: 200px;
  display: block;
  margin-bottom: 20px;
}

.logo_irei {
  width: 200px;
}

.logo-cycleofmetals {
  width: 200px;
  margin-top: 10px;
}

.footer-address {
  font-style: normal;
  color: #1c1c1c;
}

.footer_nav {
  margin: 70px auto;
}

.footer_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.2em;
  column-gap: 2em;
}

.footer_nav ul li + li {
  margin-top: 0.5em;
}

.footer_nav a {
  color: #1c1c1c;
  text-decoration: none;
}

.footer_nav a:hover {
  color: #336dbd;
}

.footer__line {
  margin: 0 auto 100px;
  text-align: center;
  display: inline-block;
  background-color: #4cc764;
  border-radius: 50px;
  color: #fff;
  padding: 18px 0;
  width: 280px;
  text-decoration: none;
  position: relative;
}

.footer__line:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #4cc764,
    #4cc764,
    rgb(41.2255319149, 131.7744680851, 58.8936170213)
  );
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: inherit;
  z-index: 0;
}

.footer__line span {
  position: relative;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  padding-left: 36px;
}

.footer__line span:before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: -6px;
  left: 0;
  background: url(../image/common/icon_line.jpg);
  background-size: contain;
}

.footer__line:hover {
  text-decoration: none;
}

.footer__line:hover:before {
  opacity: 1;
}

.copyright {
  margin: 0 auto 40px;
  font-size: 1.3rem;
  text-align: center;
  display: block;
}
@media print, screen and (max-width: 512px) {
  .footer__line { width: 230px;}
  .footer__insta {
    display: inline-block;
    width: 50px;
  }
}
/* pc */
@media print, screen and (min-width: 1280px) {
  #site_footer {
    width: calc(100% - 120px);
    margin: 70px auto 0;
  }
  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1rem, 4vw, 2rem);
    padding-block: clamp(2rem, 5vw, 4rem);
  }
  .footer-logo {
    width: 500px;
    display: block;
  }

  .logo-cycleofmetals {
    margin-top: 20px;
    margin-left: 10px;
  }

  .footer_nav {
    margin: 0 auto;
  }

  .footer_nav ul {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__line {
    margin: 40px 0 100px;
  }

  .copyright {
    font-size: 1.5rem;
  }
}

/*---------------------------------------------------------------------
	Chatbot
---------------------------------------------------------------------*/
.aoai-chatbot-container {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
}

.aoai-chatbot-header {
  background-color: #009fe8;
  color: white;
  padding: 15px 20px;
}

.aoai-chatbot-header h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
}

.aoai-chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #f5f5f5;
}

.aoai-bot-message,
.aoai-user-message {
  max-width: 80%;
  padding: 15px;
  border-radius: 8px;
  word-break: break-word;
}

.aoai-bot-message {
  background-color: #e6e6e6;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.aoai-user-message {
  background-color: #009fe8;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.aoai-chatbot-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid #ddd;
  background-color: white;
}

.aoai-chatbot-input textarea {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
  resize: none;
  height: 50px;
  margin-right: 15px;
  font-size: 1.6rem;
}

.aoai-chatbot-input button {
  background-color: #009fe8;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1.6rem;
}

.aoai-chatbot-input button:hover {
  background-color: #008ecf;
}

@media print, screen and (max-width: 768px) {
  .aoai-chatbot-container {
    height: 500px;
    margin: 15px auto;
  }

  .aoai-bot-message,
  .aoai-user-message {
    max-width: 90%;
  }
}
