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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #1a1a1a;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style-type: none;
}

/** -----------------------------------
    レイアウト
-------------------------------------**/
.wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2%;
}

.inner {
  max-width: 700px;
  margin-inline: auto;
  padding-inline: 2%;
}

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

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

/** -----------------------------------
    テキスト
-------------------------------------**/
.red {
  color: #bb2c33;
}

.red-line {
  background-color: #bb2c33;
  color: #fff;
  padding: 5px 15px;
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
}
.blue {
  color: #0071b9;
}

.yellow {
  color: #ffff00;
}

.yellow-line {
  padding: 0 3px;
  background-color: #ffff00;
}

.sec-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec-title .en {
  color: #b3b3b3;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.sec-title .ja {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 420px) {
  .sec-title .ja {
    padding-inline: 5%;
    font-size: 2.25rem;
  }
}

/** -----------------------------------
header
-------------------------------------**/
header {
  width: 100%;
  height: 80vh;
  color: #fff;
  position: relative;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 420px) {
  header {
    height: auto;
  }
}
header .wrapper {
  width: 100%;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header .wrapper {
    top: 20px;
    padding-inline: 5%;
  }
}
header h1 {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 420px) {
  header h1 {
    margin-bottom: 150px;
  }
}
header h1 span {
  font-size: 2rem;
  display: block;
}
@media screen and (max-width: 768px) {
  header h1 span {
    font-size: 1.5rem;
  }
}
header h1 span.main-title {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  header h1 span.main-title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 420px) {
  header h1 span.main-title {
    font-size: 3rem;
  }
}
header p {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  header p {
    font-size: 1rem;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 420px) {
  header p {
    margin-bottom: 40px;
  }
}
header .header-circle {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  header .header-circle {
    gap: 5px;
  }
}
header .header-circle img {
  width: 150px;
}
@media screen and (max-width: 420px) {
  header .header-circle img {
    width: 110px;
  }
}
header .mainvisual {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  header .mainvisual {
    -o-object-position: 70%;
       object-position: 70%;
  }
}
@media screen and (max-width: 420px) {
  header .mainvisual {
    display: none;
  }
}
header .mainvisual-sp {
  display: none;
}
@media screen and (max-width: 420px) {
  header .mainvisual-sp {
    display: block;
  }
}
header .check {
  position: absolute;
  left: 1%;
  top: 20%;
  z-index: 1;
  width: 600px;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 420px) {
  header .check {
    display: none;
  }
}
header .button {
  position: fixed;
  top: 0;
  right: 3%;
  z-index: 10;
}
header .button a {
  display: inline-block;
}
header .button img {
  width: 130px;
}
@media screen and (max-width: 768px) {
  header .button img {
    width: 100px;
  }
}
@media screen and (max-width: 420px) {
  header .button {
    display: none;
  }
}

/** -----------------------------------
worry
-------------------------------------**/
#worry {
  text-align: center;
}
#worry .worry-top {
  padding-top: 70px;
  background-image: linear-gradient(0deg, transparent, rgba(25, 98, 151, 0.5019607843) 50%, #132555);
}
#worry .worry-top h2 {
  margin-bottom: 70px;
}
#worry .worry-top h2 img {
  width: 650px;
}
#worry .text {
  background-color: #fff;
  padding: 25px 0 70px;
}
#worry .text p {
  font-size: 1.2rem;
}
@media screen and (max-width: 420px) {
  #worry .text p {
    font-size: 1rem;
  }
}
#worry .text .title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
@media screen and (max-width: 420px) {
  #worry .text .title {
    font-size: 1.2rem;
    padding-inline: 10%;
  }
}
#worry .text .red-line {
  display: inline-block;
  border: solid;
  padding: 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 420px) {
  #worry .text .red-line {
    font-size: 1rem;
  }
}

