@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  line-height: 2.15;
  letter-spacing: 1px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  font-size: 100%;
}

small {
  font-size: 86%;
  line-height: 1rem;
}

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

.eg {
  font-family: "report", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

h2 {
  margin: 0;
  line-height: 1;
}

.inner {
  padding: 5rem 10rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 2.5rem 3rem;
  }
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  padding: 18px 0 0;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.3s;
  height: 12rem;
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    height: 5rem;
  }
}

.header.changecolor {
  background-color: rgba(242, 242, 240, 0.6);
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
}
.header.changecolor .category-link {
  color: #000000;
}
.header.changecolor .white_logo {
  display: none;
}
.header.changecolor .blue_logo {
  display: block;
}

.header-logo {
  position: relative;
  float: left;
  padding-left: 2%;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .header-logo {
    margin: 0;
  }
}

.blue_logo {
  display: none;
}

.header-nav {
  position: relative;
  float: right;
  padding-right: 38px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .header-nav {
    width: 60%;
    padding-right: 2%;
  }
}
.header-nav ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  .header-nav ul {
    justify-content: flex-start;
  }
}
.header-nav ul li {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .header-nav ul li {
    padding: 0 5px;
  }
}
.header-nav ul li .category-link {
  display: block;
  padding: 8px 4px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-nav ul li .category-link {
    font-size: 1.1rem;
    padding: 0;
  }
}
.header-nav ul li .category-link small {
  display: block;
  letter-spacing: 0.03em;
  color: #0081cc;
  line-height: 1rem;
}

.cover {
  position: relative;
  height: 100vh;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .cover {
    height: 300px;
  }
}

.cover-title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: 200%;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0.1em;
  z-index: 100;
}

.cover-bg {
  background-color: #000000;
}
.cover-bg img {
  height: 100vh;
  width: 100%;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .cover-bg img {
    height: 300px;
  }
}

.message {
  background-image: url(../images/message.jpg);
  height: auto;
  display: flex;
  position: relative;
  z-index: -2;
}

.message::before {
  content: "";
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, 0.4);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.message-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 106px;
  max-width: 920px;
  width: 90%;
  background-color: rgba(242, 242, 240, 0.6);
  margin: 12rem auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .message-area {
    padding: 0 2rem;
    margin: 5rem 0;
  }
}

.message-area-in {
  text-align: center;
  padding: 5rem 2rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .message-area-in {
    padding: 5rem 0;
  }
}
.message-area-in h2 {
  display: block;
}
.message-area-in small {
  color: #0081cc;
}
@media screen and (max-width: 768px) {
  .message-area-in .txt {
    font-size: 1.5rem;
  }
}

