@charset "UTF-8";
@font-face {
  font-family: "univers-bold";
  src: url(../fonts/univers-bold.ttf);
}
@font-face {
  font-family: "univers-medium";
  src: url(../fonts/univers-medium.ttf);
}
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #121212;
  font-size: 16px;
  line-height: 1.875;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body.open #header .top {
  z-index: unset;
}

a {
  color: #005d82;
  font-weight: bold;
  text-decoration: underline;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.6;
}

strong {
  color: #f0a637;
  font-weight: bold;
}

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

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  /* right: 40px; */
  right: 2.5%;
  z-index: 1;
  width: 280px;
  border-radius: 50%;
  aspect-ratio: 1;
  /* &::before */
}
#side .image {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: calc(100% - 20px);
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: #005d82;
}
#side .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#side .image img:not(.fallback) {
  opacity: 0.12;
}
#side .btn {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /* right: 10px;
  top: 25px; */
  right: 4%;
  top: 9%;
  z-index: 1;
  cursor: pointer;
}
#side .btn::before, #side .btn::after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: #005d82;
  position: absolute;
}
#side .btn::before {
  transform: rotate(-40deg);
}
#side .btn::after {
  transform: rotate(40deg);
}
#side > div {
  display: contents;
}
#side a {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  flex-direction: column;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 50%;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* font-size: 24px; */
  font-size: 22px;
  background-color: #ffea00;
  color: #fff;
  line-height: 1.6666666667;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow: 0 0 1px #121212, 0 0 1px #121212, 0 0 1px #121212, 0 0 1px #121212, 0 0 1px #121212;
  text-align: center;
}
#side a:hover {
  opacity: 0.6;
}
#side a .yellow {
  color: #ffea00;
}
#side a .block-btn {
  position: absolute;
  bottom: 40px;
  text-shadow: unset;
  font-size: 16px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
#side a .block-btn::after {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  background: url(../images/arow-blue.webp) no-repeat center #fff;
  border-radius: 50%;
}
@media (max-width: 999px) {
  #side {
    width: 240px;
  }
  #side a {
    font-size: 18px;
  }
  #side a .block-btn {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #side {
    width: 175px;
    bottom: 60px;
  }
  #side .image {
    width: calc(100% - 14px);
  }
  #side .btn {
    width: 40px;
    height: 40px;
  }
  #side a {
    padding: 7px;
    font-size: 13px;
  }
  #side a .block-btn {
    bottom: 30px;
  }
}

/* ----------------------------------------------
contact
------------------------------------------------- */
section.contact {
  background: url(../images/contact-bg2.webp) no-repeat;
  background-size: 100% 100%;
  padding: 84px 0 120px;
}
section.contact a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
section.contact a:hover {
  opacity: 0.6;
}
section.contact .inner {
  background: url(../images/contact-bg.webp) no-repeat center/cover;
  width: calc(100% - 20px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 10px 98px;
  border-radius: 20px;
}
section.contact .head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 17px;
  margin-bottom: 68px;
}
section.contact .head .icon {
  position: relative;
  z-index: 0;
}
section.contact .head .icon::before {
  content: "";
  width: 120px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}
