@charset "UTF-8";

/* PC用のスタイル */
.br-pc {
  display: inline;
}

/* スマートフォン用のスタイル */
.br-sp {
  display: none;
}

/* ブレイクポイントに応じたスタイルの適用 */
@media screen and (min-width: 769px) {
  .br-pc {
    display: inline;
  }

  .br-sp {
    display: none;
  }
}

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

  .br-sp {
    display: inline;
  }
}

/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  transform: translate(0, 35px);
  transition: all 0.5s ease-out;
}

.slide-bottom.time2 {
  transition-delay: 0.3s;
}

@media screen and (max-width: 768px) {
  .slide-bottom.time2 {
    transition-delay: 0s;
  }
}

.slide-bottom.time3 {
  transition-delay: 0.6s;
}

@media screen and (max-width: 768px) {
  .slide-bottom.time3 {
    transition-delay: 0s;
  }
}

.slide-bottom.time4 {
  transition-delay: 1.2s;
}

@media screen and (max-width: 768px) {
  .slide-bottom.time4 {
    transition-delay: 0s;
  }
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-35px, 0);
  transition: all 0.5s ease-out;
}

.slide-left.time2 {
  transition-delay: 0.6s;
}

.slide-left.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(35px, 0);
  transition: all 0.5s ease-out;
}

.slide-right.time2 {
  transition-delay: 0.8s;
}

.slide-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* その場でふわっと */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeIn.time2 {
  animation-delay: 0.8s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* アニメーションが有効になった際のスタイル */
.show {
  opacity: 1;
  transform: translate(0, 0);
}

.content {
  overflow: hidden;
  padding: 0 3.2rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content {
    padding: 0 1.6rem;
  }
}

.content2 {
  max-width: 1200px;
  padding: 6rem 4rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content2 {
    padding: 3rem 2rem;
  }
}

.contents_main {
  float: left;
  font-size: 90%;
  width: 640px;
  line-height: 1.8em;
}

h4+p {
  width: 640px;
}

.contents_sub {
  float: right;
  width: 235px;
}

h4 {
  background: url(https://sourcemasters.jp/images/indent.png) no-repeat left top;
  margin: 15px 0;
  font-size: 135%;
  font-weight: 600;
  text-indent: 0.7em;
}

.clear {
  clear: both;
  margin: 200px 0 15px 0;
}

.contents_text {
  width: 410px;
  float: left;
}

.contents_img {
  width: 220px;
  float: right;
}

#footer {
  clear: both;
}

a {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
}

.linkHover {
  padding-bottom: 5px;
  position: relative;
}

.linkHover::before {
  background: #2E2E2E;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.linkHover:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


.topBack {
  position: fixed;
  bottom: 5.6rem;
  right: 0;
  z-index: 4;
}

.topBack a {
  color: #2E2E2E;
  display: block;
  font-family: Figtree;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  text-transform: uppercase;
  transform: rotate(270deg);
  padding: 0.5rem;
}

.topBack a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: -1.8rem;
  margin: auto;
  width: 120%;
  height: 1px;
  background: #2E2E2E;
  transition: 0.3s;
}

.topBack a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: -2rem;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 10px solid #2E2E2E;
  transition: 0.3s;
}

.topBack a:hover::before {
  right: -2.8rem;
}

.topBack a:hover::after {
  right: -3rem;
}

.topBack.whiteColor a {
  color: #fff;
}

.topBack.whiteColor a::before {
  background: #fff;
}

.topBack.whiteColor a::after {
  border-left: 10px solid #fff;
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
  overflow-x: hidden;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
}

.both {
  clear: both;
}

img {
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
  list-style: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.loader {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
}

.loader p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 5;
}

.loader p img {
  width: 16rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .header {
    height: 6.4rem;
  }
}

.header-content {
  display: flex;
  align-items: center;
  /* コンテンツカバー */
}

@media screen and (max-width: 768px) {
  .header-content {
    align-items: stretch;
    flex-direction: column;
  }
}

.header-content.whiteColor {
  background: #ffffff;
  transition: 0.5s ease-in-out;
}

.header-content #HeaderLogoWrap {
  /* メニューボタン */
}

.header-content #HeaderLogoWrap .logo {
  flex: 1;
  transition: 0.3s;
}

.header-content #HeaderLogoWrap .logo img {
  height: 5.6rem;
  margin: 1.2rem 3.2rem;
}

@media screen and (max-width: 768px) {
  .header-content #HeaderLogoWrap .logo img {
    height: 4.8rem;
    margin: 0.8rem 0 0.8rem 1.6rem;
  }
}

.header-content #HeaderLogoWrap .logo:hover {
  opacity: 0.7;
}

.header-content #HeaderLogoWrap #btnMenuWrap {
  display: none;
}

@media screen and (max-width: 768px) {
  .header-content #HeaderLogoWrap #btnMenuWrap {
    display: block;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    width: 16vw;
    height: 100%;
  }

  .header-content #HeaderLogoWrap #btnMenuWrap .btnMenuContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 2rem;
    cursor: pointer;
  }

  .header-content #HeaderLogoWrap #btnMenuWrap .btnMenuContent span {
    width: 100%;
    height: 1.5px;
    background: #2E2E2E;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    position: absolute;
  }

  .header-content #HeaderLogoWrap #btnMenuWrap .btnMenuContent span:nth-of-type(1) {
    top: 0;
  }

  .header-content #HeaderLogoWrap #btnMenuWrap .btnMenuContent span:nth-of-type(2) {
    top: 50%;
  }

  .header-content #HeaderLogoWrap #btnMenuWrap .btnMenuContent span:nth-of-type(3) {
    top: 100%;
  }

  .header-content #HeaderLogoWrap #btnMenuWrap .btnMenuContent span.whiteColor {
    background: #ffffff;
  }
}

.header-content #HeaderLogoWrap .open-menu span:nth-of-type(1) {
  top: 50% !important;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-content #HeaderLogoWrap .open-menu span:nth-of-type(2) {
  opacity: 0;
}

.header-content #HeaderLogoWrap .open-menu span:nth-of-type(3) {
  top: 50% !important;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-content .rightmenu {
  margin-right: 3.2rem;
  flex: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* 上下中央に配置するための追加 */
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu {
    margin-right: 0;
    display: block;
  }
}

.header-content .rightmenu .lang {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .lang {
    display: block;
    z-index: 2;
    transition: all 0.2s ease-in;
    position: absolute;
    top: 2.4rem;
    right: 8rem;
  }
}

.header-content .rightmenu .lang ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.header-content .rightmenu .lang ul li {
  list-style: none;
  display: flex;
  position: relative;
  padding: 0 0.8rem;
  transition: all 0.2s ease-in;
}

.header-content .rightmenu .lang ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 2px;
  /* スラッシュの太さ */
  height: 1.6rem;
  /* スラッシュの高さ */
  background-color: #2E2E2E;
  /* スラッシュの色 */
  transform: rotate(20deg);
  /* スラッシュの角度 */
  position: absolute;
  top: 50%;
  right: -0.16rem;
  transform: translateY(-50%) rotate(20deg);
  /* スラッシュを上下中央に配置 */
  transition: all 0.2s ease-in;
}