.works .inner {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works .inner {
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
.works .inner small {
  color: #0081cc;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 4rem 0;
}
@media screen and (max-width: 768px) {
  .flex-box {
    display: block;
    margin: 2rem 0;
  }
}

.column {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .column {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.column .txt {
  font-size: 1.8rem;
  line-height: 1;
  margin: 0;
  text-align: left;
}

.column-img {
  overflow: hidden;
  position: relative;
}
.column-img img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .column-img img {
    height: auto;
  }
}
.column-img .works-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #FFFFFF;
  background-color: rgba(0, 129, 204, 0.6);
  padding: 0.5rem 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

.company-top .inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .company-top .inner {
    display: block;
  }
}

.left-box {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 540px;
  padding: 60px;
  background-color: rgba(242, 242, 240, 0.6);
  margin-right: -10%;
}
@media screen and (max-width: 768px) {
  .left-box {
    display: block;
    width: 100%;
    padding: 60px 2rem;
    margin-right: 0;
  }
}
.left-box .title {
  writing-mode: vertical-lr;
  margin-right: 40px;
}
.left-box .title h2 {
  font-size: 4.8rem;
}
.left-box .title small {
  color: #0081cc;
  font-size: 3rem;
  line-height: 2;
}
.left-box .txt {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .left-box .txt {
    font-size: 1.8rem;
    margin: 2rem 0;
  }
}

.company-top-img {
  width: 70%;
  height: 720px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .company-top-img {
    display: none;
  }
}

.stickarrow {
  width: 100%;
  height: 18px;
  border-bottom: 1px solid #0081cc;
  border-right: 1px solid #0081cc;
  transform: skew(45deg);
}

.contact {
  background-image: url(../images/works1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: -2;
  color: #FFFFFF;
}

.contact::before {
  content: "";
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, 0.4);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.contact .inner {
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
}
.contact .inner p {
  margin: 4rem 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  .contact .inner p {
    margin: 0;
  }
}

.area {
  background-color: rgba(242, 242, 240, 0.6);
  padding: 0 106px;
}
@media screen and (max-width: 768px) {
  .area {
    padding: 0 2rem;
  }
}

.area-in {
  text-align: center;
  padding: 5rem 2rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .area-in {
    padding: 0;
  }
}
.area-in a {
  color: #0081cc;
  font-size: 4.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  .area-in a {
    font-size: 2.4rem;
  }
}

footer {
  background: #0081cc;
  position: relative;
  width: 100%;
  padding: 20px 0 20px;
}
@media (min-width: 751px) {
  footer {
    padding: 45px 0 45px;
  }
}

.footer-inner {
  margin: 0 20px;
}
@media (min-width: 1081px) {
  .footer-inner {
    margin: 0 144px;
  }
}
@media (min-width: 751px) {
  .footer-inner {
    margin: 0 30px;
  }
}

@media (max-width: 750px) {
  .f-menu-wrap {
    display: flex;
  }
}

.f-menu {
  display: block;
  width: 50%;
}
@media (min-width: 751px) {
  .f-menu {
    display: flex;
    padding: 0 3rem;
  }
}
.f-menu li {
  margin-right: 2rem;
}
.f-menu li a {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.5rem;
}

.f-menu-link {
  position: relative;
}

.f-menu-link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  bottom: -10px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
  visibility: hidden;
}

.f-menu-link:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  visibility: visible;
}

.f-info {
  margin-top: 2rem;
  color: #FFFFFF;
}
@media (min-width: 751px) {
  .f-info {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
  }
}

.f-info-last {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-logo {
  width: 80%;
  text-align: left;
}
@media (min-width: 751px) {
  .f-logo {
    width: 50%;
    text-align: left;
  }
}

.f-logo-img {
  display: block;
  margin-left: 0;
  width: auto;
}
@media (min-width: 751px) {
  .f-logo-img {
    width: 200px;
  }
}

.f-logo-img img {
  width: 50%;
}
@media (min-width: 751px) {
  .f-logo-img img {
    width: 100%;
  }
}

.f-address {
  line-height: 1.5;
  font-size: 1.1rem;
  margin-top: 1rem;
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (min-width: 751px) {
  .f-address {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}

.f-tel {
  color: #FFFFFF;
  line-height: 1.5;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (min-width: 751px) {
  .f-tel {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}

.copylight {
  color: #FFFFFF;
  line-height: 1.5;
  font-size: 1rem;
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media (min-width: 751px) {
  .copylight {
    font-size: 1.5rem;
  }
}

.footer-inner .privacy {
  color: #FFFFFF;
  line-height: 1.5;
  font-size: 1rem;
  margin-top: 0;
  font-family: "report", sans-serif;
}
@media (min-width: 751px) {
  .footer-inner .privacy {
    font-size: 1.5rem;
  }
}

.pagetop a {
  position: absolute;
  top: 20%;
  left: 80%;
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
  font-family: "report", sans-serif;
  white-space: nowrap;
}
@media (min-width: 751px) {
  .pagetop a {
    left: 88%;
    top: 25%;
  }
}

.pagetop span {
  display: block;
  letter-spacing: 0.1rem;
  transform: rotate(90deg);
}

.link-bar::before {
  content: "";
  position: absolute;
  top: -35%;
  left: 50%;
  width: 0.5px;
  height: 8rem;
  color: #FFFFFF;
}
@media (min-width: 751px) {
  .link-bar::before {
    top: -25%;
  }
}

.company .title {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/IMG_5070.JPG);
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 92px 0 42px;
  height: 360px;
  text-align: center;
  z-index: 10;
  background-color: #0081cc;
}
@media screen and (max-width: 768px) {
  .company .title {
    font-size: 40%;
    padding: 10px 0;
  }
}

.company .inner {
  display: flex;
  justify-content: space-between;
  padding: 5rem 2rem;
}
@media screen and (max-width: 768px) {
  .company .inner {
    display: block;
  }
}
.company .content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .company .content {
    width: 100%;
    margin-bottom: 5rem;
  }
}

.section-title {
  margin-bottom: 5rem;
  text-align: center;
}

.c-prf {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-prf {
    width: 100%;
    margin: 0 autp;
  }
}

.c-prf li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: #F2F2F2 1px solid;
  line-height: 1.81;
}

.c-prf .label {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .c-prf .label {
    line-height: 1;
  }
}
@media (min-width: 751px) {
  .c-prf .label {
    width: 200px;
  }
}

.c-prf li .label::after {
  display: none;
}

.c-prf li .date {
  display: block;
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .c-prf li .date {
    width: calc(100% - 200px);
  }
}

#privacy .title {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/cover3.jpg);
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 92px 0 42px;
  height: 360px;
  text-align: center;
  z-index: 10;
  background-color: #0081cc;
}
@media screen and (max-width: 768px) {
  #privacy .title {
    font-size: 40%;
    padding: 10px 0;
  }
}

.privacy {
  margin-top: 3rem;
}
@media screen and (min-width: 769px) {
  .privacy {
    margin-top: 5rem;
  }
}

.title-2-privacy {
  font-size: 2.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 769px) {
  .title-2-privacy {
    font-size: 5rem;
  }
}

.sentence {
  margin-bottom: 3rem;
}

.sentence-sub {
  border-left: 1px solid #000000;
  /*線の設定*/
  padding: 0.5rem 1rem;
  font-size: 2rem;
  /*余白の設定*/
}
@media screen and (min-width: 769px) {
  .sentence-sub {
    padding: 1rem 2rem;
    /*余白の設定*/
  }
}

.container-text {
  padding-top: 2rem;
}/*# sourceMappingURL=style.css.map */