section.contact .head .catch {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 0;
  padding: 0 10px 20px;
  text-align: center;
}
section.contact .head .catch::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #ffea00;
  z-index: -1;
}
section.contact .contents {
  display: flex;
  justify-content: center;
  gap: 40px 8.8405797101%;
  flex-wrap: wrap;
}
section.contact .contents .block {
  text-align: center;
}
section.contact .contents .block .title {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #121212;
}
section.contact .contents .block.tel .title {
  margin-bottom: 10px;
}
section.contact .contents .block.tel a {
  font-family: "univers-bold";
  font-weight: 700;
  font-size: 50px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #121212;
}
section.contact .contents .block.tel a span {
  font-size: 40px;
}
section.contact .contents .block.tel .time {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #121212;
}
section.contact .contents .block.mail .title {
  margin-bottom: 33px;
}
section.contact .contents .block.mail .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 460px;
  height: 90px;
  background: url(../images/btn-arow.webp) no-repeat center right 30px #fff;
  border: 2px solid #005d82;
  border-radius: 45px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #005d82;
}
@media (max-width: 1100px) {
  section.contact .head .catch {
    font-size: 36px;
  }
}
@media (max-width: 999px) {
  section.contact {
    padding: 70px 0 100px;
  }
  section.contact .inner {
    padding: 30px 10px 70px;
  }
  section.contact .head {
    margin-bottom: 50px;
  }
  section.contact .head .icon img {
    max-width: 105px;
  }
  section.contact .head .icon::before {
    width: 100px;
  }
  section.contact .head .catch {
    font-size: 26px;
    padding-bottom: 10px;
  }
  section.contact .head .catch::before {
    height: 20px;
  }
  section.contact .contents {
    row-gap: 30px;
  }
  section.contact .contents .block .title {
    font-size: 20px;
  }
  section.contact .contents .block.tel a {
    font-size: 40px;
  }
  section.contact .contents .block.tel a span {
    font-size: 30px;
  }
  section.contact .contents .block.tel .time {
    font-size: 18px;
  }
  section.contact .contents .block.mail .title {
    margin-bottom: 20px;
  }
  section.contact .contents .block.mail .btn a {
    font-size: 20px;
    width: 360px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  section.contact {
    padding: 60px 0 80px;
  }
  section.contact .inner {
    padding: 25px 10px 60px;
  }
  section.contact .head {
    margin-bottom: 40px;
  }
  section.contact .head .icon img {
    max-width: 85px;
  }
  section.contact .head .icon::before {
    width: 80px;
  }
  section.contact .head .catch {
    font-size: 20px;
    padding-bottom: 5px;
  }
  section.contact .head .catch::before {
    height: 10px;
  }
  section.contact .contents {
    row-gap: 25px;
  }
  section.contact .contents .block .title {
    font-size: 18px;
  }
  section.contact .contents .block.tel a {
    font-size: 26px;
  }
  section.contact .contents .block.tel a span {
    font-size: 20px;
  }
  section.contact .contents .block.tel .time {
    font-size: 16px;
  }
  section.contact .contents .block.mail .title {
    margin-bottom: 10px;
  }
  section.contact .contents .block.mail .btn a {
    font-size: 18px;
    width: 260px;
    height: 70px;
    border-width: 1px;
  }
}

/* ----------------------------------------------
case
------------------------------------------------- */
#case .contents {
  width: calc(100% - 20px);
  max-width: 1240px;
  margin: 0 auto 95px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 3.2258064516%;
}
#case .contents .block {
  width: 48.3870967742%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 10px 10px 0 0 rgba(18, 18, 18, 0.1);
}
#case .contents .block a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: block;
  padding: 40px 7.3333333333% 50px;
}
#case .contents .block a:hover {
  opacity: 0.6;
}
#case .contents .block:not(.a) {
  padding: 40px 3.5483870968% 50px;
}
#case .contents .block .title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #005d82;
  border-radius: 6px;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 5px 10px;
}
#case .contents .block .before-after {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4.296875%;
  margin-bottom: 23px;
}
#case .contents .block .before-after .image {
  width: 27.34375%;
  aspect-ratio: 1/1;
  max-width: 140px;
}
#case .contents .block .before-after .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#case .contents .block .before-after .arow {
  width: 7.2265625%;
  aspect-ratio: 37/17;
  background: url(../images/before-after-arow.webp) no-repeat center/cover;
  max-width: 37px;
}
#case .contents .block .data {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8888888889;
  letter-spacing: 0.08em;
  color: #121212;
}
#case .contents .block .data li {
  /* &::first-letter{
    color: #005d82;
  } */
}
#case .contents .block .data li::before {
  content: "・";
  color: #005d82;
}
#case .contents .block .bottom {
  margin: 0 -2.734375%;
}
#case .contents .block .bottom .comment {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #f0a637;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 40px;
  border-radius: 20px;
  padding: 5px 10px;
  position: relative;
  bottom: -20px;
  margin-left: 14px;
}
#case .contents .block .bottom .comment::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #f0a637;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -6px;
}
#case .contents .block .bottom .text {
  background-color: #eff3f5;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.08em;
  color: #121212;
  padding: 33px 5.5555555556% 29px;
  border-radius: 10px;
}
@media (max-width: 999px) {
  #case .contents {
    margin-bottom: 80px;
    row-gap: 50px;
  }
  #case .contents .block a {
    padding: 30px 7.3333333333% 40px;
  }
  #case .contents .block:not(.a) {
    padding: 30px 3.5483870968% 40px;
  }
  #case .contents .block .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #case .contents .block .before-after {
    margin-bottom: 15px;
  }
  #case .contents .block .data {
    font-size: 16px;
  }
  #case .contents .block .bottom .comment {
    font-size: 16px;
    min-width: 140px;
  }
  #case .contents .block .bottom .text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #case .contents {
    margin-bottom: 70px;
    row-gap: 40px;
    flex-direction: column;
  }
  #case .contents .block {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  #case .contents .block::after {
    top: 5px;
    left: 5px;
  }
  #case .contents .block a {
    padding: 30px 10px 40px;
  }
  #case .contents .block:not(.a) {
    padding: 30px 10px 40px;
  }
  #case .contents .block .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #case .contents .block .before-after {
    margin-bottom: 10px;
  }
  #case .contents .block .data {
    font-size: 14px;
  }
  #case .contents .block .bottom {
    margin: 0;
  }
  #case .contents .block .bottom .comment {
    font-size: 14px;
    min-width: 130px;
    min-height: 34px;
    bottom: -17px;
  }
  #case .contents .block .bottom .text {
    padding: 25px 10px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 130px;
  z-index: 1;
  padding: 0 2.5% 0 1.875%;
}
#header a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#header a:hover {
  opacity: 0.6;
}
#header .right {
  margin-left: auto;
  height: 100%;
}
#header .links {
  margin-bottom: 24px;
}
#header .links ul {
  display: flex;
  justify-content: end;
  column-gap: 10px;
}
#header .links ul li {
  width: 200px;
  height: 52px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
}
#header .links ul li > div {
  display: contents;
}
#header .links ul li a {
  color: #fff;
}
#header .links ul li.tel {
  background-color: #005d82;
}
#header .links ul li.tel a {
  font-family: "univers-medium";
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-bottom: -5px;
}
#header .links ul li.tel a span {
  font-size: 14px;
}
#header .links ul li.tel .time {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  display: block;
}
#header .links ul li.contact {
  background-color: #f0a637;
}
#header .links ul li.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  column-gap: 10px;
}
#header #gnav ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  column-gap: 43.5px;
}
#header #gnav ul li.sp {
  display: none;
}
#header #gnav ul li a {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #121212;
}
@media (max-width: 999px) {
  #header {
    height: 90px;
  }
  #header .links {
    margin-bottom: 10px;
  }
  #header .links ul li {
    height: 48px;
    width: 180px;
  }
  #header .links ul li.tel a {
    font-size: 16px;
    margin-bottom: 0;
  }
  #header .links ul li.contact a {
    font-size: 16px;
  }
  #header #gnav ul {
    column-gap: 10px;
  }
  #header #gnav ul li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #header {
    padding: 0 60px 0 10px;
  }
  #header #gnav ul {
    justify-content: start;
  }
  #header #gnav ul li.tel {
    border-bottom: solid 1px #fff;
    padding-bottom: 5px;
  }
  #header #gnav ul li.tel a {
    border: unset;
  }
  #header #gnav ul li.sp {
    display: list-item;
  }
  #header #gnav ul li .time {
    color: #fff;
  }
}
@media (max-width: 500px) {
  #header #gnav ul li a {
    flex-wrap: wrap;
  }
  #header #gnav ul li a .block-btn {
    display: none;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #pagetop {
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  a {
    position: relative;
    display: block;
    width: 40px;
    height: 17px;
    img {
      @include transition();
      position: absolute;
      top: 0;
      &:last-child {
        opacity: 0;
      }
    }
    &:hover img:first-child {
      opacity: 0;
    }
    &:hover img:last-child {
      opacity: 1;
    }
  }
  @include sp {
   //display: none !important;
   bottom: 55px;
    right: 10px;
    width: 40px;
      height: 40px;
    a {

    }
  }
}

