@charset "UTF-8";
/*
+++++++++++++++++++++++++++++++++++++++++
                  共通部分
++++++++++++++++++++++++++++++++++++++++++++++
*/
html {
  /*16px*62.5%=10px*/
  font-size: 62.5%;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #111419;
  font-feature-settings: "palt"; /*文字詰*/
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 2;
}

.en {
  font-family: "Oswald", sans-serif;
}

body.noscroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.content__box {
  overflow: hidden;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

p {
  font-size: 1.4rem;
}

.gr__text {
  color: #004738;
  background: linear-gradient(-135deg, #0c4627, #009b6d);
  background: -webkit-linear-gradient(-135deg, #0c4627, #009b6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pc_br {
  display: none;
}

.sp_br {
  display: block;
  line-height: 0;
}

.container {
  margin-top: 60px;
}

.map__wrap {
  max-width: 100%;
}

.map__wrap iframe {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    /*pcサイズ時のフォントサイズ指定*/
  }
  .pc_br {
    display: block;
    line-height: 0;
  }
  .sp_br {
    display: none;
  }
  .contents {
    padding-top: 80px;
  }
  .contents_innner {
    padding-top: 80px;
    margin-top: -80px;
  }
  .container {
    margin-top: 120px;
  }
  .wrap {
    width: 71.43%;
    max-width: 1400px;
    min-width: 1000px;
    margin: 0 auto;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
             アニメーション
++++++++++++++++++++++++++++++++++++++++++++
*/
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInTrigger,
.fadeUpTrigger {
  opacity: 0;
}

.delay-time015 {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.delay-time025 {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-time03 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-time035 {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.delay-time045 {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

/*
+++++++++++++++++++++++++++++++++++++++++
                 header
++++++++++++++++++++++++++++++++++++++++++++
++*/
#header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  transition: ease-in 0.5s;
}

#header .logo {
  width: 140px;
  position: relative;
  z-index: 2;
}

#header .logo img {
  vertical-align: middle;
}

#header .header_inr {
  width: 100%;
  transition: ease-in 0.5s;
}

#header .header__wrap {
  box-sizing: border-box;
  transition: ease-in 0.5s;
  padding: 17px 20px;
}

/* #header.fixed {
  position: fixed;
  background-color: #fff;
  .header_inr {
    width: 100%;
    padding: 17px 20px;
  }
  .header__wrap {
    width: 100%;
    padding: 0;
  }
} */
#g-nav.panelactive {
  position: fixed;
  z-index: 9;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: scroll;
}

.openbtn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
}

.openbtn .openbtn-area {
  transition: all 0.4s;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #e83e0b;
  width: 45%;
}

#header .header_nav.panelactive .up {
  display: block;
}

#header .header_nav.panelactive .down.sp {
  display: none;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
  background: #f5a340;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
  background: #ed6620;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active .openbtn-area {
  transform: rotateX(360deg);
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/*スマホ：・タブレット　ナビ*/
@media screen and (max-width: 1024px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, #e83e0b, #f5a340);
    transition: all 0.6s;
    overflow: auto;
  }
  #g-nav.panelactive {
    top: 0;
    right: 0;
  }
  #header.fixed .header_inr .header_nav ul li a {
    color: #fff;
  }
  .openbtn.active span {
    background-color: #fff;
  }
  body.noscroll #header.fixed .up {
    display: block;
  }
  body.noscroll #header.fixed .down {
    display: none;
  }
  #g-nav ul {
    width: 100%;
    margin: 50px auto 0 auto;
    text-align: center;
  }
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #fff;
    padding: 10px 20px;
    display: block;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .header__btn {
    display: none;
  }
  #header .sp_btn a {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    border-color: #fff;
  }
  #header .sp_btn a::before {
    background-color: #fff;
  }
}
/*pc*/
@media screen and (min-width: 1025px) {
  #header .logo {
    width: 200px;
  }
  #header .header_inr {
    padding: 15px 3.57%;
  }
  #header .header_inr .header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  #header .header_inr .openbtn {
    display: none;
  }
  #header .header_inr .header_nav {
    display: block;
    justify-content: space-between;
  }
  #header .header_inr .header_nav ul {
    display: flex;
    position: static;
    align-items: center;
    transform: none;
    font-weight: 100;
  }
  #header .header_inr .header_nav ul li {
    border: none;
    margin-right: 40px;
    margin-bottom: 0;
    padding: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
  }
  #header .header_inr .header_nav ul li:last-child {
    margin-right: 0;
  }
  #header .header_inr .header_nav ul li a {
    color: #000000;
    font-weight: 500;
    position: relative;
  }
  #header .header_inr .header_nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e83e0b;
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }
  #header .header_inr .header_nav ul li a:hover::after {
    transform: scale(1, 1);
  }
  #header .header_inr .header_nav ul .sp_btn {
    display: none;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
         タイトル　リスト