.header-content .rightmenu .lang ul li a {
  text-decoration: none;
  color: #2E2E2E;
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.header-content .rightmenu .lang ul li a .visited {
  color: #898989;
}

.header-content .rightmenu .lang ul li a:hover {
  opacity: 0.7;
}

.header-content .rightmenu .lang ul li .icon-class1 {
  opacity: 1;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s ease-in;
}

.header-content .rightmenu .lang ul li .icon-class2 {
  opacity: 0;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s ease-in;
}

.header-content .rightmenu .lang ul li.whiteColor {
  list-style: none;
  display: flex;
  position: relative;
  padding: 0 0.8rem;
  transition: all 0.2s ease-in;
}

.header-content .rightmenu .lang ul li.whiteColor:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 2px;
  /* スラッシュの太さ */
  height: 1.6rem;
  /* スラッシュの高さ */
  background-color: #ffffff;
  /* スラッシュの色 */
  transform: rotate(20deg);
  /* スラッシュの角度 */
  position: absolute;
  top: 50%;
  right: -0.16rem;
  transform: translateY(-50%) rotate(20deg);
  /* スラッシュを上下中央に配置 */
  transition: all 0.2s ease-in;
}

.header-content .rightmenu .lang ul li.whiteColor a {
  text-decoration: none;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(46, 46, 46, 0.64);
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.header-content .rightmenu .lang ul li.whiteColor a:hover {
  opacity: 0.7;
}

.header-content .rightmenu .lang ul li.whiteColor .icon-class1 {
  opacity: 0;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s ease-in;
}

.header-content .rightmenu .lang ul li.whiteColor .icon-class2 {
  opacity: 1;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s ease-in;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav {
    height: auto;
    width: 100vw;
    display: none;
    overflow-y: scroll;
  }
}

.header-content .rightmenu .nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list {
    padding: 1.6rem 0 0;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list>li {
    margin: 0rem;
  }
}

.header-content .rightmenu .nav-list>li a {
  display: block;
  color: #2E2E2E;
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: normal;
  text-transform: uppercase;
  word-break: keep-all;
  position: relative;
}

.header-content .rightmenu .nav-list>li a .rotate {
  perspective: 300px;
  text-decoration: none;
  display: inline-block;
}

.header-content .rightmenu .nav-list>li a .rotate span {
  display: block;
  color: #2E2E2E;
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: normal;
  text-transform: uppercase;
  word-break: keep-all;
  position: relative;
  backface-visibility: hidden;
  transition: transform 0.5s;
}

.header-content .rightmenu .nav-list>li a .rotate span:first-child {
  transform: translateY(10px) rotateX(0deg);
}

.header-content .rightmenu .nav-list>li a .rotate span:last-child {
  transform: rotateX(-90deg);
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list>li a .rotate span {
    color: #2E2E2E;
    font-family: Figtree;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: normal;
    text-transform: uppercase;
  }
}

.header-content .rightmenu .nav-list>li a .rotate:hover span:first-child {
  transform: rotateX(90deg);
}

.header-content .rightmenu .nav-list>li a .rotate:hover span:last-child {
  transform: translateY(-10px) rotateX(0deg);
}

@media screen and (min-width: 769px) {
  .header-content .rightmenu .nav-list>li a .rotate.whiteColor span {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(46, 46, 46, 0.64);
    transition: transform 0.5s;
  }
}

.header-content .rightmenu .nav-list>li.partner {
  height: 8rem;
  width: 24rem;
  cursor: pointer;
  text-align: center;
  margin: 0;
  transition: all 0.3s;
  z-index: 0;
  position: relative;
  background-color: #fff;
}

.header-content .rightmenu .nav-list>li.partner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  content: "";
  border: 0.4rem solid transparent;
  border-image: url(../img/bg_button.png) 30 round;
  transition: border-width 0.2s linear;
  box-shadow: -1px 1px 4px rgba(46, 46, 46, 0.16);
}

.header-content .rightmenu .nav-list>li.partner:hover::before {
  border-width: 0px;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list>li.partner {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 1.6rem;
  }
}

.header-content .rightmenu .nav-list>li.partner a {
  padding: 1.6rem 1rem;
  font-family: Figtree;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(90deg, #C7000B 30%, #D28300 37%, #DFD000 44%, #7BAA17 56%, #008A83 63%, #005AA0 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list>li.partner a {
    background: linear-gradient(90deg, #C7000B 20%, #D28300 24%, #DFD000 28%, #7BAA17 32%, #008A83 36%, #005AA0 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.header-content .rightmenu .nav-list>li.partner a:hover {
  background: linear-gradient(90deg, #005AA0 30%, #008A83 37%, #7BAA17 44%, #DFD000 56%, #D28300 63%, #C7000B 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.64;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list>li.partner a:hover {
    background: linear-gradient(90deg, #005AA0 20%, #008A83 24%, #7BAA17 28%, #DFD000 32%, #D28300 36%, #C7000B 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.64;
  }
}

.header-content .rightmenu .nav-list>li.partner a .subtxt {
  font-family: Noto Sans JP;
  padding-top: 0.4rem;
  font-size: 1.4rem;
  background: linear-gradient(90deg, #5A5A5A 0%, #5A5A5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list>li.partner a .subtxt {
    padding-left: 1.6rem;
    font-size: 1.2rem;
    line-height: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-list>li.partner a {
    padding: 1.6rem 0;
  }
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-arrow {
    padding: 0 1.6rem;
  }
}

.header-content .rightmenu .nav-arrow-link {
  margin: 0 0.7rem;
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-arrow-link {
    margin: 0;
    padding: 0;
  }
}

.header-content .rightmenu .nav-arrow-link2 {
  margin-left: 1.6rem;
}

.header-content .rightmenu .nav-arrow-link2:first-child {
  margin-left: 3.2rem;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-arrow-link2:first-child {
    margin: 0;
  }
}

.header-content .rightmenu .nav-arrow-link2:last-child {
  margin-right: 3.2rem;
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-arrow-link2:last-child {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .nav-arrow-link2 {
    margin: 0;
  }
}

.header-content .rightmenu .splink {
  padding: 0;
}

.header-content .rightmenu .splink>li {
  padding-bottom: 0.8rem;
}

.header-content .rightmenu .splink>li>a {
  font-family: Noto Sans JP;
  color: #5A5A5A;
  font-size: 1.2rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.header-content .rightmenu .splink>li:last-child {
  padding-bottom: 1.6rem;
}

@media screen and (min-width: 769px) {
  .header-content .rightmenu .splink {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header-content .rightmenu .splink {
    display: block;
  }
}

.header-content .cover {
  display: none;
}

@media screen and (max-width: 768px) {
  .header-content .cover.on {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(46, 46, 46, 0.64);
    display: block;
  }
}

.firstview {
  overflow-x: hidden;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/main.jpg);
  position: relative;
}

@media screen and (max-width: 768px) {
  .firstview {
    background-position: 30% 80%;
  }
}

.firstview:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(46, 46, 46, 0.24);
}

.firstview:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 80%, rgb(255, 255, 255) 100%, #fff 100%);
}

.firstview .txt1 {
  position: absolute;
  top: 12.8rem;
  left: 6.4rem;
  color: #fff;
  font-family: Figtree;
  font-size: 6.4rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 4px 4px 4px rgba(46, 46, 46, 0.64);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .firstview .txt1 {
    top: 8.8rem;
    left: 1.6rem;
    font-size: 3.2rem;
    text-shadow: 2px 2px 2px rgba(46, 46, 46, 0.64);
  }
}

.firstview img {
  position: absolute;
  top: 12.8rem;
  right: -3.2rem;
  width: 32rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .firstview img {
    width: 16rem;
  }
}

.firstview .txt2 {
  position: absolute;
  bottom: 12.8rem;
  right: 6.4rem;
  color: #fff;
  font-family: Noto Sans JP;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: normal;
  text-shadow: 2px 2px 2px rgba(46, 46, 46, 0.64);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .firstview .txt2 {
    bottom: 8.8rem;
    right: 1.6rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 1px rgba(46, 46, 46, 0.64);
  }
}

.firstview .container {
  max-width: 1280px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.subfirstview {
  height: 48rem;
  position: relative;
  background-color: rgb(241, 241, 241);
  background-size: cover;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .subfirstview {
    height: 24rem;
  }
}

.subfirstview:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/bg.png);
  background-repeat: repeat;
  opacity: 0.16;
}

.subfirstview .img-container {
  position: absolute;
  top: 25.6rem;
  right: 0;
  width: 56vw;
  z-index: 1;
  aspect-ratio: 109/69;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .subfirstview .img-container {
    top: 19rem;
    width: 90vw;
  }
}

.subfirstview .img-container img {
  width: auto;
  height: 100%;
}

.subfirstview .img-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 46, 46, 0.24);
  z-index: 2;
}

.subfirstview .img-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #2E2E2E;
  transform: translateX(0%);
  z-index: 3;
  animation: slide-out 1.2s cubic-bezier(0.5, 0.27, 0, 1.02) forwards;
}

@keyframes slide-out {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(101%);
  }
}

.subfirstview .ttlBox {
  content: "";
  position: absolute;
  top: 12.8rem;
  left: 3.2rem;
}

@media screen and (max-width: 768px) {
  .subfirstview .ttlBox {
    top: 8.8rem;
    left: 1.6rem;
  }
}

.subfirstview .ttlBox .ttl {
  color: #2E2E2E;
  font-family: Figtree;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .subfirstview .ttlBox .ttl {
    font-size: 4.8rem;
  }
}

.subfirstview .ttlBox .ttl-sub {
  color: #5A5A5A;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 3.2rem;
}

@media screen and (max-width: 768px) {
  .subfirstview .ttlBox .ttl-sub {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.ttl1 {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.05em;
  color: #0063b3;
  margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .ttl1 {
    font-size: 1.8rem;
    line-height: 1.5em;
    margin-bottom: 2rem;
  }
}

.ttlSub {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .ttlSub {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
}

.ttl2 {
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 3.5rem;
  position: relative;
}

.ttl2:after {
  content: "";
  height: 2px;
  width: 3rem;
  background-color: #e49401;
  position: absolute;
  bottom: -1.2rem;
  left: 0;
}

@media screen and (max-width: 768px) {
  .ttl2:after {
    bottom: -1rem;
  }
}

@media screen and (max-width: 768px) {
  .ttl2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.ttl3 {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.ttl4 {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 44px;
  letter-spacing: 0.05em;
  margin-bottom: 1.6rem;
  font-family: "Inter";
  font-style: normal;
  display: inline-block;
  position: relative;
}

.ttl4:before {
  content: url(https://sourcemasters.jp/common/img/top/icon/square.svg);
  width: 2.3rem;
  position: absolute;
  top: -3.5rem;
  right: -3.5rem;
}

@media screen and (max-width: 768px) {
  .ttl4:before {
    transform: scale(0.7);
    top: -2.5rem;
    right: -2.5rem;
  }
}

.ttl4.type1:before {
  left: -3.5rem;
}

@media screen and (max-width: 768px) {
  .ttl4.type1:before {
    left: -2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .ttl4 {
    font-size: 2.6rem;
    line-height: 1.5em;
    margin-bottom: 1rem;
  }
}

.ttl5 {
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
  font-family: "Poppins";
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px #000;
  font-size: clamp(5rem, 5vw, 8rem);
}

.ttl5 span {
  font-family: "Inter";
  font-weight: 700;
  font-size: clamp(10rem, 10vw, 13rem);
}

.ttl6 {
  font-family: "Inter";
  font-size: 32px;
  margin: 0 auto 10px;
  letter-spacing: 0.2rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .ttl6 {
    font-size: 2.3rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.2rem;
  }
}

.ttl6-sub {
  font-weight: 600;
  color: #E3007F;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .ttl6-sub {
    font-size: 1.2rem;
  }
}

.ttl7 {
  display: flex;
}

.ttl7 .num {
  position: relative;
  font-family: "Kanit";
  font-weight: 500;
  font-size: 3.6rem;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 768px) {
  .ttl7 .num {
    font-size: 2.6rem;
  }
}

.ttl7 .num::after {
  content: "";
  width: 8.6rem;
  height: 8.6rem;
  background-color: #DDE8FF;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .ttl7 .num::after {
    width: 6.6rem;
    height: 6.6rem;
  }
}

.ttl7 .ttl {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 2rem;
  line-height: 29px;
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .ttl7 .ttl {
    font-size: 1.6rem;
    padding-bottom: 0.5rem;
  }
}

.ttl7 .txt {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 23px;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 768px) {
  .ttl7 .txt {
    font-size: 1.4rem;
  }
}

.ttl7 .txtWrap {
  padding-left: 3.5rem;
  padding-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .ttl7 .txtWrap {
    padding-left: 3rem;
    padding-top: 1.5rem;
  }
}

.txt1 {
  font-size: 1.6rem;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 768px) {
  .txt1 {
    font-size: 1.4rem;
  }
}

.txt1.link {
  color: #4b75ca;
}

.txt1.link:hover {
  opacity: 0.7;
}

.txt2 {
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .txt2 {
    font-size: 1.4rem;
  }
}

.txt3 {
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.error_messe {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  color: #e72e5d;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .error_messe {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.aboutus {
  position: relative;
  max-width: 90.6rem;
  margin: auto;
  padding: 32rem 12.8rem 40rem;
}

@media screen and (max-width: 768px) {
  .aboutus {
    padding: 16rem 1.6rem 20rem;
    overflow: hidden;
  }
}

.aboutus h2 {
  color: #005AA0;
  font-family: Figtree;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .aboutus h2 {
    font-size: 1.2rem;
  }
}

.aboutus .ttl {
  color: #2E2E2E;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 7.2rem;
  position: relative;
  text-align: center;
  padding-top: 1.6rem;
  padding-bottom: 6.4rem;
}

@media screen and (max-width: 768px) {
  .aboutus .ttl {
    font-size: 2rem;
    line-height: 4rem;
    padding-top: 0.8rem;
    padding-bottom: 3.2rem;
  }
}

.aboutus .txt {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  text-align: center;
  padding-bottom: 6.4rem;
}

@media screen and (max-width: 768px) {
  .aboutus .txt {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.8rem;
    padding-bottom: 3.2rem;
  }
}

.aboutus:before {
  content: "";
  display: block;
  height: 130rem;
  width: 130rem;
  position: absolute;
  top: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: linear-gradient(to bottom, transparent 50%, rgb(255, 255, 255) 70%, #fff 100%), url(../img/about.png);
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1.6s;
}

@media screen and (max-width: 768px) {
  .aboutus:before {
    height: 65rem;
    width: 65rem;
    top: 1.6rem;
    left: 50%;
    /* 左端から50%の位置に配置 */
    transform: translateX(-50%);
    /* 中央揃えのために左端から自身の幅の半分だけ左に移動 */
    background-image: linear-gradient(to bottom, transparent 70%, rgb(255, 255, 255) 90%, #fff 100%), url(../img/about.png);
  }
}

.services {
  position: relative;
  background-color: rgb(241, 241, 241);
  background-size: cover;
  z-index: 0;
}

.services:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/bg.png);
  background-repeat: repeat;
  opacity: 0.16;
}

.services .bgTitle {
  position: absolute;
  right: -2rem;
  top: -4rem;
  color: #ffffff;
  font-family: Figtree;
  font-size: 16rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .services .bgTitle {
    width: 100%;
    text-align: center;
    font-size: 6.4rem;
    top: -1.7rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.services .container {
  position: relative;
  padding: 0 3.2rem 25.6rem;
}

@media screen and (max-width: 768px) {
  .services .container {
    padding: 0 1.6rem 12.8rem;
  }
}

.services .container .summaryBox {
  padding: 12.8rem 9.6rem 6.4rem;
}

@media screen and (max-width: 768px) {
  .services .container .summaryBox {
    padding: 3.2rem 0;
  }
}

.services .container .summaryBox h2 {
  color: #008A83;
  font-family: Figtree;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .services .container .summaryBox h2 {
    text-align: center;
    font-size: 1.2rem;
  }
}

.services .container .summaryBox .ttl {
  color: #2E2E2E;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 7.2rem;
  position: relative;
  animation: fadein-up 1.5s ease-in-out forwards;
  padding-top: 1.6rem;
  padding-bottom: 6.4rem;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .services .container .summaryBox .ttl {
    text-align: center;
    font-size: 2rem;
    line-height: 4rem;
    padding-top: 0.8rem;
    padding-bottom: 3.2rem;
  }
}

.services .container .summaryBox .txtBox {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .services .container .summaryBox .txtBox {
    flex-direction: column;
    /* 縦並びにするために追加 */
  }
}

.services .container .summaryBox .txtBox .txt {
  width: 64%;
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
}

@media screen and (max-width: 768px) {
  .services .container .summaryBox .txtBox .txt {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.8rem;
    padding-bottom: 3.2rem;
  }
}

.services .container .detail {
  z-index: 2;
}

.services .container .detail ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem 4rem;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul {
    display: block;
  }
}

.services .container .detail ul li {
  display: flex;
}

.services .container .detail ul li .detailWrap {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 12.8rem 6.4rem 6.4rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  min-height: 70%;
  box-shadow: rgba(123, 170, 23, 0.2) 0px 8px 24px;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap {
    padding: 6.4rem 3.2rem 3.2rem;
  }
}

.services .container .detail ul li .detailWrap .num {
  color: #7BAA17;
  opacity: 16%;
  font-family: Figtree;
  font-size: 16rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: absolute;
  top: -3.2rem;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap .num {
    font-size: 6.4rem;
    top: 0;
    left: 0.8rem;
  }
}

.services .container .detail ul li .detailWrap:hover {
  box-shadow: none;
}

.services .container .detail ul li .detailWrap img {
  position: relative;
  height: 100px;
  z-index: 4;
}

.services .container .detail ul li .detailWrap .ttlBox {
  margin: 3.2rem 0;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap .ttlBox {
    margin: 1.6rem 0;
  }
}

.services .container .detail ul li .detailWrap .ttlBox h3 {
  color: #5A5A5A;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap .ttlBox h3 {
    font-size: 1.8rem;
  }
}

.services .container .detail ul li .detailWrap .ttlBox .sub {
  color: #5A5A5A;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2.8rem;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap .ttlBox .sub {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}

.services .container .detail ul li .detailWrap p {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  transition: all 0.3s;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap p {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.services .container .detail ul li .detailWrap .btn {
  border-radius: 50px;
  color: #fff;
  background-color: #7BAA17;
  border: 1.5px solid #7BAA17;
  padding: 1.4rem 0;
  transition: all 0.3s;
  display: inline-block;
  width: 18rem;
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  margin: 3.2rem auto 0;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap .btn {
    font-size: 1.4rem;
    margin: 1.6rem auto 0;
    padding: 1.2rem 0;
    width: 16rem;
  }
}

.services .container .detail ul li .detailWrap:hover .btn {
  color: #7BAA17;
  border: 1.5px solid #7BAA17;
  background-color: #FFFFFF;
  transition: 0.3s;
}

.services .container .detail ul li .detailWrap-second {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 12.8rem 6.4rem 6.4rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  min-height: 70%;
  box-shadow: rgba(223, 208, 0, 0.2) 0px 8px 24px;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-second {
    padding: 6.4rem 3.2rem 3.2rem;
  }
}

.services .container .detail ul li .detailWrap-second .num {
  color: #DFD000;
  opacity: 16%;
  font-family: Figtree;
  font-size: 16rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: absolute;
  top: -3.2rem;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-second .num {
    font-size: 6.4rem;
    top: 0;
    left: 0.8rem;
  }
}

.services .container .detail ul li .detailWrap-second:hover {
  box-shadow: none;
}

.services .container .detail ul li .detailWrap-second img {
  position: relative;
  height: 100px;
  z-index: 4;
}

.services .container .detail ul li .detailWrap-second .ttlBox {
  margin: 3.2rem 0;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-second .ttlBox {
    margin: 1.6rem 0;
  }
}

.services .container .detail ul li .detailWrap-second .ttlBox h3 {
  color: #5A5A5A;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-second .ttlBox h3 {
    font-size: 1.8rem;
  }
}

.services .container .detail ul li .detailWrap-second .ttlBox .sub {
  color: #5A5A5A;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2.8rem;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-second .ttlBox .sub {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}

.services .container .detail ul li .detailWrap-second p {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  transition: all 0.3s;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-second p {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.services .container .detail ul li .detailWrap-second .btn {
  border-radius: 50px;
  color: #fff;
  background-color: #DFD000;
  border: 1.5px solid #DFD000;
  padding: 1.4rem 0;
  transition: all 0.3s;
  display: inline-block;
  width: 18rem;
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  margin: 3.2rem auto 0;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-second .btn {
    font-size: 1.4rem;
    margin: 1.6rem auto 0;
    padding: 1.2rem 0;
    width: 16rem;
  }
}

.services .container .detail ul li .detailWrap-second:hover .btn {
  color: #DFD000;
  border: 1.5px solid #DFD000;
  background-color: #FFFFFF;
  transition: 0.3s;
}

.services .container .detail ul li .detailWrap-third {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 12.8rem 6.4rem 6.4rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  min-height: 70%;
  box-shadow: rgba(210, 131, 0, 0.2) 0px 8px 24px;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-third {
    padding: 6.4rem 3.2rem 3.2rem;
  }
}

.services .container .detail ul li .detailWrap-third .num {
  color: #D28300;
  opacity: 16%;
  font-family: Figtree;
  font-size: 16rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: absolute;
  top: -3.2rem;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-third .num {
    font-size: 6.4rem;
    top: 0;
    left: 0.8rem;
  }
}

.services .container .detail ul li .detailWrap-third:hover {
  box-shadow: none;
}

.services .container .detail ul li .detailWrap-third img {
  position: relative;
  height: 100px;
  z-index: 4;
}

.services .container .detail ul li .detailWrap-third .ttlBox {
  margin: 3.2rem 0;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-third .ttlBox {
    margin: 1.6rem 0;
  }
}

.services .container .detail ul li .detailWrap-third .ttlBox h3 {
  color: #5A5A5A;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-third .ttlBox h3 {
    font-size: 1.8rem;
  }
}

.services .container .detail ul li .detailWrap-third .ttlBox .sub {
  color: #5A5A5A;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2.8rem;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-third .ttlBox .sub {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}

.services .container .detail ul li .detailWrap-third p {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  transition: all 0.3s;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-third p {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.services .container .detail ul li .detailWrap-third .btn {
  border-radius: 50px;
  color: #fff;
  background-color: #D28300;
  border: 1.5px solid #D28300;
  padding: 1.4rem 0;
  transition: all 0.3s;
  display: inline-block;
  width: 18rem;
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  margin: 3.2rem auto 0;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li .detailWrap-third .btn {
    font-size: 1.4rem;
    margin: 1.6rem auto 0;
    padding: 1.2rem 0;
    width: 16rem;
  }
}

.services .container .detail ul li .detailWrap-third:hover .btn {
  color: #D28300;
  border: 1.5px solid #D28300;
  background-color: #FFFFFF;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .services .container .detail ul li {
    margin-bottom: 3.2rem;
  }

  .services .container .detail ul li:last-child {
    margin-bottom: 0;
  }
}

.contact {
  position: relative;
  margin-bottom: 16rem;
}

@media screen and (max-width: 768px) {
  .contact {
    margin-bottom: 42.8rem;
  }
}

.contact .imgWrap {
  background: url(../img/contact.png);
  background-size: cover;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact .imgWrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(241, 241, 241, 0.6);
}

.contact .imgWrap:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.contact .imgWrap h2 {
  position: absolute;
  left: -0.4rem;
  top: -4rem;
  color: #C0A3A5;
  mix-blend-mode: soft-light;
  font-family: Figtree;
  font-size: 16rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .contact .imgWrap h2 {
    font-size: 6.4rem;
    top: -1.7rem;
    left: 0;
  }
}

.contact .imgWrap .textBox {
  padding: 6.4rem 12.8rem 25.6rem;
}

@media screen and (max-width: 768px) {
  .contact .imgWrap .textBox {
    padding: 3.2rem 3.2rem 12.8rem;
  }
}

.contact .imgWrap .textBox .ttl {
  color: #FFFFFF;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 7.2rem;
  text-shadow: 2px 2px 2px rgba(46, 46, 46, 0.32);
  position: relative;
  padding-bottom: 3.2rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .contact .imgWrap .textBox .ttl {
    font-size: 2rem;
    line-height: 4rem;
    padding-bottom: 1.6rem;
  }
}

.contact .imgWrap .textBox .txt {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  text-shadow: 2px 2px 2px rgba(46, 46, 46, 0.32);
  position: relative;
  padding-bottom: 6.4rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .contact .imgWrap .textBox .txt {
    font-size: 1.4rem;
    line-height: 2.8rem;
    padding-bottom: 3.2rem;
  }
}

.contact .contentBox {
  display: flex;
  align-items: stretch;
  position: absolute;
  bottom: -16rem;
  padding: 6.4rem 12.8rem 0;
}

@media (max-width: 820px) {
  .contact .contentBox {
    align-items: normal;
    flex-direction: column;
    bottom: -42.8rem;
    padding: 3.2rem 3.2rem 0;
  }
}

.contact .contentBox .form {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: rgb(46, 46, 46);
  background-size: cover;
  position: relative;
  padding: 6.4rem;
}

.contact .contentBox .form:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/bg.png);
  opacity: 0.08;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .form {
    padding: 3.2rem;
  }
}

.contact .contentBox .form .ttl {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 3.2rem;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .form .ttl {
    font-size: 1.8rem;
    padding-bottom: 1.6rem;
  }
}

.contact .contentBox .form .txt {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  position: relative;
  animation: fadein-up 1.5s ease-in-out 0.1s forwards;
  padding-bottom: 6.4rem;
  z-index: 2;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .form .txt {
    font-size: 1.4rem;
    line-height: 2.8rem;
    padding-bottom: 3.2rem;
  }
}

.contact .contentBox .form .btn a {
  position: relative;
  display: flex;
  justify-content: space-around;
  min-width: 200px;
  max-width: 265px;
  padding: 1.6rem 0 1.6rem 2.4rem;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .form .btn a {
    min-width: 170px;
    max-width: 330px;
    padding: 1.6rem 0 1.6rem 2rem;
  }
}

.contact .contentBox .form .btn a:before,
.contact .contentBox .form .btn a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.contact .contentBox .form .btn a:before {
  width: 0.8rem;
  height: 0.8rem;
  left: 2rem;
  border-top: solid 2px #2E2E2E;
  border-right: solid 2px #2E2E2E;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .form .btn a:before {
    width: 0.6rem;
    height: 0.6rem;
    left: 1.8rem;
  }
}

.contact .contentBox .form .btn a:after {
  left: 0;
  background: #ffffff;
  z-index: 1;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .form .btn a:after {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.contact .contentBox .form .btn a span {
  color: #ffffff;
  font-family: Figtree;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.4rem;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .form .btn a span {
    font-size: 1.6rem;
  }
}

.contact .contentBox .form .btn a:hover span {
  color: #2E2E2E;
}

.contact .contentBox .form .btn a:hover:before {
  left: 2.4rem;
}

.contact .contentBox .form .btn a:hover:after {
  right: 0;
  width: 100%;
}

.contact .contentBox .partner {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: rgb(74, 74, 74);
  background-size: cover;
  position: relative;
  padding: 6.4rem;
}

.contact .contentBox .partner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/bg.png);
  opacity: 0.08;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .partner {
    padding: 3.2rem;
  }
}

.contact .contentBox .partner .ttl {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 3.2rem;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .partner .ttl {
    font-size: 1.8rem;
    padding-bottom: 1.6rem;
  }
}

.contact .contentBox .partner .txt {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  position: relative;
  animation: fadein-up 1.5s ease-in-out 0.1s forwards;
  padding-bottom: 6.4rem;
  z-index: 2;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .partner .txt {
    font-size: 1.4rem;
    line-height: 2.8rem;
    padding-bottom: 3.2rem;
  }
}

.contact .contentBox .partner .btn a {
  position: relative;
  display: flex;
  justify-content: space-around;
  min-width: 200px;
  max-width: 265px;
  padding: 1.6rem 0 1.6rem 2.4rem;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .partner .btn a {
    min-width: 170px;
    max-width: 330px;
    padding: 1.6rem 0 1.6rem 2rem;
  }
}

.contact .contentBox .partner .btn a:before,
.contact .contentBox .partner .btn a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.contact .contentBox .partner .btn a:before {
  width: 0.8rem;
  height: 0.8rem;
  left: 2rem;
  border-top: solid 2px #2E2E2E;
  border-right: solid 2px #2E2E2E;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .partner .btn a:before {
    width: 0.6rem;
    height: 0.6rem;
    left: 1.8rem;
  }
}

.contact .contentBox .partner .btn a:after {
  left: 0;
  background: #ffffff;
  z-index: 1;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .partner .btn a:after {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.contact .contentBox .partner .btn a span {
  color: #ffffff;
  font-family: Figtree;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.4rem;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .contact .contentBox .partner .btn a span {
    font-size: 1.6rem;
  }
}

.contact .contentBox .partner .btn a:hover span {
  color: #2E2E2E;
}

.contact .contentBox .partner .btn a:hover:before {
  left: 2.4rem;
}

.contact .contentBox .partner .btn a:hover:after {
  right: 0;
  width: 100%;
}

#news {
  padding: 10rem 0 4rem;
}

@media screen and (max-width: 768px) {
  #news {
    padding: 3rem 0;
  }
}

#news .contentWrap {
  display: flex;
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  #news .contentWrap {
    display: block;
    margin-bottom: 3rem;
  }
}

#news .contentWrap .titleWrap {
  width: 25%;
}

@media screen and (max-width: 768px) {
  #news .contentWrap .titleWrap {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
}

#news .contentWrap .titleWrap h2 {
  font-family: "Inter";
  font-size: 45px;
  line-height: 1em;
  margin: 0 auto 10px;
  letter-spacing: 0.2rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #news .contentWrap .titleWrap h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

#news .contentWrap .titleWrap p {
  font-weight: 600;
  color: #E3007F;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
}

#news .contentWrap .listWrap {
  width: 75%;
}

@media screen and (max-width: 768px) {
  #news .contentWrap .listWrap {
    width: 100%;
  }
}

#news .contentWrap .listWrap li {
  border-top: 1px solid #000;
}

#news .contentWrap .listWrap li a {
  padding: 35px 30px;
  display: flex;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  #news .contentWrap .listWrap li a {
    padding: 6vw 4vw;
    display: block;
  }
}