*/
/*フッター部分に固定
#pagetop {
  position: absolute;
  top: -30px;
  right: -90px;
  z-index: 3;
  width: 60px;
  height: 60px;
  @include opacity();
  @media (max-width: 1250px){
    right: 20px;
  }
  @include sp {
    //display: none !important;
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-color: #eff3f5;
  padding-top: 51px;
}
#footer a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .inner {
  display: flex;
}
#footer .copyright {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #000000;
  width: 100px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  padding-left: 18px;
}
#footer .left {
  flex: 1;
  position: relative;
  padding-right: 100px;
  background: url(../images/f-bg.webp) no-repeat center/cover;
  border-top-left-radius: 50px;
  padding-top: 92px;
  padding-bottom: 80px;
}
#footer .left .pagetop {
  position: absolute;
  top: -30px;
  right: 90px;
}
#footer .left .contents {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#footer .left .logo {
  margin-bottom: 28px;
}
#footer .left .content {
  display: flex;
  /* flex-wrap: wrap; */
  margin-bottom: 17px;
  gap: 30px 10px;
}
#footer .left .content .data {
  flex-shrink: 0;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.8888888889;
  letter-spacing: 0.08em;
  color: #000000;
}
#footer .left .content .data a {
  font-weight: 400;
}
#footer .left .content .data a:not(.map) {
  color: #000000;
}
#footer .left .content .data a.map {
  text-decoration: underline;
  color: #005d82;
}
#footer .left .content #fnav {
  /* flex: 1; */
  margin-left: auto;
}
#footer .left .content #fnav ul {
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px 40px; */
  gap: 0px 40px;
  justify-content: end;
}
#footer .left .content #fnav ul li a {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 2.2222222222;
  letter-spacing: 0.08em;
  color: #121212;
}
#footer .left .content #fnav ul:not(:last-child) {
  /* margin-bottom: 10px; */
}
#footer .left .area .comment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 130px;
  min-height: 30px;
  border-radius: 15px;
  background-color: #f0a637;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #fff;
  bottom: -15px;
  left: 2.5423728814%;
}
#footer .left .area .comment::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background-color: #f0a637;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#footer .left .area .text {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 30px 2.7966101695%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.125;
  letter-spacing: 0.08em;
  color: #000000;
  border-radius: 10px;
}
#footer .left .area .text .head {
  display: block;
  color: #005d82;
}
@media (max-width: 1400px) {
  #footer .left .logo {
    text-align: center;
  }
  #footer .left .content {
    flex-direction: column;
    align-items: center;
  }
  #footer .left .content #fnav {
    max-width: 560px;
    margin-left: unset;
  }
  #footer .left .content #fnav ul {
    justify-content: center;
  }
}
@media (max-width: 999px) {
  #footer .copyright {
    width: 80px;
    padding-left: 0;
    font-size: 16px;
  }
  #footer .left {
    /* padding-right: 80px; */
    padding: 70px 0;
  }
  #footer .left .pagetop {
    right: 20px;
  }
  #footer .left .content .data {
    font-size: 16px;
  }
  #footer .left .content #fnav {
    max-width: 440px;
  }
  #footer .left .content #fnav ul {
    column-gap: 20px;
  }
  #footer .left .content #fnav ul li a {
    font-size: 16px;
  }
  #footer .left .area .comment {
    font-size: 14px;
    min-width: 120px;
  }
  #footer .left .area .text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #footer .copyright {
    width: 30px;
    font-size: 13px;
  }
  #footer .left {
    padding: 60px 0;
    border-top-left-radius: 30px;
  }
  #footer .left .pagetop {
    width: 40px;
    top: -20px;
  }
  #footer .left .logo {
    /* text-align: center; */
  }
  #footer .left .content {
    /* flex-direction: column;
    align-items: center; */
    /* row-gap: 30px; */
  }
  #footer .left .content .data {
    font-size: 14px;
  }
  #footer .left .content #fnav {
    max-width: 350px;
    margin-left: unset;
  }
  #footer .left .content #fnav ul {
    justify-content: center;
    column-gap: 10px;
  }
  #footer .left .content #fnav ul li a {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */