@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2B2B30;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body {
    font-size: min(4.1vw, 16px);
  }
  body.wrap {
    overflow: hidden;
  }
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  #screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 200;
  }
}
@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
.guidance {
  left: -999px;
  position: absolute;
  width: 990px;
}

img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: none !important;
}

/* font */
.poppins, #achievement .num_area > div p.num span, #service .item .pict span {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

/* ▼ パーツ
--------------------------------------- */
section {
  padding: 100px 0;
}

.container {
  width: min(100%, 1250px);
  padding: 0 25px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 6.4%;
  }
}

a.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #103681;
  gap: 15px;
  border-radius: 8px;
  width: 200px;
  height: 50px;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  a.btn {
    gap: 10px;
    width: min(43.3vw, 169px);
  }
}
a.btn.red {
  border: 1px solid currentColor;
  background: #fff;
  color: #FF3131;
  padding-left: 0.5em;
}
@media screen and (max-width: 767px) {
  a.btn.red {
    width: min(41vw, 160px);
    padding-left: 0;
  }
}
a.btn .arrow {
  display: block;
  width: 14px;
  position: relative;
}
a.btn .arrow::before, a.btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
}
a.btn .arrow::before {
  border-top: 1px solid currentColor;
  width: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
a.btn .arrow::after {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  right: 0;
}

.sect_ttl {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.sect_ttl span {
  display: inline-block;
  padding: 0 0 15px;
  margin-bottom: 15px;
  color: #FF3131;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  position: relative;
}
.sect_ttl span::before {
  content: "";
  border-bottom: 2px solid currentColor;
  width: 100px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .sect_ttl {
    font-size: min(10.25vw, 40px);
  }
  .sect_ttl span {
    padding-bottom: min(3.84vw, 15px);
    margin-bottom: min(3.84vw, 15px);
    font-size: min(4.1vw, 16px);
  }
  .sect_ttl span::before {
    width: min(25.64vw, 100px);
  }
}

.lower_ttl {
  padding-left: 20px;
  margin-bottom: 30px;
  color: #FF3131;
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
}
.lower_ttl::before {
  content: "";
  background: currentColor;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.txt_nvy {
  color: #103681;
  font-weight: 500;
}

b.txt_nvy {
  font-weight: bold;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  background: #fff;
  padding: 0 25px;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: min(100%, 1200px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0 6.4%;
  }
  header #site_title {
    width: min(35.89vw, 140px);
  }
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 80px auto 0;
  clear: both;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .menu_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

/* ▼ mv
--------------------------------------- */
.mv {
  background: url(../img/mv.webp) no-repeat center/cover;
  width: 100%;
  padding: 0 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv {
    height: min(56.94vw, 820px);
  }
}
.mv .txt_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.mv .txt_wrap .mv_txt {
  width: min(34.4vw, 496px);
  margin-bottom: 30px;
}
.mv .txt_wrap .mv_txt img {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .mv {
    background: url(../img/mv_sp.webp) no-repeat top center/100%;
    width: 100%;
    aspect-ratio: 1/1.9589;
    padding: 0;
    position: relative;
  }
  .mv .txt_wrap {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 6.4%;
    position: absolute;
    left: 0;
    bottom: 15vw;
  }
  .mv .txt_wrap .mv_txt {
    width: 84.4%;
    margin-bottom: 5vw;
  }
}

/* ▼ concept
--------------------------------------- */
#concept {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #concept {
    padding-top: 90px;
  }
}
#concept::before, #concept::after {
  content: "";
  background: #F2FCFF;
  width: 520px;
  height: 390px;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #concept::before, #concept::after {
    width: 50%;
    height: min(51.28vw, 200px);
  }
}
#concept::before {
  border-radius: 1000px 0 0 1000px;
  top: 200px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #concept::before {
    top: 53px;
  }
}
#concept::after {
  border-radius: 0 1000px 1000px 0;
  top: calc(100% - 100px);
  left: 0;
}
@media screen and (max-width: 767px) {
  #concept::after {
    top: calc(100% - 60px);
    width: 75.12%;
  }
}
#concept .sect_ttl {
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #concept .sect_ttl {
    font-size: min(7.69vw, 30px);
  }
}
#concept .read {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #concept .read {
    font-size: 20px;
  }
}
#concept .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#concept .flex_box .lower_ttl {
  margin-top: 90px;
}
#concept .flex_box .txt {
  max-width: 600px;
  line-height: 1.88;
  letter-spacing: 0.1em;
}
#concept .flex_box .img {
  margin-top: -50px;
  width: 460px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #concept .flex_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #concept .flex_box .txt_wrap {
    display: contents;
  }
  #concept .flex_box .lower_ttl {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 60px 0 40px;
  }
  #concept .flex_box .txt {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    letter-spacing: 0;
  }
  #concept .flex_box .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 0 60px;
    width: 100%;
  }
}