#news .contentWrap .listWrap li a .date {
  color: #adadad;
  font-family: Kanit;
  margin-right: 60px;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  #news .contentWrap .listWrap li a .date {
    margin: 0 0 0.5rem;
  }
}

#news .contentWrap .listWrap li a:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

#news .contentWrap .listWrap li:last-child {
  border-bottom: 1px solid #000;
}

.btn1 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  min-width: 200px;
  max-width: 225px;
  padding: 1.6rem 0 1.6rem 2.4rem;
  transition: 0.3s ease-in-out;
}

.btn1--service a {
  min-width: 300px;
}

@media screen and (max-width: 768px) {
  .btn1 a {
    min-width: 170px;
    max-width: 190px;
    padding: 1.6rem 0 1.6rem 2rem;
  }

  .btn1--service a {
    min-width: 280px;
  }
}

.btn1 a:before,
.btn1 a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.btn1 a:before {
  width: 0.8rem;
  height: 0.8rem;
  left: 2rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .btn1 a:before {
    width: 0.6rem;
    height: 0.6rem;
    left: 1.8rem;
  }
}

.btn1 a:after {
  left: 0;
  background: #2E2E2E;
  z-index: 1;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .btn1 a:after {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.btn1 a span {
  color: #2E2E2E;
  font-family: Figtree;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .btn1 a span {
    font-size: 1.6rem;
  }
}

.btn1 a:hover span {
  color: #fff;
}

.btn1 a:hover:before {
  left: 2.4rem;
}

.btn1 a:hover:after {
  right: 0;
  width: 100%;
}

.btn2 {
  padding: 10rem 0 0;
}

@media screen and (max-width: 768px) {
  .btn2 {
    padding: 2rem 0 0;
  }
}

.btn2 .detail ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  .btn2 .detail ul {
    display: block;
    margin-bottom: 3rem;
  }
}

.btn2 .detail ul li {
  width: 50%;
  box-sizing: border-box;
  padding: 4%;
  position: relative;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .btn2 .detail ul li {
    padding: 2rem 1rem;
    width: 100%;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .btn2 .detail ul li:nth-child(1):before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 1px;
    height: 100%;
    transform: translateY(-50%);
    background-color: #000000;
  }
}

.btn2 .detail ul li:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.btn2 .detail ul li:hover h3:after {
  width: 90%;
  transform: scaleX(1);
}

.btn2 .detail ul li .iconWrap {
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .btn2 .detail ul li .iconWrap img {
    height: 27px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .btn2 .detail ul li .iconWrap {
    margin-bottom: 0;
    width: 15%;
  }
}

.btn2 .detail ul li h3 {
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.btn2 .detail ul li h3:after {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 90%;
  height: 1.5px;
  background-color: #000;
  transition: all 0.3s;
  transform: scaleX(0);
}

@media screen and (max-width: 768px) {
  .btn2 .detail ul li h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    width: 85%;
    text-align: left;
  }
}

.btn2 .detail ul li p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .btn2 .detail ul li p {
    display: none;
  }
}

.btn2 .detail ul li a {
  display: contents;
}

.btn3 {
  border-radius: 50px;
  color: #fff;
  background-color: #0062b3;
  border: 1px solid #0063b3;
  padding: 14px 0;
  transition: all 0.3s;
  display: inline-block;
  min-width: 18rem;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .btn3 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .btn3 {
    margin-bottom: 0rem;
  }
}

.btn3:hover {
  transition: 0.3s;
  color: #0063b3;
  border: 1px solid #0063b3;
  background-color: #FFFFFF;
}

.btn3:active {
  color: #0063b3;
  border: 1px solid #0063b3;
  background-color: #FFFFFF;
}

.btn4 {
  border-radius: 50px;
  border: 1px solid #0063b3;
  background-color: #fff;
  padding: 14px 0;
  transition: all 0.3s;
  display: inline-block;
  min-width: 18rem;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #0063b3;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .btn4 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .btn4 {
    margin-bottom: 0rem;
  }
}