/** -----------------------------------
cta
-------------------------------------**/
.cta {
  background-image: linear-gradient(90deg, rgb(19, 37, 85) 0%, rgb(30, 156, 215) 50%, rgb(0, 117, 190) 100%);
  color: #fff;
}
.cta .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 60px;
}
@media screen and (max-width: 768px) {
  .cta .wrapper {
    flex-direction: column;
    padding-block: 20px;
  }
}
@media screen and (max-width: 768px) {
  .cta .left {
    margin-bottom: 30px;
  }
}
.cta .left .title {
  display: flex;
  align-items: center;
}
.cta .left .title img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta .left .title .text {
  margin-left: -15px;
  line-height: 1.3;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cta .left .title .text {
    margin-left: 10px;
  }
}
.cta .left .title .text span {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .cta .left .title .text span {
    font-size: 2rem;
  }
}
.cta .left ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #fff;
  margin-top: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .cta .left ul {
    padding-inline: 5%;
  }
}
.cta .left ul li {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .cta .left ul li {
    padding-bottom: 10px;
    font-size: 0.875rem;
  }
}
.cta .left ul li img {
  height: 24px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .cta .left ul li img {
    height: 20px;
  }
}
.cta .right .cta-btn {
  width: 400px;
  height: 110px;
  margin-left: 20px;
  display: inline-block;
  border: solid 5px #fff;
  background-color: #0071b9;
  position: relative;
  border-radius: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .cta .right .cta-btn {
    width: 320px;
    height: 85px;
    margin-left: 0px;
  }
}
.cta .right .cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .cta .right .cta-btn::after {
    right: 15px;
  }
}
.cta .right .cta-btn .cta-sub {
  position: absolute;
  top: -20px;
  left: 50%;
  display: inline-block;
  width: 300px;
  border-radius: 20px;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .cta .right .cta-btn .cta-sub {
    width: 250px;
    font-size: 0.875rem;
  }
}
.cta .right .cta-btn .cta-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 10.39px 6px 0px 6px;
}
.cta .right .cta-btn .cta-main {
  font-size: 1.75rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta .right .cta-btn .cta-main {
    font-size: 1.2rem;
  }
}
.cta .right .cta-btn:hover {
  background-color: #bb2c33;
  opacity: 1;
}

/** -----------------------------------
reason
-------------------------------------**/
#reason {
  background-color: #ebebeb;
  padding-top: 50px;
}
#reason .sec-title .title-image {
  width: 200px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #reason .sec-title .title-image {
    width: 300px;
  }
}
#reason .sec-title .ja {
  line-height: 1.2;
}
#reason .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 2% 50px;
}
@media screen and (max-width: 768px) {
  #reason .wrapper {
    flex-direction: column;
    align-items: center;
  }
}
#reason .wrapper img {
  width: 45%;
}
@media screen and (max-width: 420px) {
  #reason .wrapper img {
    width: 100%;
  }
}
#reason .text {
  width: 50%;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  #reason .text {
    width: 100%;
    padding-inline: 5%;
  }
}
#reason .text h3 {
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #reason .text h3 {
    text-align: center;
  }
}
#reason .text h3 span {
  color: #132555;
  font-size: 1.2rem;
}
#reason .text h3 span.red {
  color: #bb2c33;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #reason .text h3 span.red {
    color: #132555;
  }
}
#reason .text p {
  line-height: 2;
}
#reason .text .example {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #reason .text .example {
    flex-direction: column;
    margin-top: 10px;
  }
}
#reason .text .example p {
  background-color: #a0d8ea;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  line-height: 90px;
  font-size: 1.2rem;
  margin-right: 10px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  #reason .text .example p {
    margin-bottom: 10px;
  }
}
#reason .text .example ul {
  color: #0071b9;
  line-height: 2;
}
#reason .reason2 {
  background-color: #fff;
}
#reason .reason2 .wrapper {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #reason .reason2 .wrapper {
    flex-direction: column;
  }
}

/** -----------------------------------
case
-------------------------------------**/
#case {
  background-color: #0071b9;
  text-align: center;
}
#case ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 420px) {
  #case ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#case .case-top {
  position: relative;
  padding-block: 30px;
}
#case .case-top .sec-title {
  margin-bottom: 40px;
}
#case .case-top .sec-title .ja {
  color: #a0d8ea;
}
#case .case-top p {
  color: #fff;
  margin-bottom: 30px;
}
#case .case-top::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #0071b9 transparent transparent transparent;
  border-width: 60px 60px 0px 60px;
}
#case .case-bottom {
  background-image: url(../images/case-bg.jpg);
}
#case .case-bottom .wrapper {
  position: relative;
  padding-block: 70px;
}
@media screen and (max-width: 768px) {
  #case .case-bottom .wrapper {
    padding-bottom: 220px;
    padding-inline: 5%;
  }
}
#case .case-bottom .wrapper .title {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
#case .case-bottom .wrapper .title span {
  background-color: #fff;
  padding-inline: 10px;
}
#case .case-bottom img {
  width: 230px;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #case .case-bottom img {
    width: 170px;
  }
}
#case .case-bottom img.person1 {
  left: 5%;
}
#case .case-bottom img.person2 {
  right: 5%;
}

/** -----------------------------------
service
-------------------------------------**/
#service {
  color: #fff;
  text-align: center;
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 50px;
}
@media screen and (max-width: 420px) {
  #service {
    padding-inline: 5%;
    background-image: url(../images/service-bg-sp.jpg);
  }
}
#service .sec-title {
  margin-bottom: 50px;
}
#service p {
  margin-bottom: 30px;
}