/* ▼ service
--------------------------------------- */
#service {
  background-image: url(../img/service_bg02.webp), url(../img/service_bg03.webp), url(../img/service_bg04.webp), -webkit-gradient(linear, left top, left bottom, from(rgb(242, 252, 255)), to(rgb(224, 239, 248)));
  background-image: url(../img/service_bg02.webp), url(../img/service_bg03.webp), url(../img/service_bg04.webp), linear-gradient(180deg, rgb(242, 252, 255) 0%, rgb(224, 239, 248) 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top 166px right, top 73% left, bottom right, top center;
  background-size: 244px, 193px, 164px, 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #service {
    background-image: url(../img/service_bg04.webp), -webkit-gradient(linear, left top, left bottom, from(rgb(242, 252, 255)), to(rgb(224, 239, 248)));
    background-image: url(../img/service_bg04.webp), linear-gradient(180deg, rgb(242, 252, 255) 0%, rgb(224, 239, 248) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 5px right -3px, top center;
    background-size: 100px, 100%;
    padding-top: 90px;
  }
}
#service::before {
  content: "";
  background: url(../img/service_bg01.webp) no-repeat center/contain;
  width: 220px;
  height: 233px;
  position: absolute;
  top: -40px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #service::before {
    width: 150px;
    height: 145.69px;
    top: 0;
    left: -25px;
  }
}
#service .sect_ttl {
  margin-bottom: 100px;
}
#service .sect_ttl span {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  #service .sect_ttl {
    margin-bottom: 50px;
  }
}
#service .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 60px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #service .item {
    display: block;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 10px #c4e1f3;
            box-shadow: 0 0 10px #c4e1f3;
  }
}
#service .item:nth-of-type(odd) .item_box {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#service .item:nth-of-type(odd) .img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#service .item:last-of-type {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #service .item:last-of-type {
    margin-bottom: 30px;
  }
}
#service .item_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  #service .item_box {
    display: block;
    padding: 7.69vw 6.4vw;
  }
}
#service .item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #service .item .img img {
    -o-object-fit: inherit;
       object-fit: inherit;
  }
}
#service .item .grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 18px;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  #service .item .grid {
    display: block;
  }
}
#service .item .pict {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #service .item .pict {
    margin-bottom: 30px;
  }
}
#service .item .pict span {
  display: block;
  margin-bottom: 6px;
  text-align: center;
  color: #C4E1F3;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: bold;
}
#service .item .ttl_wrap {
  color: #103681;
  font-weight: bold;
}
#service .item .ttl_wrap h3 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #service .item .ttl_wrap h3 {
    font-size: min(7.69vw, 30px);
  }
}
#service .item dl.grid {
  margin-top: 20px;
  margin-bottom: auto;
}
#service .item dl.grid dt {
  background: #103681;
  color: #fff;
  font-weight: 500;
  display: block;
  padding: 5px 0;
  line-height: 1;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  #service .item dl.grid dt {
    -webkit-clip-path: polygon(0% 0%, calc(100% - 13px) 0%, 100% 50%, calc(100% - 13px) 100%, 0% 100%);
            clip-path: polygon(0% 0%, calc(100% - 13px) 0%, 100% 50%, calc(100% - 13px) 100%, 0% 100%);
  }
}
#service .item dl.grid dd {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #service .item dl.grid {
    margin-top: 30px;
  }
  #service .item dl.grid dt {
    margin-bottom: 10px;
  }
  #service .item dl.grid dd:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
#service .fukudashi {
  background: #103681;
  border-radius: 40px;
  width: min(100%, 600px);
  padding: 10px 0;
  margin: 0 auto 50px;
  color: #E6E6CB;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  #service .fukudashi {
    font-size: min(6.66vw, 26px);
    border-radius: 50px;
    margin-bottom: 40px;
  }
}
#service .fukudashi::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #103681 transparent transparent transparent;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  left: 50%;
}
#service .col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
#service .col2 li {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 20px 30px;
  background: #fff;
  border-radius: 8px;
  padding: 40px 38px;
}
#service .col2 li .ttl_wrap {
  color: #103681;
}
#service .col2 li .ttl_wrap h3 {
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.2;
}
#service .col2 li .ttl_wrap p {
  font-size: 14px;
  font-weight: 500;
}
#service .col2 li .txt_wrap {
  grid-column: 1/3;
  font-size: 14px;
}
#service .col2 li .txt_wrap p:not(:last-of-type) {
  margin-bottom: 10px;
}
#service .col2 li .txt_wrap span {
  background: #103681;
  display: inline-block;
  padding: 0 0.3em;
  margin-right: 9px;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #service .col2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #service .col2 li {
    display: block;
    padding: 7.69vw 6.4vw;
    -webkit-box-shadow: 0 0 10px #c4e1f3;
            box-shadow: 0 0 10px #c4e1f3;
  }
  #service .col2 li .ttl_wrap h3 {
    font-size: min(6.66vw, 26px);
  }
  #service .col2 li .ttl_wrap p {
    font-size: min(3.58vw, 14px);
  }
  #service .col2 li .img {
    margin: 30px auto;
    width: 38.46vw;
  }
  #service .col2 li .txt_wrap {
    font-size: min(3.58vw, 14px);
  }
  #service .col2 li .txt_wrap p:not(:last-of-type) {
    margin-bottom: 20px;
  }
  #service .col2 li .txt_wrap span {
    margin: 0 0 0.3em;
  }
}