.btn4:hover {
  transition: 0.3s;
  color: #fff;
  background-color: #0062b3;
}

.footer {
  padding: 12.8rem 12.8rem 1.6rem;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 6.4rem 0 0.8rem;
  }
}

.footer .flexWrap {
  margin: auto;
  display: flex;
  padding-bottom: 12.8rem;
}

@media screen and (max-width: 768px) {
  .footer .flexWrap {
    flex-direction: column;
    padding: 0 2rem 3rem 2rem;
  }
}

.footer .flexWrap .logo {
  transition: 0.3s;
  margin: auto 0;
  padding-right: 16%;
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .logo {
    width: 100%;
    margin-bottom: 6.4rem;
    padding-right: 0;
    text-align: center;
  }
}

.footer .flexWrap .logo img {
  width: 16rem;
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .logo img {
    width: 12rem;
  }
}

.footer .flexWrap .logo:hover {
  opacity: 0.7;
}

.footer .flexWrap .menuBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .menuBox {
    flex-wrap: wrap;
  }
}

.footer .flexWrap .menuBox .contentWrap {
  flex: 2 2 4%;
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .menuBox .contentWrap {
    flex: none;
    width: 50%;
    /* 50%から少し引いて2列に収まるように */
    margin-bottom: 1rem;
    /* 下部マージンを追加して行間を確保 */
  }
}

.footer .flexWrap .menuBox .contentWrap .ttl {
  margin-bottom: 1.6rem;
}

.footer .flexWrap .menuBox .contentWrap .ttl a {
  color: #2E2E2E;
  font-family: Figtree;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
  text-transform: uppercase;
}

.footer .flexWrap .menuBox .contentWrap .ttl a:hover {
  color: #898989;
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .menuBox .contentWrap .ttl a {
    display: block;
    flex: 1;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .menuBox .contentWrap .link {
    width: 100%;
    display: none;
  }
}

.footer .flexWrap .menuBox .contentWrap .link li {
  margin-bottom: 0.08rem;
}

.footer .flexWrap .menuBox .contentWrap .link li a {
  color: #5A5A5A;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .menuBox .contentWrap .link li a {
    white-space: nowrap;
  }
}

.footer .flexWrap .menuBox .contentWrap .link li a:hover {
  color: #898989;
}

.footer .flexWrap .menuBox .contentWrap.partner-contact {
  display: block;
  /* PC表示では縦並びにする */
}

@media screen and (max-width: 768px) {
  .footer .flexWrap .menuBox .contentWrap.partner-contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer .flexWrap .menuBox .contentWrap.partner-contact .ttl {
    width: 50%;
    /* 2列にするための幅を指定 */
    margin-bottom: 1rem;
    /* 下部マージンを追加 */
  }
}

.footer .cp {
  text-align: center;
  color: #5A5A5A;
  font-family: Figtree;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .footer .cp {
    font-size: 1rem;
    line-height: 2rem;
  }
}

.footer .cp a {
  color: #5A5A5A;
  font-family: Figtree;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .footer .cp a {
    font-size: 1rem;
    line-height: 2rem;
  }
}

.footer .cp a:hover {
  color: #898989;
}

.bnr-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .bnr-container {
    display: block;
  }
}

.bnr-container .bnr {
  position: relative;
  width: 50%;
  height: 150px;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .bnr-container .bnr {
    width: 100%;
    height: 120px;
  }
}

.bnr-container .bnr a {
  height: 100%;
  width: 100%;
  display: block;
}

.bnr-container .bnr.bnr-1 {
  background-image: url("https://sourcemasters.jp/img/top/bnr/1.png");
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: color-burn;
  transition: 0.5s;
}

.bnr-container .bnr.bnr-1:hover {
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: color-burn;
}

.bnr-container .bnr.bnr-2 {
  background-image: url("https://sourcemasters.jp/img/top/bnr/2.png");
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: color-burn;
  transition: 0.5s;
}

.bnr-container .bnr.bnr-2:hover {
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: color-burn;
}

.bnr-container .bnr .bnr-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .bnr-container .bnr .bnr-text {
    width: 100%;
    text-align: center;
  }
}

.bnr-container .bnr .bnr-text p {
  color: #fff;
  font-size: 2rem;
  font-family: "Inter";
  letter-spacing: 0.2rem;
  font-family: "Inter";
  font-weight: 500;
}

.bnr-container .bnr .bnr-text p.sub {
  font-size: 1.5rem;
  text-align: center;
}

.layout {
  margin: 0 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout {
    margin: 0 1.6rem;
  }
}

.layout .contentWrap {
  padding: 0 9.6rem 12.8rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap {
    padding: 0 0 6.4rem 0;
  }
}

.layout .contentWrap:first-child {
  padding-top: 28%;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap:first-child {
    padding-top: 6.4rem;
  }
}

.layout .contentWrap:last-child {
  padding-bottom: 25.6rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap:last-child {
    padding-bottom: 12.8rem;
  }
}

.layout .contentWrap .ttlWrap {
  display: flex;
  align-items: center;
}

.layout .contentWrap .ttlWrap h2 {
  color: #2E2E2E;
  font-family: Figtree;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .ttlWrap h2 {
    font-size: 2rem;
    line-height: 4rem;
  }
}

.layout .contentWrap .ttlWrap h2 span {
  font-family: Figtree;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .ttlWrap h2 span {
    font-size: 2rem;
    line-height: 4rem;
  }
}

.layout .contentWrap .ttlWrap .ttl {
  color: #5A5A5A;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: normal;
  padding-left: 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .ttlWrap .ttl {
    font-size: 1.2rem;
    line-height: 2.4rem;
    padding-left: 1.6rem;
  }
}

.layout .contentWrap .listWrap {
  padding-top: 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap {
    padding-top: 1.6rem;
  }
}

.layout .contentWrap .listWrap-txt {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap-txt {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.layout .contentWrap .listWrap iframe {
  margin-bottom: 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap iframe {
    margin-bottom: 1.6rem;
  }
}

.layout .contentWrap .listWrap .listBox>li {
  padding-bottom: 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap .listBox>li {
    padding-bottom: 1.6rem;
  }
}

.layout .contentWrap .listWrap .listBox>li:last-child {
  padding-bottom: 0;
}

.layout .contentWrap .listWrap .listContent {
  display: flex;
  align-items: center;
}

.layout .contentWrap .listWrap .listContent .ttl {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: normal;
  font-weight: 400;
  color: #2E2E2E;
  text-align: center;
  background-color: rgb(241, 241, 241);
  background-size: cover;
  border-radius: 2%;
  width: 15%;
  white-space: nowrap;
  padding: 1rem 0;
  margin-right: 3.2rem;
}

.layout .contentWrap .listWrap .listContent .ttl:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/bg.png);
  background-repeat: repeat;
  border-radius: 2%;
  opacity: 0.16;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap .listContent .ttl {
    font-size: 1rem;
    width: 40%;
    padding: 0.6rem 0;
    margin-right: 1.6rem;
  }
}

.layout .contentWrap .listWrap .listContent .txtWrap {
  width: 88%;
}

.layout .contentWrap .listWrap .listContent .txtWrap img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap .listContent .txtWrap {
    width: 76%;
  }
}

.layout .contentWrap .listWrap .listContent .txt {
  color: #2E2E2E;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap .listContent .txt {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}

@media screen and (min-width: 769px) {
  .layout .contentWrap .listWrap .listContent a[href*="tel:"] {
    pointer-events: none;
  }
}

.layout .contentWrap .listWrap .iframeAccess {
  width: 100%;
  height: 400px;
  border: 0;
}

.layout .contentWrap .listWrap .listBox2 li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.6rem;
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap .listBox2 li {
    padding-left: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.layout .contentWrap .listWrap .listBox2 li:before {
  content: "";
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #2E2E2E;
  position: absolute;
  left: 0;
  top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .layout .contentWrap .listWrap .listBox2 li:before {
    top: 1.2rem;
  }
}

.layout .contentWrap .listWrap .listBox2 li:last-child {
  margin-bottom: 0;
}

.layout2 {
  margin: 0 3.2rem;
}

@media screen and (max-width: 768px) {
  .layout2 {
    margin: 0 1.6rem;
  }
}

.layout2 .titleWrap {
  padding: 32rem 9.6rem 12.8rem;
}

@media screen and (max-width: 768px) {
  .layout2 .titleWrap {
    padding: 6.4rem 0;
  }
}

.layout2 .titleWrap h2 {
  color: #005AA0;
  font-family: Figtree;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .layout2 .titleWrap h2 {
    font-size: 1.2rem;
  }
}

.layout2 .titleWrap .ttl {
  color: #2E2E2E;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 7.2rem;
  position: relative;
  text-align: center;
  padding-top: 1.6rem;
  padding-bottom: 6.4rem;
}

@media screen and (max-width: 768px) {
  .layout2 .titleWrap .ttl {
    font-size: 2rem;
    line-height: 4rem;
    padding-top: 0.8rem;
    padding-bottom: 3.2rem;
  }
}

.layout2 .titleWrap p {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .layout2 .titleWrap p {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.8rem;
    padding-bottom: 3.2rem;
  }
}

.layout2 .primary {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
  background-color: rgb(241, 241, 241);
  background-size: cover;
  z-index: 0;
}

.layout2 .primary:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/bg.png);
  background-repeat: repeat;
  opacity: 0.16;
}

.layout2 .primary .bgTitle {
  position: absolute;
  left: 0;
  top: -4rem;
  color: #ffffff;
  font-family: Figtree;
  font-size: 16rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .layout2 .primary .bgTitle {
    width: 100%;
    text-align: center;
    font-size: 6.4rem;
    top: -1.7rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.layout2 .primary .contentWrap {
  display: block;
  margin: 0 auto;
  padding: 9.6rem 64rem 12.8rem 9.6rem;
  position: relative;
  z-index: 2;
}

.layout2 .primary .contentWrap .ttlWrap {
  display: flex;
}

.layout2 .primary .contentWrap .ttlWrap h2 {
  color: #008A83;
  font-family: Figtree;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .layout2 .primary .contentWrap .ttlWrap h2 {
    font-size: 1.2rem;
  }
}

.layout2 .primary .contentWrap .ttlWrap .ttl {
  color: #5A5A5A;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: normal;
  position: relative;
  padding-left: 1.6rem;
}

@media screen and (max-width: 768px) {
  .layout2 .primary .contentWrap .ttlWrap .ttl {
    font-size: 1.8rem;
  }
}

.layout2 .primary .contentWrap .txt {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 3.2rem;
  padding-top: 3.2rem;
  padding-bottom: 6.4rem;
}

@media screen and (max-width: 768px) {
  .layout2 .primary .contentWrap .txt {
    font-size: 1.4rem;
    line-height: 2.8rem;
    padding-top: 1.6rem;
    padding-bottom: 3.2rem;
  }
}

.layout2 .primary .img-container {
  position: absolute;
  top: -10%;
  right: 0;
  width: 40vw;
  z-index: 0;
  aspect-ratio: 352/241;
}

@media screen and (max-width: 768px) {
  .layout2 .primary .img-container {
    bottom: -40%;
    width: 90vw;
  }
}

.layout2 .primary .img-container img {
  width: auto;
  height: 100%;
  background-position: 30% 80%;
}

.layout2 .primary .img-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 46, 46, 0.16);
  z-index: 2;
}

.layout3 li {
  padding: 5rem 0;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .layout3 li {
    width: 100%;
    padding: 2.5rem 0;
  }
}

.layout3 li:nth-child(even) {
  margin: 0 0 0 auto;
}

.layout3 li:last-child {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .layout3 li:last-child {
    width: 100%;
  }
}

.bgImg1 {
  position: relative;
}

.bgImg1::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url("https://sourcemasters.jp/common/img/bg/1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: clamp(3rem, 10vw, 10rem);
  height: clamp(3rem, 10vw, 10rem);
  top: 0rem;
  right: -17rem;
  z-index: -2;
  animation: up1 20s linear infinite;
}

@media screen and (max-width: 768px) {
  .bgImg1::before {
    right: 0rem;
    top: -1rem;
  }
}

.bgImg1::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url("https://sourcemasters.jp/common/img/bg/2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: clamp(1rem, 4vw, 4rem);
  height: clamp(1rem, 4vw, 4rem);
  top: 9rem;
  right: -19rem;
  z-index: -2;
  animation: up2 25s linear infinite;
}

@media screen and (max-width: 768px) {
  .bgImg1::after {
    right: 0rem;
    top: -4rem;
  }
}

.bgImg2 {
  position: relative;
}

.bgImg2::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: #D9D9D9;
  border-radius: 50%;
  width: clamp(1rem, 10vw, 10rem);
  height: clamp(1rem, 10vw, 10rem);
  bottom: 3rem;
  left: -17rem;
  z-index: -2;
  animation: up2 20s linear infinite;
}

@media screen and (max-width: 768px) {
  .bgImg2::before {
    bottom: -0.8rem;
    left: 1rem;
  }
}

.bgImg2::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: #4B75CA;
  border-radius: 50%;
  width: clamp(1rem, 4vw, 4rem);
  height: clamp(1rem, 4vw, 4rem);
  bottom: 5rem;
  left: -18rem;
  z-index: -2;
  animation: rotate1 20s linear infinite;
}

@media screen and (max-width: 768px) {
  .bgImg2::after {
    bottom: 1.8rem;
    left: -1rem;
  }
}

.bgImg3 {
  position: relative;
}

.bgImg3::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url("https://sourcemasters.jp/common/img/bg/3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: clamp(2rem, 5vw, 5rem);
  height: clamp(2rem, 5vw, 5rem);
  bottom: 0rem;
  right: -18rem;
  z-index: -2;
  animation: up1 15s linear infinite;
}

@media screen and (max-width: 768px) {
  .bgImg3::before {
    bottom: -3rem;
    right: 3rem;
  }
}

.bgImg3::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: #4B75CA;
  border-radius: 50%;
  width: clamp(0.5rem, 2vw, 2rem);
  height: clamp(0.5rem, 2vw, 2rem);
  bottom: 4rem;
  right: -14rem;
  z-index: -2;
  animation: up2 10s linear infinite;
}

@media screen and (max-width: 768px) {
  .bgImg3::after {
    right: 0rem;
    bottom: 4rem;
  }
}

@keyframes up1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(50px, -30px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes up2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(0px, 30px) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) rotate(-360deg);
  }
}

@keyframes rotate1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  30% {
    transform: translate(30px, 30px) rotate(-180deg);
  }

  50% {
    transform: translate(10px, 50px) rotate(-180deg);
  }

  100% {
    transform: translate(0, 0) rotate(-360deg);
  }
}

.topicpath {
  display: flex;
  padding-top: 1.6rem;
  margin: auto;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .topicpath {
    padding-top: 52%;
  }
}

.topicpath a {
  font-family: Figtree;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 2.4rem;
  font-weight: 400;
  color: #898989;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .topicpath a {
    font-size: 1rem;
    line-height: 3rem;
  }
}

.topicpath a:hover {
  opacity: 0.7;
}

.topicpath li+li {
  margin-left: 1.6rem;
}

.topicpath-txt {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 2.4rem;
  font-weight: 400;
  color: #2E2E2E;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .topicpath-txt {
    font-size: 1rem;
    line-height: 2rem;
  }
}

.topicpath-txt:after {
  content: "";
  display: inline-block;
  width: 1px;
  /* スラッシュの太さ */
  height: 0.8rem;
  /* スラッシュの高さ */
  background-color: #2E2E2E;
  /* スラッシュの色 */
  transform: rotate(20deg);
  /* スラッシュの角度 */
  position: absolute;
  top: 50%;
  left: -0.8rem;
  transform: translateY(-50%) rotate(20deg);
  /* スラッシュを上下中央に配置 */
}

.mt0 {
  margin-top: 0rem;
}

.mb0 {
  margin-bottom: 0rem;
}

.pt0 {
  padding-top: 0rem;
}

.pb0 {
  padding-bottom: 0rem;
}

.mt5 {
  margin-top: 1rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.pt5 {
  padding-top: 1rem;
}

.pb5 {
  padding-bottom: 1rem;
}

.mt10 {
  margin-top: 2rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.pt10 {
  padding-top: 2rem;
}

.pb10 {
  padding-bottom: 2rem;
}

.mt15 {
  margin-top: 3rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.pt15 {
  padding-top: 3rem;
}

.pb15 {
  padding-bottom: 3rem;
}

.mt20 {
  margin-top: 4rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.pt20 {
  padding-top: 4rem;
}

.pb20 {
  padding-bottom: 4rem;
}

.mt25 {
  margin-top: 5rem;
}

.mb5 {
  margin-bottom: 5rem;
}

.pt25 {
  padding-top: 5rem;
}

.pb25 {
  padding-bottom: 5rem;
}

.mt30 {
  margin-top: 6rem;
}

.mb6 {
  margin-bottom: 6rem;
}

.pt30 {
  padding-top: 6rem;
}

.pb30 {
  padding-bottom: 6rem;
}

.mt35 {
  margin-top: 7rem;
}

.mb7 {
  margin-bottom: 7rem;
}

.pt35 {
  padding-top: 7rem;
}

.pb35 {
  padding-bottom: 7rem;
}

.mt40 {
  margin-top: 8rem;
}

.mb8 {
  margin-bottom: 8rem;
}

.pt40 {
  padding-top: 8rem;
}

.pb40 {
  padding-bottom: 8rem;
}

.mt45 {
  margin-top: 9rem;
}

.mb9 {
  margin-bottom: 9rem;
}

.pt45 {
  padding-top: 9rem;
}

.pb45 {
  padding-bottom: 9rem;
}

.mt50 {
  margin-top: 10rem;
}

.mb10 {
  margin-bottom: 10rem;
}

.pt50 {
  padding-top: 10rem;
}

.pb50 {
  padding-bottom: 10rem;
}

.bg {
  background-color: #f6f6f6;
}

/*# sourceMappingURL=style.css.map */