@charset "UTF-8";
/* Scss Document */
/* Scss Document */
body {
  background: rgba(34, 91, 156, 0.1);
  background: linear-gradient(37deg, rgba(34, 91, 156, 0.1) 0%, rgba(82, 195, 241, 0.1) 100%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #283A3D;
  font-feature-settings: "palt";
  text-align: center;
  letter-spacing: 0.8px;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@media (max-width: 1200px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
p {
  letter-spacing: 0.04em;
  text-align: justify;
  line-height: 2em;
}

.notes {
  font-size: 10px;
}

.t-big {
  font-size: 144%;
}

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

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

@media (min-width: 1201px) {
  .tab {
    display: none;
  }
}

@media (min-width: 1201px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

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

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

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.5;
}

a.anker {
  display: block;
  padding-top: 200px;
  margin-top: -200px;
}

.scroll-prevent {
  overflow: hidden;
}

/*-------------*/
header {
  height: 60px;
  width: 100%;
  background: linear-gradient(180deg, white 50%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0.3) 100%);
  position: fixed;
  z-index: 999;
}
@media (max-width: 767px) {
  header {
    height: 30px;
  }
}
header .inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
@media (max-width: 767px) {
  header .inner {
    width: 100%;
    box-sizing: border-box;
  }
}
header .inner h1 {
  position: absolute;
  top: 30px;
  transform: translateY(-50%);
  left: 0;
  z-index: 9999;
}
header .inner h1 a {
  display: flex;
  align-items: center;
}
header .inner h1 a img.logo {
  width: 44px;
  margin-right: 4px;
}
@media (max-width: 767px) {
  header .inner h1 {
    top: 15px;
    left: 10px;
  }
  header .inner h1 a img.logo {
    width: 32px;
    margin-right: 2px;
  }
}
header .toggle {
  display: none;
  position: fixed;
  top: 4px;
  right: 10px;
  width: 19px;
  height: 37px;
  cursor: pointer;
  z-index: 9999;
}
@media (max-width: 767px) {
  header .toggle {
    display: block;
  }
}
header .toggle p {
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 6px;
  background: url("../img/toggle_menu.svg") no-repeat center center;
}
header .toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: #283A3D;
  transition: all 0.4s;
}
header .toggle span:nth-of-type(1) {
  top: 8px;
}
header .toggle span:nth-of-type(2) {
  top: 13px;
}
header .toggle span:nth-of-type(3) {
  top: 18px;
}
header .toggle.active p {
  background: url("../img/toggle_close.svg") no-repeat center center;
}
header .toggle.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}
header .toggle.active span:nth-of-type(2) {
  opacity: 0;
}
header .toggle.active span:nth-of-type(3) {
  width: 100%;
  top: 0;
  transform: translateY(15px) rotate(45deg);
}
header .header-sp {
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  box-sizing: border-box;
  background: white;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, white 10%, white 100%);
  z-index: 990;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
header .header-sp.active {
  visibility: visible;
  opacity: 1;
  height: auto;
  box-sizing: border-box;
  padding-top: 75px;
  padding-bottom: 45px;
}
header .header-sp .sp-menu {
  width: 90%;
  max-width: 335px;
  margin: auto auto 15px;
}
header .header-sp .sp-menu ul {
  display: flex;
  flex-wrap: wrap;
  leading-trim: both;
  text-edge: cap;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
}
header .header-sp .sp-menu ul li {
  width: 50%;
  margin-bottom: 20px;
}
header .header-sp .sp-menu ul li a {
  display: block;
  box-sizing: border-box;
  text-align: left;
}
header .header-sp .sp-menu ul li a:hover {
  opacity: 1;
  color: #225B9C;
}
header .header-sp .banner {
  width: 100%;
  background-color: #ADCAEB;
  padding: 20px 0;
}
header .header-sp .banner a {
  display: block;
  width: 90%;
  max-width: 335px;
  display: flex;
  box-sizing: border-box;
  border: 2px solid #225B9C;
  margin: auto;
  background-color: white;
}
header .header-sp .banner a img.photo {
  width: 44%;
}
header .header-sp .banner a div {
  width: 56%;
  position: relative;
}
header .header-sp .banner a div img {
  width: 90%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header-sp .banner a:hover {
  opacity: 1;
  border: 2px solid white;
}
header .header-sp .banner a:hover div::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFF8E4;
  z-index: 100;
  mix-blend-mode: multiply;
}
header .pc-menu {
  position: absolute;
  top: 30px;
  transform: translateY(-50%);
  right: 300px;
}
@media (max-width: 767px) {
  header .pc-menu {
    display: none;
  }
}
header .pc-menu ul {
  display: flex;
  justify-content: flex-end;
  leading-trim: both;
  text-edge: cap;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
}
header .pc-menu ul li {
  margin-left: 20px;
}
header .pc-menu ul li a {
  display: block;
  padding-right: 10px;
  background: url("../img/header_arrow.svg") no-repeat right center;
}
header .pc-menu ul li a:hover {
  opacity: 1;
  color: #225B9C;
  background: url("../img/header_arrow_on.svg") no-repeat right center;
}
header .tab-menu {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
}
header .tab-menu ul {
  display: flex;
  justify-content: flex-end;
}
header .tab-menu ul li {
  margin-left: 10px;
}
header .tab-menu ul li a {
  display: block;
  background-color: #225B9C;
  border-radius: 0px 0px 3px 3px;
}
header .tab-menu ul li a:hover {
  opacity: 1;
  background-color: #4e7cb0;
}
@media (max-width: 767px) {
  header .tab-menu {
    right: 38px;
  }
  header .tab-menu ul li {
    margin-left: 5px;
  }
}

main {
  width: 100%;
  overflow: hidden;
}

section#fv {
  height: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  padding-bottom: 43px;
}
@media (max-width: 767px) {
  section#fv {
    padding-bottom: 100px;
  }
}
section#fv .main_img {
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16/9;
  border-bottom-right-radius: 800px;
  border-bottom-left-radius: 800px;
}
@media (max-width: 767px) {
  section#fv .main_img {
    aspect-ratio: 750/650;
  }
}
section#fv .main_img {
  overflow: hidden;
  position: relative;
}
section#fv .main_img .fvview {
  height: 200%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(50%, 50%);
}
section#fv h2 {
  position: absolute;
  left: 30px;
  bottom: 0;
}
@media (max-width: 767px) {
  section#fv h2 {
    left: 1%;
    text-align: left;
  }
  section#fv h2 img {
    width: 95%;
  }
}

h3.title {
  text-align: left;
  position: relative;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 5px;
  margin-bottom: 30px;
}
h3.title img {
  position: absolute;
  left: -54px;
  top: -50px;
  z-index: -1;
}
@media (max-width: 767px) {
  h3.title {
    font-size: 25px;
    letter-spacing: 5px;
  }
  h3.title img {
    left: -13px;
    top: -25px;
    height: 60px;
    width: auto;
  }
}

section#message {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  padding: 160px 0;
  padding-left: 100px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  section#message {
    padding: 80px 0;
    padding-left: 5%;
  }
}
section#message h4 {
  text-align: left;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 133.333% */
  letter-spacing: 1.8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 999;
}
@media (max-width: 767px) {
  section#message h4 {
    margin-bottom: 110px;
    font-size: 18px;
    line-height: 25px;
  }
}
section#message p {
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
section#message p span {
  font-weight: 700;
  background: linear-gradient(transparent 50%, #FFF59A 50%);
}
@media (max-width: 767px) {
  section#message p {
    width: 95%;
    font-size: 13px;
    line-height: 23px;
  }
}
section#message figure {
  position: absolute;
  top: 190px;
  right: 0;
  background: rgba(34, 91, 156, 0.15);
  background: linear-gradient(45deg, rgba(34, 91, 156, 0.15) 0%, rgba(82, 195, 241, 0.15) 100%);
  width: 50%;
  height: 440px;
  border-top-left-radius: 220px;
  border-bottom-left-radius: 220px;
}
section#message figure img:first-of-type {
  width: 380px;
  height: auto;
  position: absolute;
  top: 30px;
  left: 30px;
}
section#message figure img:last-of-type {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 500px;
}
@media (max-width: 767px) {
  section#message figure {
    top: 150px;
    height: 220px;
    width: 92%;
    border-top-left-radius: 110px;
    border-bottom-left-radius: 110px;
  }
  section#message figure img:first-of-type {
    width: 200px;
    height: auto;
    position: absolute;
    top: 10px;
    left: 10px;
  }
  section#message figure img:last-of-type {
    width: 260px;
    right: -50px;
  }
}

section#support {
  width: 100%;
  background: rgba(34, 91, 156, 0.15);
  background: linear-gradient(45deg, rgba(34, 91, 156, 0.15) 0%, rgba(82, 195, 241, 0.15) 100%);
  margin: auto;
  position: relative;
  padding: 160px 0 100px;
  /* ページネーションのサイズと色 */
}
section#support .hand {
  position: absolute;
  bottom: 160px;
  right: 0;
  z-index: -1;
  width: 80%;
  max-width: 1000px;
  opacity: 0.2;
}
@media (max-width: 767px) {
  section#support .hand {
    bottom: 350px;
  }
}
@media (max-width: 767px) {
  section#support {
    padding: 50px 0 35px;
  }
}
section#support h3 {
  color: #225B9C;
}
section#support .inner {
  width: 90%;
  max-width: 1200px;
  margin: auto auto 60px;
}
@media (max-width: 767px) {
  section#support .inner .swiper {
    margin-bottom: 60px;
  }
}
section#support .inner ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  section#support .inner ul {
    margin-bottom: 40px;
  }
}
section#support .inner ul li {
  width: 30%;
}
section#support .inner ul li figure img {
  width: 100%;
  height: auto;
  border-top-left-radius: 182px;
  border-top-right-radius: 182px;
}
section#support .inner ul li div img {
  width: 100%;
  height: auto;
}
section#support .inner a {
  margin-top: 10px;
  display: block;
  background: linear-gradient(90deg, #225B9C 0%, #52C3F1 100%);
  padding: 20px 0;
}
section#support .inner a p {
  color: white;
  display: inline-block;
  padding-right: 20px;
  background: url("../img/arrow_right.svg") no-repeat right center;
}
section#support .inner h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 136.364% */
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  section#support .inner h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
section#support .inner .other {
  width: 100%;
}
section#support .inner .other img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  section#support .inner .other img {
    width: 100%;
  }
}
section#support .inner p.notes {
  text-align: right;
  margin-top: 20px;
}
section#support .swiper-pagination-bullet {
  background: #225B9C;
  background: linear-gradient(45deg, #225B9C, #52C3F1);
  height: 15px;
  width: 15px;
  box-sizing: border-box;
  opacity: 1;
  position: relative;
}
section#support .swiper-pagination-bullet::before {
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
}
section#support .swiper-pagination-bullet-active::before {
  display: none;
}

section#flow {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 160px 0 140px;
  position: relative;
}
@media (max-width: 767px) {
  section#flow {
    padding: 80px 0 70px;
  }
}
section#flow dl {
  display: flex;
  flex-wrap: wrap;
}
section#flow dl dt {
  width: 270px;
  height: 120px;
  border-bottom-left-radius: 60px;
  border-top-left-radius: 60px;
  position: relative;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
}
section#flow dl dt img {
  position: absolute;
  bottom: 0;
  left: 0;
}
section#flow dl dt:nth-of-type(1) {
  background-image: url("../img/flow_1.jpg");
}
section#flow dl dt:nth-of-type(2) {
  background-image: url("../img/flow_2.jpg");
}
section#flow dl dt:nth-of-type(3) {
  background-image: url("../img/flow_3.jpg");
}
section#flow dl dt:nth-of-type(4) {
  background-image: url("../img/flow_4.jpg");
}
section#flow dl dt:nth-of-type(5) {
  background-image: url("../img/flow_5.jpg");
}
section#flow dl dt:nth-of-type(6) {
  background-image: url("../img/flow_6.jpg");
}
section#flow dl dt:nth-of-type(7) {
  background-image: url("../img/flow_7.jpg");
}
@media (max-width: 767px) {
  section#flow dl dt {
    width: 100%;
    height: 60px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
  }
  section#flow dl dt img {
    width: 20px;
    height: auto;
  }
  section#flow dl dt:nth-of-type(1) {
    background-image: url("../img/flow_1_sp.jpg");
  }
  section#flow dl dt:nth-of-type(2) {
    background-image: url("../img/flow_2_sp.jpg");
  }
  section#flow dl dt:nth-of-type(3) {
    background-image: url("../img/flow_3_sp.jpg");
  }
  section#flow dl dt:nth-of-type(4) {
    background-image: url("../img/flow_4_sp.jpg");
  }
  section#flow dl dt:nth-of-type(5) {
    background-image: url("../img/flow_5_sp.jpg");
  }
  section#flow dl dt:nth-of-type(6) {
    background-image: url("../img/flow_6_sp.jpg");
  }
  section#flow dl dt:nth-of-type(7) {
    background-image: url("../img/flow_7_sp.jpg");
  }
}
section#flow dl dd {
  width: calc(100% - 270px);
  box-sizing: border-box;
  padding-left: 20px;
  margin-bottom: 20px;
}
section#flow dl dd h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  margin-bottom: 10px;
}
section#flow dl dd ul {
  margin-top: 10px;
  display: flex;
}
section#flow dl dd ul li {
  margin-right: 5px;
}
section#flow dl dd ul li a {
  display: block;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 1.8px;
  padding: 0 40px 0 20px;
  background: url("../img/arrow_right.svg") no-repeat right 20px center;
  background-color: #225B9C;
}
@media (max-width: 1200px) {
  section#flow dl dd ul li a {
    font-size: 14px;
    padding: 0 20px 0 5px;
    background: url("../img/arrow_right.svg") no-repeat right 10px center;
    background-color: #225B9C;
  }
}
@media (max-width: 767px) {
  section#flow dl dd {
    width: 100%;
    padding-left: 0;
  }
  section#flow dl dd h4 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  section#flow dl dd p {
    font-size: 10px;
    line-height: 16px;
  }
  section#flow dl dd ul {
    flex-direction: column;
  }
  section#flow dl dd ul li {
    width: 100%;
    margin-bottom: 5px;
  }
  section#flow dl dd ul li a {
    font-size: 12px;
    padding: 5px 40px 5px 20px;
    text-align: left;
  }
}

section#office {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 160px 0;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
  position: relative;
  border-radius: 0px 376px 376px 0px;
  background: linear-gradient(45deg, rgba(34, 91, 156, 0.15) 0%, rgba(82, 195, 241, 0.15) 100%);
}
@media (max-width: 767px) {
  section#office {
    padding: 80px 0;
    /*		border-top-right-radius: 200px;
    	border-bottom-right-radius: 200px;*/
  }
}
section#office h3 {
  color: #225B9C;
}
section#office .inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
section#office .inner .g_map {
  position: absolute;
  top: 25px;
  right: 0;
  width: 560px;
  height: 436px;
}
section#office .inner .g_map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 1200px) {
  section#office .inner .g_map {
    position: relative;
    margin-top: 30px;
    margin-left: 0;
    width: 100%;
    height: 350px;
  }
}
@media (max-width: 767px) {
  section#office .inner .g_map {
    position: absolute;
    top: 30px;
    height: 185px;
  }
}
section#office .inner dl {
  text-align: left;
  line-height: 36px;
  display: flex;
  flex-wrap: wrap;
}
section#office .inner dl dt {
  color: #225B9C;
  width: 8em;
}
section#office .inner dl dd {
  width: calc(100% - 8em);
}
section#office .inner dl dd span {
  line-height: 1.7;
  display: inline-block;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  section#office .inner dl dd span {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  section#office .inner dl {
    margin-top: 230px;
    font-size: 10px;
    line-height: 20px;
  }
}

section#faq {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 160px 0 140px;
}
@media (max-width: 767px) {
  section#faq {
    padding: 80px 0 70px;
  }
}
section#faq h3 {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  section#faq h3 img {
    height: 30px;
  }
}
section#faq .faq {
  margin: auto;
  box-sizing: border-box;
  padding-left: 100px;
  text-align: left;
  line-height: 20px;
}
section#faq .faq li {
  margin-bottom: 30px;
}
section#faq .faq .faq-q {
  box-sizing: border-box;
  padding: 20px 120px 20px 80px;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  background: url("../img/faq_Q.svg") no-repeat left 45px center;
  background-color: #DEE7F1;
  position: relative;
}
section#faq .faq .faq-q::after {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 10px;
  background-image: url("../img/faq_arrow.svg");
  right: 45px;
  top: calc(50% - 5px);
  cursor: pointer;
}
section#faq .faq .faq-q.open {
  border-top-left-radius: 60px;
  border-bottom-left-radius: 0;
}
section#faq .faq .faq-q.open::after {
  background-image: url("../img/faq_arrow_on.svg");
}
section#faq .faq .faq-a {
  box-sizing: border-box;
  padding: 20px 120px 20px 80px;
  display: none;
  background: url("../img/faq_A.svg") no-repeat left 45px center;
  background-color: white;
  border-bottom-left-radius: 60px;
}
section#faq .faq .faq-a p span {
  border: 1px solid #283A3D;
  padding: 0 0.5em;
  margin: auto 0.5em;
}
@media (max-width: 767px) {
  section#faq .faq {
    padding-left: 5%;
    font-size: 10px;
    line-height: 18px;
  }
  section#faq .faq li {
    margin-bottom: 15px;
  }
  section#faq .faq .faq-q {
    box-sizing: border-box;
    padding: 8px 120px 8px 40px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    background: url("../img/faq_Q.svg") no-repeat left 20px center;
    background-color: #DEE7F1;
    position: relative;
  }
  section#faq .faq .faq-q::after {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 10px;
    background-image: url("../img/faq_arrow.svg");
    right: 25px;
    top: calc(50% - 5px);
    cursor: pointer;
  }
  section#faq .faq .faq-q.open {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 0;
  }
  section#faq .faq .faq-q.open::after {
    background-image: url("../img/faq_arrow_on.svg");
  }
  section#faq .faq .faq-a {
    box-sizing: border-box;
    padding: 8px 15px 8px 40px;
    display: none;
    background: url("../img/faq_A.svg") no-repeat left 20px center;
    background-color: white;
    border-bottom-left-radius: 40px;
  }
}

.cv h3 {
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 36px;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cv h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.cv ul {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.cv ul li {
  width: 31.5%;
}
.cv ul li a {
  height: 120px;
  background-color: white;
  border: 1px solid white;
  display: block;
  border-radius: 60px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.cv ul li a img {
  width: 85%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cv ul li:first-of-type a:hover {
  opacity: 1;
  background-color: #F5FDF8;
}
.cv ul li:nth-last-of-type(2) a:hover {
  opacity: 1;
  background-color: #FFF4F4;
}
.cv ul li:last-of-type a:hover {
  opacity: 1;
  background-color: #EFEEFF;
}
@media (max-width: 767px) {
  .cv ul {
    flex-direction: column;
  }
  .cv ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .cv ul li a {
    height: auto;
  }
  .cv ul li a img {
    width: 100%;
    height: auto;
    position: static;
    transform: none;
  }
}

footer {
  width: 100%;
}
footer .cv h3 {
  margin-bottom: 20px;
}
footer .cv .wrap {
  width: 100%;
  background-color: #E4F4FC;
  padding: 40px 0;
}
footer .banner {
  width: 100%;
  background-color: #ADCAEB;
  padding: 40px 0;
}
@media (max-width: 767px) {
  footer .banner {
    display: none;
  }
}
footer .banner a {
  display: block;
  width: 90%;
  max-width: 1200px;
  display: flex;
  box-sizing: border-box;
  border: 2px solid #225B9C;
  margin: auto;
  background-color: white;
}
footer .banner a img.photo {
  width: 32%;
}
footer .banner a div {
  width: 68%;
  position: relative;
}
footer .banner a div img {
  width: 90%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .banner a:hover {
  opacity: 1;
  border: 2px solid white;
}
footer .banner a:hover div::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFF8E4;
  z-index: 100;
  mix-blend-mode: multiply;
}
footer .copyright {
  width: 100%;
  background-color: #225B9C;
}
footer .copyright p {
  color: white;
  text-align: center;
  font-size: 10px;
  line-height: 3em;
}
@media (max-width: 1200px) {
  footer .inner {
    margin: auto auto 30px;
  }
}
@media (max-width: 767px) {
  footer .inner {
    margin: auto auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  footer .inner .logo {
    margin-bottom: 40px;
  }
}

.slow {
  animation-duration: 0.5s; /* アニメーションの時間 */
  animation-delay: 0.1s; /* アニメーション開始時間 */
}/*# sourceMappingURL=style.css.map */