/* ▼ achievement
--------------------------------------- */
#achievement {
  background: linear-gradient(180deg, #fff 0%, #fff calc(100% - 93px), #EEF7FA calc(100% - 93px), #EEF7FA 100%);
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  #achievement {
    background: linear-gradient(180deg, #fff 0%, #fff calc(100% - 93px), #EEF7FA calc(100% - 89px), #EEF7FA 100%);
    padding-top: 55px;
  }
}
#achievement .sect_ttl {
  margin-bottom: 69px;
}
@media screen and (max-width: 767px) {
  #achievement .sect_ttl {
    margin-bottom: 80px;
  }
}
#achievement .read {
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}
#achievement .read::after {
  content: "";
  border-bottom: 2px solid #D9D9D9;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
  z-index: -1;
}
#achievement .read span {
  background: #fff;
  display: inline-block;
  width: 700px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #achievement .read {
    margin-bottom: 35px;
    font-size: min(7.69vw, 30px);
  }
  #achievement .read::after {
    display: none;
  }
  #achievement .read span {
    display: contents;
  }
}
#achievement .num_area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8.33%;
}
@media screen and (max-width: 767px) {
  #achievement .num_area {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
}
#achievement .num_area > div {
  background: #F6F6F6;
  border: 4px solid #E1E1E1;
  border-radius: 30px;
  padding: 45px 0 20px;
}
#achievement .num_area > div p {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
#achievement .num_area > div p.num {
  color: #FF3131;
  font-size: 40px;
}
#achievement .num_area > div p.num span {
  font-size: 70px;
}
@media screen and (max-width: 767px) {
  #achievement .num_area > div p {
    font-size: min(7.69vw, 30px);
  }
  #achievement .num_area > div p.num {
    color: #FF3131;
    font-size: min(10.25vw, 40px);
  }
  #achievement .num_area > div p.num span {
    font-size: min(17.9vw, 70px);
  }
}

.slider {
  margin-bottom: 100px;
}
.slider p {
  padding: 14px 28px 0;
}
@media screen and (max-width: 767px) {
  .slider p {
    padding: 20px min(6.4vw, 25px) 0;
  }
}

/* ▼ company
--------------------------------------- */
#company {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(238, 247, 250)), to(rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgb(238, 247, 250) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 767px) {
  #company {
    padding: 60px 0;
  }
}
#company .sect_ttl {
  margin-bottom: 60px;
}
#company .sect_ttl span {
  letter-spacing: 0.2em;
}
#company .box {
  background: #fff;
  border-radius: 8px;
  padding: 40px 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #company .box {
    padding: 0 5.89vw 7.69vw;
    margin-bottom: 30px;
  }
}
#company table {
  color: #000;
  width: 100%;
}
#company table tr:not(:last-of-type) th, #company table tr:not(:last-of-type) td {
  border-bottom: 1px solid #C4E1F3;
}
#company table th, #company table td {
  padding: 30px 0;
}
#company table th {
  width: 235px;
  font-size: 18px;
  font-weight: 500;
}
#company table td.font_lines {
  line-height: 1.88;
}
@media screen and (max-width: 767px) {
  #company table {
    width: 100%;
  }
  #company table tbody {
    display: block;
  }
  #company table tr:not(:last-of-type) th, #company table tr:not(:last-of-type) td {
    border-bottom: 1px solid #C4E1F3;
  }
  #company table tr:last-of-type {
    display: block;
    width: 100%;
  }
  #company table tr:last-of-type th, #company table tr:last-of-type td {
    display: block;
    width: 100%;
  }
  #company table tr:last-of-type th {
    padding-bottom: 0;
  }
  #company table th, #company table td {
    padding: 30px 0;
  }
  #company table th {
    width: min(20.5vw, 80px);
    font-size: min(4.1vw, 16px);
  }
}
#company .ceo_name {
  font-size: 14px;
  text-align: right;
}
#company .ceo_name span {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #company .ceo_name {
    font-size: min(3.58vw, 14px);
  }
  #company .ceo_name span {
    font-size: min(5.1vw, 20px);
  }
}
#company .img_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4%;
  width: min(100%, 1370px);
  padding: 0 25px;
  margin: 0 auto;
}
#company .img_list li:nth-child(2) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #company .img_list {
    grid-template-columns: 1fr;
    gap: 20px 0;
    padding: 0 6.4%;
  }
  #company .img_list li:nth-child(2) {
    margin-top: 0;
  }
}

.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding: 35px 20px;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 35px 6.4%;
  }
}

#footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

#copyright {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #copyright {
    font-size: min(3.07vw, 12px);
    text-align: left;
  }
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 38px;
  height: 38px;
  border: 1px solid #E1E1E1;
  border-radius: 50%;
  background: #fff;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagetop {
    padding: 10px;
  }
}
.pagetop::before, .pagetop::after {
  content: "";
  position: absolute;
  top: 11px;
}
.pagetop::before {
  height: 14px;
  border-left: 2px solid #FF3131;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.pagetop::after {
  width: 6px;
  height: 6px;
  border: 2px solid #FF3131;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  left: 50%;
}