++++++++++++++++++++++++++++++++++++++++++++
*/
.main__title {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
}

.main__title span {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #000000;
  padding-bottom: 10px;
  font-family: "Oswald", sans-serif;
  background-image: linear-gradient(0deg, #e83e0b, #f5a340);
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
}

.main__title span::before {
  content: "";
  display: block;
  background: linear-gradient(0deg, #e83e0b, #f5a340);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 10px;
}

.sub__title {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
  color: #e83e0b;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sub__title::before {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background-color: #e83e0b;
  margin-bottom: 10px;
}

@media all and (-ms-high-contrast: none) {
  .main__title span {
    color: #e83e0b;
  }
}
.white__title {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}

.white__title span {
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
}

.main_title.white {
  color: #fff;
}

.main_title.white span {
  color: #fff;
}

.main_title.white::after {
  background-color: #fff;
}

.title__border {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: #004738;
  padding: 14px 0;
  border-top: 1px solid #004738;
  border-bottom: 1px solid #004738;
  font-weight: bold;
  width: 260px;
  max-width: 100%;
}

.mark__title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1d4094;
  position: relative;
}

.mark__title::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #1d4094;
  transform: rotate(45deg);
}

.title__line {
  color: #1d4094;
  font-weight: 500;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title__line::after {
  content: "";
  display: block;
  width: calc(100% - 80px);
  height: 1px;
  background-color: #1d4094;
}

/*縦書き*/
.rl {
  writing-mode: vertical-rl;
}

/*マーク付きリスト*/
.mark__list li {
  position: relative;
  padding-left: 20px;
}

.mark__list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #1d4094;
  transform: rotate(45deg);
}

.waku__box {
  border: 1px solid #004738;
  padding: 24px 20px;
  margin-top: 30px;
  position: relative;
}

.waku__box .box__title {
  color: #004738;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  background-color: #fff;
  padding: 0 10px;
  position: absolute;
  top: -15px;
}

.waku__box ul {
  list-style: disc;
  margin-left: 20px;
}