/** -----------------------------------
advantage
-------------------------------------**/
#advantage {
  background-color: #ebebeb;
}
#advantage .sec-title {
  padding: 30px 5%;
}
#advantage .sec-title img {
  max-width: 650px;
}
@media screen and (max-width: 768px) {
  #advantage .sec-title img {
    max-width: 100%;
  }
}
#advantage .flex {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  #advantage .flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #advantage .flex:nth-child(n+3) {
    display: none;
  }
}
#advantage .flex img {
  width: 50%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 768px) {
  #advantage .flex img {
    width: 100%;
    height: auto;
  }
}
#advantage .flex .text {
  width: 35%;
  height: 400px;
  padding: 20px 20px;
}
@media screen and (max-width: 1000px) {
  #advantage .flex .text {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #advantage .flex .text {
    width: 100%;
    height: auto;
  }
}
#advantage .flex .text h3 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  #advantage .flex .text h3 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  #advantage .flex .text h3 {
    text-align: center;
    line-height: 1.5;
  }
}
#advantage .flex .example {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  display: flex;
  align-items: center;
  width: 800px;
  border-radius: 45px;
  font-size: 0.875rem;
  color: #132555;
}
@media screen and (max-width: 768px) {
  #advantage .flex .example {
    width: 90%;
    border-radius: 35px;
    align-items: flex-start;
    position: static;
    transform: none;
    margin: 0 auto 20px;
  }
}
#advantage .flex .example .circle {
  background-color: #132555;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  aspect-ratio: 1/1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #advantage .flex .example .circle {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}
#advantage .flex .example ul {
  padding: 20px 10px;
}

.advantage2,
.advantage4 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .advantage2,
.advantage4 {
    flex-direction: column;
  }
}

#advantage .advantage2 img,
#advantage .advantage4 img {
  -o-object-position: left;
     object-position: left;
}

/** -----------------------------------
works
-------------------------------------**/
#works {
  text-align: center;
  padding-block: 40px;
}
#works h2 {
  margin-bottom: 30px;
}
#works p {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #works p {
    padding-inline: 10%;
  }
}
#works ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #works ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/** -----------------------------------
feature
-------------------------------------**/
#feature {
  background-color: #132555;
  text-align: center;
  padding: 50px 2%;
}
@media screen and (max-width: 420px) {
  #feature {
    padding: 30px 2%;
  }
}
#feature h2 {
  margin-bottom: 30px;
}
#feature .ja {
  color: #fff;
}

/** -----------------------------------
interview
-------------------------------------**/
#interview {
  background-color: #ebebeb;
  padding: 30px 0;
  /* 右矢印の向き調整 */
}
#interview h2 {
  margin-bottom: 30px;
}
#interview h2 .ja {
  color: #132555;
}
#interview .slick-area {
  position: relative;
  padding-bottom: 150px;
}
#interview .slick-area .slide {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
}
#interview .slick-area .slide h3 {
  font-size: 1.75rem;
  height: 100px;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  #interview .slick-area .slide h3 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #interview .slick-area .slide h3 {
    font-size: 1.75rem;
  }
}
#interview .slick-area .slide .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#interview .slick-area .slide .content .name-box {
  height: 50px;
}
#interview .slick-area .slide .content p {
  font-size: 0.75rem;
  font-weight: normal;
}
#interview .slick-area .slide .content .name {
  font-size: 1rem;
}
@media screen and (max-width: 1000px) {
  #interview .slick-area .slide .content .name {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  #interview .slick-area .slide .content .name {
    font-size: 1rem;
  }
}
#interview .slick-area .slide .content img {
  width: 40px;
}
#interview .slick-slide {
  margin-inline: 10px;
}
#interview .slick-arrow {
  position: absolute;
  bottom: 0;
  top: auto;
  z-index: 10;
}
#interview .slick-prev,
#interview .slick-next {
  width: 70px;
  height: 70px;
  background: #132555;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #interview .slick-prev,
#interview .slick-next {
    width: 50px;
    height: 50px;
  }
}
#interview .slick-prev {
  left: 37%;
}
@media screen and (max-width: 1000px) {
  #interview .slick-prev {
    left: 20%;
  }
}
#interview .slick-next {
  right: 37%;
}
@media screen and (max-width: 1000px) {
  #interview .slick-next {
    right: 20%;
  }
}
#interview .slick-dots {
  bottom: 60px;
}
@media screen and (max-width: 768px) {
  #interview .slick-dots {
    bottom: 40px;
  }
}
@media screen and (max-width: 420px) {
  #interview .slick-dots li {
    margin: 0 2px;
  }
}
#interview .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#interview .slick-prev::before,
#interview .slick-next::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 1 !important;
}
#interview .slick-next::before {
  transform: rotate(45deg);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal iframe {
  width: 70%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 420px) {
  .modal iframe {
    width: 90%;
    height: auto;
  }
}

#close-video {
  position: absolute;
  top: 100px;
  right: 50px;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
@media screen and (max-width: 420px) {
  #close-video {
    top: 200px;
    right: 20px;
  }
}
#close-video span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
}
#close-video span:nth-child(1) {
  transform: rotate(45deg);
}
#close-video span:nth-child(2) {
  transform: rotate(-45deg);
}

/** -----------------------------------
flow
-------------------------------------**/
#flow {
  text-align: center;
}
#flow .flow-top {
  background-image: url(../images/flow-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 80px;
}
#flow .flow-top h2 {
  margin-bottom: 30px;
}
#flow .flow-top ul {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 420px) {
  #flow .flow-top ul {
    flex-direction: column;
    padding-inline: 5%;
    gap: 20px;
  }
}
#flow .flow-top ul li {
  position: relative;
}
#flow .flow-top ul li p {
  position: absolute;
  width: 100%;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
}
@media screen and (max-width: 1000px) {
  #flow .flow-top ul li p {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 420px) {
  #flow .flow-top ul li p {
    font-size: 0.9rem;
  }
}
#flow .flow-top ul li p a {
  color: #0071b9;
  text-decoration: underline;
}
#flow .flow-bottom {
  padding-block: 50px;
}
#flow .flow-bottom .title-image {
  width: 200px;
  margin-bottom: 20px;
}
@media screen and (max-width: 420px) {
  #flow .flow-bottom .title-image {
    width: 300px;
  }
}
#flow .flow-bottom ul {
  margin-bottom: 30px;
  border-bottom: 1px solid #b3b3b3;
  line-height: 2;
  font-size: 0.875rem;
}
#flow .flow-bottom ul li {
  border-top: 1px solid #b3b3b3;
  padding-block: 5px;
}
#flow .flow-bottom p {
  color: #132555;
  font-family: "Noto Serif JP", serif;
}

/** -----------------------------------
form
-------------------------------------**/
#form {
  padding-block: 80px;
}
#form h2 {
  margin-bottom: 30px;
  text-align: center;
}
#form p {
  text-align: center;
  margin-bottom: 30px;
}
#form dl {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 420px) {
  #form dl {
    flex-direction: column;
  }
}
#form dl dt {
  width: 40%;
  padding-top: 20px;
  border-bottom: 1px dotted #999999;
}
@media screen and (max-width: 420px) {
  #form dl dt {
    width: 100%;
    border-bottom: none;
  }
}
#form dl dt p {
  text-align: left;
}
@media screen and (max-width: 420px) {
  #form dl dt p {
    margin-bottom: 0px;
  }
}
#form dl dt span {
  width: 48px;
  font-size: 0.875rem;
  color: #fff;
  background-color: #7e7e7e;
  padding: 5px;
  margin-right: 10px;
  border-radius: 3px;
}
#form dl dt.tel2 {
  padding-left: 53px;
}
#form dl dd {
  width: 60%;
  border-bottom: 1px dotted #999999;
  padding-top: 20px;
}
@media screen and (max-width: 420px) {
  #form dl dd {
    width: 100%;
  }
}
#form dl dd p {
  text-align: left;
}
#form dl dd input,
#form dl dd textarea {
  border: solid 1px #999999;
  border-radius: 3px;
  background-color: #f6f6f6;
  padding: 10px;
}
#form dl dd textarea {
  height: 240px;
}
#form dl dd #postal {
  width: 50%;
}
#form dl dd .wpcf7-form-control {
  max-width: 100%;
}
#form dl dt:last-of-type {
  border-bottom: none;
}
#form dl dd:last-child {
  border-bottom: none;
}
#form .form-btn {
  text-align: center;
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 420px) {
  #form .form-btn {
    margin-top: 20px;
  }
}
#form .form-btn .btn {
  width: 100px;
  background-color: #132555;
  color: #fff;
  padding: 5px 20px;
}
#form .form-btn .btn:hover {
  opacity: 0.7;
}
#form .form-btn .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/** -----------------------------------
footer
-------------------------------------**/
footer {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #132555;
  color: #fff;
}
@media screen and (max-width: 420px) {
  footer {
    padding-bottom: 0;
  }
}
footer .logo {
  width: 240px;
  margin-bottom: 50px;
}
@media screen and (max-width: 420px) {
  footer .copy {
    font-size: 0.75rem;
    padding-bottom: 30px;
  }
}
footer .sp-button {
  display: none;
  background-color: #0071b9;
}
@media screen and (max-width: 420px) {
  footer .sp-button {
    display: block;
  }
}
footer .sp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 30px;
  color: #fff;
  font-size: 1.5rem;
}
footer .sp-button a img {
  width: 40px;
  margin-right: 30px;
}
/*# sourceMappingURL=main.css.map */