@charset "UTF-8";
@use "style";
/* デフォルト */
html {
  scroll-behavior: smooth;
}

html {
  --wp-admin--admin-bar--height: 0px !important;
}

/* レスポンシブ設定 */
@media screen and (min-width: 541px) {
  .sp {
    display: none !important;
  }
}

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

@media screen and (min-width: 800px) {
  .tb {
    display: none !important;
  }
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* デフォルトのフォントと文字カラー設定、幅 */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #000000;
  background: #FDF9F6;
}

body .container {
  max-width: 1342px;
  margin: auto;
}

@media screen and (max-width: 1382px) {
  body .container {
    max-width: 90%;
  }
}

body .sub-container {
  max-width: 1040px;
  margin: auto;
}

@media screen and (max-width: 1080px) {
  body .sub-container {
    max-width: 90%;
  }
}

body h1 {
  text-align: left;
  font-weight: bold;
}

body h2 {
  font-size: 60px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  body h2 {
    margin-bottom: 50px;
    font-size: 40px;
  }
}

body p {
  font-size: 18px;
  text-align: left;
}

@media screen and (max-width: 540px) {
  body p {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  body p {
    font-size: 14px;
  }
}

body .center {
  text-align: center;
}

body .bold {
  font-weight: bold;
}

body .blue {
  color: #19477A;
}

body .font {
  font-family: "widescreen", sans-serif;
  font-weight: bold;
  font-style: normal;
}

:root {
  --header-height: 80px;
}

@media screen and (max-width: 540px) {
  :root {
    --header-height: 60px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #FDFAF6;
  border-bottom: 1px solid #19477A;
  padding: 10px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

@media screen and (max-width: 990px) {
  header {
    padding: 10px;
  }
}

header .menu-basis .logo img {
  height: 82px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 540px) {
  header .menu-basis .logo img {
    height: 55px;
    margin-top: 5px;
  }
}

header .menu-basis .logo:hover img {
  opacity: 0.6;
}

header .menu-basis .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

@media screen and (max-width: 645px) {
  header .menu-basis .nav-links {
    gap: 15px;
  }
}

header .menu-basis .nav-links li a {
  position: relative;
  text-decoration: none;
  color: #19477A;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 18px;
}

header .menu-basis .nav-links .btn1 {
  position: relative;
  padding-bottom: 5px;
}

header .menu-basis .nav-links .btn1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #19477A;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

header .menu-basis .nav-links .btn1:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

header .menu-basis .nav-links .btn2 {
  background-color: #19477A;
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  border: 1px solid transparent;
}

header .menu-basis .nav-links .btn2:hover {
  background-color: #F6BE6D;
  color: #19477A;
  border: 1px solid #19477A;
}

header .menu-basis.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

header .menu-basis.sp {
  display: none;
  left: 0;
  width: 100%;
}

header .menu-basis.sp ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

header .menu-basis.sp ul li a {
  text-decoration: none;
  font-size: 18px;
}

@media screen and (max-width: 321px) {
  header .menu-basis.sp ul li a {
    font-size: 16px;
  }
}

@media screen and (max-width: 540px) {
  header {
    padding: 10px 20px;
  }
  header.is-open {
    border-bottom: none;
  }
  header .menu-basis.pc {
    display: none;
  }
  header .menu-basis.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.menu-basis.sp {
  display: none;
}

.menu-basis.sp .hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-basis.sp .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #19477A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-basis.sp .hamburger span:nth-child(1) {
  top: 0;
}

.menu-basis.sp .hamburger span:nth-child(2) {
  top: 10px;
}

.menu-basis.sp .hamburger span:nth-child(3) {
  bottom: 0;
}

.menu-basis.sp .sp-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: #FDFAF6;
  display: none;
}

.menu-basis.sp .sp-nav ul {
  width: 90%;
  margin: 40px auto;
  text-align: left;
}

.menu-basis.sp .sp-nav ul li {
  border-top: 1px solid #19477A;
  padding: 20px 10px;
}

@media screen and (max-width: 321px) {
  .menu-basis.sp .sp-nav ul li {
    padding: 15px 10px;
  }
}

.menu-basis.sp .sp-nav ul li:last-child {
  border-bottom: 1px solid #19477A;
}

.menu-basis.sp .sp-nav ul li:hover {
  background-color: #19477A;
}

.menu-basis.sp .sp-nav ul li:hover a {
  color: #fff;
}

.menu-basis.sp .sp-nav ul li a {
  display: block;
  color: #19477A;
  font-weight: 16px;
  font-weight: bold;
}

.menu-basis.sp .sp-nav .sp-nav-contact {
  display: block;
  width: 90%;
  margin: 20px auto 0;
  padding: 14px 0;
  text-align: center;
  background-color: #19477A;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  -webkit-text-decoration-line: none;
  text-decoration-line: none;
  border: 1px solid transparent;
  font-size: 18px;
}

.menu-basis.sp .sp-nav .sp-nav-contact:hover {
  background-color: #F6BE6D;
  color: #19477A;
  border: 1px solid #19477A;
}

@media screen and (max-width: 321px) {
  .menu-basis.sp .sp-nav .sp-nav-contact {
    padding: 12px 0;
    font-size: 16px;
  }
}

.menu-basis.sp.is-open .sp-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-basis.sp.is-open .hamburger span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-basis.sp.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-basis.sp.is-open .hamburger span:nth-child(3) {
  bottom: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* メインビジュアル */
.main-visual {
  background-image: url(../img/main-visual.png);
  background-size: cover;
  background-position: 50%;
  height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  position: relative;
}

.main-visual h1 {
  position: absolute;
  top: 35%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  font-size: 100px;
  color: #19477A;
  line-height: 1.1;
}

.main-visual h1 span {
  background-color: #fff;
  padding: 20px 20px 20px 100px;
  display: inline-block;
}

@media screen and (max-width: 920px) and (min-width: 541px) {
  .main-visual h1 {
    font-size: 9vw;
  }
}

@media screen and (max-width: 540px) {
  .main-visual {
    background-image: url(../img/main-visual-sp.png);
    background-size: cover;
    background-position: 50%;
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    position: relative;
  }
  .main-visual h1 {
    top: 60%;
    gap: 10px;
    font-size: 9vw;
  }
  .main-visual h1 span {
    padding: 10px 10px 10px 40px;
  }
}

/* メインビジュアル */
.button {
  margin: 60px auto 0;
  display: block;
  text-align: center;
  line-height: 1.2;
  max-width: 400px;
  padding: 25px 0;
  background: #19477A;
  border: 1px solid #19477A;
  border-radius: 62px;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button p {
  color: white;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.button .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.button .arrow::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #19477A;
  position: relative;
  left: 3px;
  -webkit-transition: border-left-color 0.3s ease;
  transition: border-left-color 0.3s ease;
}

.button:hover {
  background: #F6BE6D;
}

.button:hover p {
  color: #19477A;
}

@media screen and (max-width: 540px) {
  .button {
    padding: 20px 0;
    margin-top: 50px;
  }
  .button p {
    font-size: 18px;
  }
  .button .arrow {
    width: 25px;
    height: 25px;
  }
  .button .arrow::before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #19477A;
    left: 2px;
  }
}

@media screen and (max-width: 320px) {
  .button {
    padding: 15px 0;
    margin-top: 40px;
  }
  .button p {
    font-size: 16px;
  }
  .button .arrow {
    width: 20px;
    height: 20px;
    right: 12px;
  }
  .button .arrow::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #19477A;
    left: 1px;
  }
}

.about-allieve {
  padding: 120px 0px 80px;
}

.about-allieve .sub-container h2 {
  color: #19477A;
  line-height: 1.2;
  font-weight: bold;
}

.about-allieve .sub-container h2 .text-size1 {
  font-size: 40px;
}

.about-allieve .sub-container .box {
  background-color: white;
  padding: 45px;
  display: block;
  border-radius: 20px;
}

@media screen and (max-width: 625px) {
  .about-allieve .sub-container h2 .text-size1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 540px) {
  .about-allieve {
    padding: 60px 0px;
  }
  .about-allieve .sub-container h2 {
    line-height: 1;
  }
  .about-allieve .sub-container h2 .text-size1 {
    font-size: 20px;
  }
  .about-allieve .sub-container h2 .text-size2 {
    font-size: 27px;
  }
  .about-allieve .sub-container .box {
    padding: 30px 0;
    border-radius: 10px;
  }
}

@media screen and (max-width: 392px) {
  .about-allieve .sub-container h2 {
    line-height: 1;
  }
  .about-allieve .sub-container h2 .text-size1 {
    font-size: 18px;
  }
  .about-allieve .sub-container h2 .text-size2 {
    font-size: 6.5vw;
  }
}

.about-cievo {
  background-image: -webkit-gradient(linear, left top, right top, from(#5EA8D3), to(#3C80B1));
  background-image: linear-gradient(90deg, #5EA8D3, #3C80B1);
  color: white;
  font-weight: bold;
}

.about-cievo .container {
  max-width: 2000px;
  margin: auto;
  background-image: url(../img/cievo-pc.png);
  background-size: 800px;
  background-position: 105% 50%;
  background-repeat: no-repeat;
}

.about-cievo .container .sub-container {
  padding: 80px 0px;
}

.about-cievo .container .sub-container .service-image {
  display: none;
}

.about-cievo .container .sub-container .section-label {
  font-size: 25px;
  margin-bottom: 0px;
}

.about-cievo .container .sub-container h2 {
  margin-bottom: 60px;
}

.about-cievo .container .sub-container h2 .text-size {
  font-size: 80px;
}

.about-cievo .container .sub-container .button {
  margin: 60px 0 0;
  background: #ffffff;
  border: 1px solid white;
}

.about-cievo .container .sub-container .button p {
  color: #19477A;
}

.about-cievo .container .sub-container .button .arrow {
  background: #19477A;
}

.about-cievo .container .sub-container .button .arrow::before {
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #ffffff;
}

.about-cievo .container .sub-container .button:hover {
  background: #F6BE6D;
  border: 1px solid #19477A;
}

.about-cievo .container .sub-container .button:hover p {
  color: #19477A;
}

.about-cievo .container .sub-container .button:hover .arrow {
  background: #ffffff;
}

.about-cievo .container .sub-container .button:hover .arrow::before {
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #19477A;
}

@media screen and (max-width: 1600px) {
  .about-cievo .container {
    max-width: 100%;
    background-size: 750px;
    background-position: 120% 50%;
  }
}

@media screen and (max-width: 1270px) {
  .about-cievo .container {
    background-image: none;
  }
  .about-cievo .container .sub-container .service-image {
    display: block;
    width: 100%;
    margin-top: 50px;
  }
  .about-cievo .container .sub-container .button {
    margin: 60px auto auto;
  }
}

.about-cievo .service-image {
  display: block;
  width: 100%;
}

@media screen and (max-width: 540px) {
  .about-cievo .container .sub-container {
    padding: 60px 0px;
  }
  .about-cievo .container .sub-container .section-label {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .about-cievo .container .sub-container h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .about-cievo .container .sub-container h2 .text-size {
    font-size: 45px;
  }
  .about-cievo .container .sub-container .button {
    margin: auto;
  }
  .about-cievo .container .sub-container .button .arrow::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #ffffff;
  }
  .about-cievo .container .sub-container .button:hover .arrow::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #19477A;
  }
}

.achievements {
  background-color: white;
}

.achievements .sub-container {
  padding: 80px 0;
}

.achievements .sub-container .section-label {
  font-size: 20px;
  color: #19477A;
  font-weight: bold;
  margin-bottom: -5px;
}

.achievements .sub-container .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.achievements .sub-container .flex .box .achievements-img {
  width: 325px;
  height: 185px;
  border-radius: 10px;
  margin-bottom: 20px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.achievements .sub-container .flex .box .achievements-img.salon {
  background-image: url(../img/salon-img.png);
  background-size: 450px;
  background-position: 50%;
}

.achievements .sub-container .flex .box .achievements-img.cosme {
  background-image: url(../img/cosme-img.png);
}

.achievements .sub-container .flex .box .achievements-img.card {
  background-image: url(../img/card-img.png);
  background-size: 600px;
  background-position: 50% 75%;
}

.achievements .sub-container .flex .box .label {
  font-size: 25px;
  font-weight: bold;
  color: #19477A;
  margin-bottom: 5px;
}

@media screen and (max-width: 540px) {
  .achievements .sub-container {
    padding: 60px 0;
  }
  .achievements .sub-container .section-label {
    font-size: 18px;
  }
  .achievements .sub-container h2 {
    font-size: 35px;
  }
}

@media screen and (max-width: 540px) and (max-width: 321px) {
  .achievements .sub-container h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 540px) {
  .achievements .sub-container .flex {
    gap: 40px;
  }
  .achievements .sub-container .flex .box .label {
    font-size: 20px;
    margin-bottom: 3px;
  }
}

@media screen and (max-width: 320px) {
  .achievements .sub-container .flex .box .achievements-img {
    width: 90vw;
    height: 50vw;
  }
}

.ceo-message {
  padding: 80px 0;
}

.ceo-message .container {
  max-width: 2000px;
  margin: auto;
  background-image: url(../img/society.png);
  background-repeat: no-repeat;
  background-size: 800px;
}

.ceo-message .container .sub-container {
  padding: 80px 0;
}

.ceo-message .container .sub-container .item {
  max-width: 600px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}

.ceo-message .container .sub-container .item h2 {
  font-size: 35px;
  color: #19477A;
  margin: 0;
}

@media screen and (max-width: 1720px) {
  .ceo-message .container {
    background-position: -20% 50%;
  }
}

@media screen and (max-width: 1483px) and (min-width: 541px) {
  .ceo-message .container {
    background-image: url(../img/society_light.png);
    background-position: 0%;
  }
}

@media screen and (max-width: 540px) {
  .ceo-message {
    padding: 0;
  }
  .ceo-message .container {
    background-size: 95%;
    background-position: 0% 0%;
  }
  .ceo-message .container .sub-container {
    padding: 70vw 0 60px;
  }
  .ceo-message .container .sub-container .item {
    gap: 35px;
  }
  .ceo-message .container .sub-container .item h2 {
    font-size: 25px;
    line-height: 1.4;
  }
  .ceo-message .container .sub-container .item .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 321px) {
  .ceo-message .container .sub-container {
    padding: 240px 0 60px;
  }
  .ceo-message .container .sub-container .item h2 {
    font-size: 23px;
  }
}

.info-block .container {
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.info-block .container .box {
  background-color: white;
  -webkit-box-shadow: 5px 5px 0px #DCDAD6;
          box-shadow: 5px 5px 0px #DCDAD6;
  padding: 80px 0;
  border: 1px #DCDAD6 solid;
}

.info-block .container .box .sub-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info-block .container .box .sub-container .title .section-label {
  font-weight: bold;
  color: #19477A;
  font-size: 20px;
  margin-bottom: -5px;
}

.info-block .container .box .sub-container .title h2 {
  margin: 0;
  font-size: 50px;
}

.info-block .container .box .sub-container .contents {
  width: 600px;
  margin: 0 0 0 auto;
}

.info-block .container .box .sub-container .contents .flex {
  padding: 20px 0;
  border-top: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

.info-block .container .box .sub-container .contents .flex:last-child {
  border-bottom: 1px solid #000000;
}

.info-block .container .box .sub-container .contents .flex .label {
  width: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info-block .container .box .sub-container .contents .flex .text {
  color: #656565;
}

.info-block .container .box .sub-container .contents .button {
  margin: 30px 0 0;
}

@media screen and (max-width: 1285px) {
  .info-block .container .box {
    padding: 80px 50px;
  }
}

@media screen and (max-width: 1087px) {
  .info-block .container .box .sub-container .title h2 {
    margin-bottom: 40px;
  }
  .info-block .container .box .sub-container .contents {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .info-block .container {
    padding-bottom: 60px;
  }
  .info-block .container .box {
    padding: 55px 0;
  }
  .info-block .container .box .sub-container {
    gap: 30px;
  }
  .info-block .container .box .sub-container .title .section-label {
    font-size: 18px;
  }
  .info-block .container .box .sub-container .title h2 {
    font-size: 35px;
    margin-bottom: 0px;
  }
  .info-block .container .box .sub-container .contents .flex {
    padding: 10px 0;
  }
  .info-block .container .box .sub-container .contents .flex .label {
    width: 100px;
    font-size: 14px;
  }
  .info-block .container .box .sub-container .contents .flex .text {
    font-size: 14px;
  }
  .info-block .container .box .sub-container .contents .button {
    margin: 40px 0 0;
  }
}

@media screen and (max-width: 321px) {
  .info-block .container {
    padding-bottom: 50px;
  }
  .info-block .container .box {
    padding: 40px 0;
  }
  .info-block .container .box .sub-container {
    gap: 20px;
  }
  .info-block .container .box .sub-container .title .section-label {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .info-block .container .box .sub-container .title h2 {
    font-size: 30px;
  }
  .info-block .container .box .sub-container .contents .flex {
    padding: 8px 0;
  }
}

/* フッターメニュー */
footer {
  background-color: #FDF9F6;
  color: #000;
  padding: 20px 0;
  border-top: #000 1px solid;
}

footer p {
  text-align: center;
}

/* フッターメニュー */
.page-visual {
  background-color: #19477A;
  background-image: url(../img/contact-visual.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  margin-top: var(--header-height);
  height: 400px;
}

.page-visual .sub-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: white;
}

.page-visual .sub-container h1 {
  font-size: 50px;
  line-height: 1.3;
}

.page-visual .sub-container p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 40px;
}

@media screen and (max-width: 1270px) {
  .page-visual {
    background-color: #19477A;
    background-image: url(../img/contact-visual-sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    margin-top: var(--header-height);
    height: 90vw;
  }
  .page-visual .sub-container {
    display: block;
    padding: 52vw 0 0 0;
  }
  .page-visual .sub-container h1 {
    font-size: 7.5vw;
    line-height: 1.5;
  }
  .page-visual .sub-container p {
    font-size: 3.5vw;
    font-weight: bold;
    margin-top: 2vw;
  }
}

.example {
  padding: 80px 0;
}

.example .sub-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.example .sub-container .title .section-label {
  font-weight: bold;
  color: #19477A;
  font-size: 20px;
  margin-bottom: -5px;
}

.example .sub-container .title h2 {
  margin: 0;
  font-size: 50px;
}

.example .sub-container .contents {
  width: 600px;
  margin: 0 0 0 auto;
}

.example .sub-container .contents .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.example .sub-container .contents .item .box {
  border: 1px solid #19477A;
  border-radius: 5px;
  width: 288px;
  padding: 25px 0;
}

.example .sub-container .contents .item .box p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 962px) {
  .example .sub-container .title h2 {
    margin-bottom: 40px;
  }
  .example .sub-container .contents {
    width: 100%;
  }
  .example .sub-container .contents .item .box {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .example {
    padding: 60px 0;
  }
  .example .sub-container .title .section-label {
    font-size: 16px;
  }
  .example .sub-container .title h2 {
    margin-bottom: 40px;
    font-size: 40px;
  }
  .example .sub-container .contents .item {
    margin-bottom: 40px;
  }
  .example .sub-container .contents .item .box {
    padding: 20px 0;
  }
  .example .sub-container .contents .item .box p {
    font-size: 14px;
  }
}

.info-block .container .box .sub-container .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.info-block .container .box .sub-container .title h2 {
  font-size: 45px;
  margin-bottom: 20px;
}

.info-block .container .box .sub-container .title .button {
  margin: 30px auto 0 0;
  max-width: 360px;
}

.info-block .container .box .sub-container .contents {
  border: 2px solid #A5B7CB;
  border-radius: 10px;
  padding: 40px;
  width: 600px;
}

.info-block .container .box .sub-container .contents .attention {
  font-weight: bold;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.info-block .container .box .sub-container .contents .attention::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #A5B7CB;
}

@media screen and (max-width: 1210px) {
  .info-block .container .box .sub-container .title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .info-block .container .box .sub-container .title h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .info-block .container .box .sub-container .title .button {
    margin: 30px auto 50px 0;
  }
  .info-block .container .box .sub-container .contents {
    border: 1px solid #A5B7CB;
    width: 100%;
  }
  .info-block .container .box .sub-container .contents .attention::after {
    width: 100%;
    height: 1px;
  }
}

@media screen and (max-width: 540px) {
  .info-block .container .box .sub-container .title h2 {
    font-size: 35px;
  }
  .info-block .container .box .sub-container .title .button {
    margin: 30px auto 20px 0;
  }
  .info-block .container .box .sub-container .contents {
    padding: 30px 20px;
  }
  .info-block .container .box .sub-container .contents p {
    font-size: 14px;
  }
  .info-block .container .box .sub-container .contents .attention {
    font-size: 16px;
  }
}
/*# sourceMappingURL=contact.css.map */