.waku__box ul li {
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .main__title {
    font-size: 3.6rem;
  }
  .title__border {
    font-size: 1.8rem;
  }
  .white__title {
    font-size: 3rem;
  }
  .white__title span {
    font-size: 1.8rem;
  }
  .waku__box {
    margin-top: 40px;
  }
  .waku__box .box__title {
    font-size: 1.8rem;
    top: -18px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            contact__bar
++++++++++++++++++++++++++++++++++++++++++++
*/
.contact__bar {
  color: #fff;
  padding: 60px 20px;
  background: url(../img/contact_bg.jpg) no-repeat center center/cover;
  margin: 0 0 -60px;
  top: -140px;
  position: relative;
}

.contact__bar .bar__inr {
  text-align: center;
}

.contact__bar .bar__inr .btn_more {
  margin: 0 auto;
}

.contact__bar .bar__inr .inr__right {
  padding-top: 30px;
}

@media print, screen and (min-width: 1024px) {
  .contact__bar {
    width: 85.71%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .contact__bar .main_title {
    text-align: left;
  }
  .contact__bar .bar__inr {
    display: flex;
    max-width: 83.33%;
    margin: 0 auto;
    text-align: center;
    justify-content: space-between;
    align-items: center;
  }
  .contact__bar .bar__inr .btn__wrap {
    margin-top: 30px;
  }
  .contact__bar .bar__inr .btn__wrap .btn_more {
    height: 60px;
  }
  .contact__bar .bar__inr .inr__right {
    padding-top: 0;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            ボタン
++++++++++++++++++++++++++++++++++++++++++++
*/
.btn__wrap {
  margin-top: 40px;
}

.btn_more {
  font-size: 1.2rem;
  font-weight: 100;
  width: 240px;
  max-width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  color: #004738;
  line-height: 1;
  font-weight: 300;
  position: relative;
  border: 1px solid #004738;
  font-weight: bold;
}

.btn_more::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #004738;
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.btn_more:hover {
  color: #fff;
  background-color: #004738;
}

.btn_more:hover::before,
.btn_more:hover::after {
  right: 20px;
  background-color: #fff;
}

.btn_more.b_white {
  color: #fff;
  transition: ease-in 0.2s;
  border-color: #fff;
}

.btn_more.b_white span {
  color: #fff;
}

.btn_more.b_white:hover {
  border-color: #000000;
}

.btn__wrap.white .btn_more {
  border-color: #fff;
  color: #fff;
}

.btn__wrap.white .btn_more::before {
  background-color: #fff;
}

.btn__wrap.white .btn_more:hover {
  color: #004738;
  background-color: #fff;
}

.btn__wrap.white .btn_more:hover::before,
.btn__wrap.white .btn_more:hover::after {
  background-color: #004738;
}

.btns .btn_more::before {
  display: none;
}

#page-top a {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(0deg, #e83e0b, #f5a340);
  position: relative;
}

#page-top a::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 36%;
  margin-top: -4px;
  transform: rotate(-45deg);
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(140px);
  transition: ease-in 0.3s;
}

#page-top:hover {
  bottom: 30px;
}

#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(140px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(140px);
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            footer
++++++++++++++++++++++++++++++++++++++++++++
*/
footer {
  padding: 40px 0 20px;
  background-color: #2c2a28;
  color: #fff;
}

footer .footer__top {
  padding: 0 20px;
}

footer .footer__address {
  display: flex;
  align-items: center;
}

footer .footer__address .footer_logo {
  width: 60px;
}

footer .footer__address .address__list {
  margin-left: 20px;
}

footer .footer__address .address__list li {
  line-height: 1.6;
  font-size: 1.2rem;
}

footer .footer__address .address__list li:first-child {
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 1.4rem;
}

footer .footer__address .address__list li:first-child span {
  font-size: 1.2rem;
}

footer .footer__address .address__list li a {
  color: #fff;
}

footer .footer__nav {
  display: none;
}

footer .footer__map {
  padding: 40px 0 20px;
}

footer small {
  display: block;
  padding: 0 20px;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

@media print, screen and (min-width: 1024px) {
  footer {
    padding: 60px 0 30px;
  }
  footer .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer .footer__address .footer_logo {
    width: 90px;
  }
  footer .footer__address .address__list {
    margin-left: 30px;
  }
  footer .nav__flex {
    display: flex;
  }
  footer .nav__flex .footer__nav:first-child {
    margin-right: 40px;
  }
  footer .footer__nav {
    display: flex;
    flex-direction: column;
  }
  footer .footer__nav a {
    color: #fff;
  }
  footer .footer__nav a:hover {
    opacity: 0.6;
  }
  footer .footer__nav li {
    padding: 5px 0;
    font-size: 1.3rem;
  }
  footer .footer__map {
    padding: 60px 0 24px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
            テーブル
++++++++++++++++++++++++++++++++++++++++++++
*/
.table {
  font-size: 1.4rem;
  width: 100%;
  vertical-align: middle;
}

.table th {
  font-weight: normal;
  padding: 20px 20px 0;
  text-align: left;
  font-weight: 500;
  vertical-align: middle;
}

.table td {
  padding: 10px 20px 20px;
  text-align: left;
}

.table a {
  color: #000000;
}

.table span {
  display: block;
  font-size: 12px;
}

.table__wrap {
  overflow-x: scroll;
  max-width: 100%;
  padding: 0 0 20px;
}

.table__wrap .tablerl {
  width: 1000px;
  border-collapse: collapse;
  white-space: nowrap;
}

.table__wrap .sp_come {
  font-size: 1.5rem;
  color: #1d4094;
  padding: 10px 0;
}

.tablerl {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.tablerl tr {
  border-bottom: 1px solid #1d4094;
}

.tablerl tr:first-child {
  background-color: #e5eef2;
  border-top: 1px solid #1d4094;
}

.tablerl tr th,
.tablerl tr td {
  display: inline-block;
  text-align: center;
  padding: 10px 0;
  width: 25%;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 1023px) {
  .table th {
    display: block;
  }
  .table td {
    display: block;
  }
  .table td ul li {
    line-height: 2.2;
  }
  .table td ul li span {
    display: block;
    font-size: 12px;
  }
}
.table.table_border tr:nth-child(even) th,
.table.table_border tr:nth-child(even) td {
  background-color: #eeeeee;
}

.table.table_border td {
  padding: 10px 20px 20px;
}

.table_line tr {
  border-bottom: 1px solid #ececec;
  padding: 20px 10px 0;
}

.table_line th {
  padding: 10px 20px 0;
}

@media print, screen and (min-width: 1024px) {
  .table {
    max-width: 800px;
    margin: 0 auto;
  }
  .table th {
    font-weight: normal;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    width: 20%;
  }
  .table th span {
    display: block;
    font-size: 12px;
  }
  .table td {
    padding: 20px 0;
    text-align: left;
    vertical-align: middle;
  }
  .table.table_border td {
    padding: 20px 50px;
  }
  .table.table_border th {
    padding: 20px;
  }
  .table_wrap {
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
  }
  .table_wrap .table_left {
    width: 48%;
  }
  .table_wrap .table_right {
    width: 48%;
  }
  .table_wrap .table th {
    width: 35%;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
           flex02
++++++++++++++++++++++++++++++++++++++++++++
*/
.bg__wrap {
  background-color: #f8f8f8;
  padding: 60px 0;
}

@media print, screen and (min-width: 1024px) {
  .bg__wrap {
    padding: 100px 0;
  }
  .flex02 {
    display: flex;
    justify-content: space-between;
  }
}
.bg_right {
  max-width: 100%;
  position: relative;
  margin-right: 20px;
}

.bg_right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg_right::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #e83e0b, #f5a340);
  position: absolute;
  z-index: -1;
  bottom: -20px;
  right: -20px;
}

.bg_left {
  max-width: 100%;
  position: relative;
  margin-left: 20px;
}

.bg_left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg_left::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #e83e0b, #f5a340);
  position: absolute;
  z-index: -1;
  bottom: -20px;
  left: -20px;
}

/*
+++++++++++++++++++++++++++++++++++++++++
                 求める人物像
++++++++++++++++++++++++++++++++++++++++++++
++*/
.message__box {
  margin-top: 40px;
}
.message__box .text__box {
  text-align: center;
}
.message__box .text__box p {
  display: inline-block;
  text-align: left;
}

.message__box li {
  background-color: #ececec;
  text-align: center;
  height: 100%;
  aspect-ratio: 4/3;
  position: relative;
  margin-top: 20px;
}

.message__box li::after {
  content: "";
  display: block;
  width: 56.25%;
  height: 100%;
  background: url(../img/ico_logo.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.message__box li .box__inr {
  width: 87.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.message__box li .box__title {
  display: inline-block;
  color: #e83e0b;
  border-bottom: 1px solid #e83e0b;
  font-weight: bold;
  font-size: 1.6rem;
}

@media print, screen and (min-width: 1024px) {
  .message__box {
    display: flex;
    justify-content: space-between;
  }
  .message__box li {
    width: 32%;
    aspect-ratio: 4/3.5;
    margin-top: 0;
  }
  .message__box li .text__box {
    margin-top: 20px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
                 buttons
++++++++++++++++++++++++++++++++++++++++++++
++*/
.buttons {
  margin-top: 30px;
}

.buttons a {
  display: block;
  width: 360px;
  height: 80px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c2a28;
  color: #fff;
  margin: 20px auto 0;
}

.buttons a span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  padding-top: 10px;
}

.buttons a img {
  width: 24px;
  margin-right: 20px;
}

.buttons a p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.buttons a:nth-child(2) p {
  font-size: 1.4rem;
  font-weight: bold;
}

.buttons a:hover {
  background-color: #e83e0b;
}

@media print, screen and (min-width: 1024px) {
  .buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }
  .buttons a {
    margin: 0;
  }
  .buttons a p {
    font-size: 2.4rem;
  }
  .buttons a:nth-child(2) {
    margin-left: 70px;
  }
  .buttons a:nth-child(2) p {
    font-size: 1.6rem;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
                 partner__list
++++++++++++++++++++++++++++++++++++++++++++
++*/
.partner__list {
  margin-top: 30px;
}

.partner__list li {
  border: 1px solid #e83e0b;
  padding: 10px 20px;
  margin-top: 20px;
}

.partner__list li .box__inr {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.partner__list li .ico__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000000;
}

.partner__list li .ico__title img {
  width: 30px;
  margin-right: 10px;
}

.partner__list li p {
  color: #6e6e6e;
}

@media print, screen and (min-width: 1024px) {
  .partner__list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner__list li {
    width: 30%;
    padding: 50px 20px;
    margin: 30px 4.17% 0 0;
  }
  .partner__list li:nth-child(3) {
    margin-right: 0;
  }
  .partner__list li .ico__title {
    font-size: 2rem;
  }
  .partner__list li .ico__title img {
    width: 40px;
  }
}
/*
+++++++++++++++++++++++++++++++++++++++++
                 sdgs__list
++++++++++++++++++++++++++++++++++++++++++++
++*/
.sdgs__item {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px;
}

.sdgs__item .sdgs__titile {
  position: relative;
}

.sdgs__item .sdgs__titile span {
  display: inline-block;
  padding-right: 20px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  color: #e83e0b;
  font-weight: bold;
  font-size: 1.6rem;
}

.sdgs__item .sdgs__titile::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e83e0b;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.sdgs__item .item__text {
  padding: 20px 0;
}

.sdgs__item .img__list {
  display: flex;
  flex-wrap: wrap;
}

.sdgs__item .img__list li {
  width: 20%;
  max-width: 80px;
  margin-right: 10px;
}

.sdgs__item .img__list li:last-child {
  margin-right: 0;
}

@media print, screen and (min-width: 1024px) {
  .sdgs__item {
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sdgs__item dt {
    width: 42%;
  }
  .sdgs__item dd {
    width: 42%;
  }
  .sdgs__item .sdgs__titile span {
    font-size: 1.8rem;
  }
  .sdgs__item .item__text {
    padding: 20px 0 0;
  }
  .sdgs__item .img__list {
    justify-content: flex-end;
  }
  .sdgs__item .img__list li {
    width: 23%;
    max-width: 100px;
  }
}
/*# sourceMappingURL=base.css.map */