/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins","Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #444444;
  line-height: 1.8;
  letter-spacing: .05em;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins","Noto Sans JP", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2,.section-header-col h2 {
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #191919;
  font-size: clamp(1.875rem, 0.751rem + 2.34vw, 2.75rem);
  min-height: 0vw;/* Safari用 */
}

.section-header-col h2 {
  margin-bottom: 40px;
}

.section-header h2::before,.section-header-col h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 80px);
}

.section-header-col h2::before {
  width: 200px;
  left: calc(50% - 100px);
}

.section-header h2::after,.section-header-col h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header-col h2::after {
  background: #fa5d51;
  width: 80px;
  height: 5px;
  left: calc(50% - 40px);
  bottom: -1px;
}

@media (max-width: 768px) {

.section-header {
  padding-bottom: 10px;
}

.section-header h2 {
  line-height: 1.4;
}
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #013289;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #4154f1;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  background: #0071ac;
  background: -moz-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: -webkit-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: linear-gradient(to right, #0071ac 0%, #00b0c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ac', endColorstr='#00b0c7',GradientType=1 );
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #00b0c7;
  background: -moz-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: -webkit-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: linear-gradient(to right, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0c7', endColorstr='#0071ac',GradientType=1 );
}

.navbar .getstarted i {
  margin-left: 5px;
  font-size: 16px;
  transition: 0.3s;
}

.navbar .getstarted:hover i {
  transform: translateX(5px);
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/top-bg.jpg) fixed center center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero .hero-img {
    text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.563rem, 0.987rem + 1.92vw, 2.625rem);
  min-height: 0vw;/* Safari用 */
  font-weight: 700;
  color: #012970;
  line-height: 1.6;
  padding: 0 20px 0 0;
  letter-spacing: .06em;
}

.hero h2 {
  color: #444444;
  margin: 30px 0 0 0;
  font-size: clamp(0.875rem, 0.773rem + 0.34vw, 1.063rem);
  min-height: 0vw;/* Safari用 */
  line-height: 1.8;
  padding: 0 20px 0 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
.diagnose .box img {
  padding: 10px 20px;
}
}

.hero .btn-get-started {
  margin-top: 25px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  box-shadow: 0px 5px 30px rgba(255, 255, 255, 0.4);
  background: #0071ac;
  background: -moz-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: -webkit-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: linear-gradient(to right, #0071ac 0%, #00b0c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ac', endColorstr='#00b0c7',GradientType=1 );
}


.hero .btn-get-started:hover {
  color: #fff;
  background: #00b0c7;
  background: -moz-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: -webkit-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: linear-gradient(to right, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0c7', endColorstr='#0071ac',GradientType=1 );
}

.hero .btn-get-started span {
  font-family: "Poppins","Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .06em;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateY(5px);
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 0 0 60px 0;
    height: 100vh;
  }

  .hero h1 {
    margin-top: 120px;
  padding: 0;
  text-align: center;
  }

  .hero h2 {
  padding: 0;
  margin: 15px 0 0 0;
  text-align: center;
  }

  .hero .hero-img {
    text-align: center;
    margin: 40px auto 0;
  }
  .hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    margin-top: 140px;
  padding: 0;
  }

  .hero h2 {
  padding: 0;
  margin: 20px 0 0 0;
  }

  .hero .hero-img {
    margin-top: 30px;
  }
  .hero .hero-img img {
    width: 50%;
  }
}

0@media (max-width: 480px) {

  .hero h2 {
  padding: 0;
  margin: 130px 0 0 0;
  }
  .hero .hero-img img {
    width: 70%;
  }
}



/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 0 0 0 0;
}
  .about .logo2 img  {
    width: 80%;
  }

@media (max-width: 991px) {
.about .content {
  padding: 40px 0 0 0;
}
  .about .logo2{
    text-align: center;
  }
  .about .logo2 img{
    width: 25% !important;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
.about .content {
  padding: 30px 0 0 0;
}
  .about .logo2 img {
    width: 30% !important;
    margin: 0 auto;
    text-align: center;
  }
}

.about .ul-box {
    margin: 0;
    padding:0;
}
.about .ul-box ul {
    list-style-type: none;
    margin: 0 0 20px 0;
    padding:0;
}

.about .ul-box ul li {
    background: url(../img/check.svg) left 3px no-repeat;
    background-size: 27px auto;
    color: #1e1e1e;
    padding:0 0 27px 35px;
    color: #1C3267;
    line-height: 1.5;
    font-size: clamp(1.125rem, 0.964rem + 0.33vw, 1.25rem);
    min-height: 0vw;/* Safari用 */
}

.about .ul-box ul li span {
    border-bottom: 3px solid #E47971;
    font-weight: 700;
    padding:0 0 4px 0
}

.about p {
  margin: 0 0 1.2em 0;
  line-height: 1.6;
  font-size: clamp(0.875rem, 0.554rem + 0.67vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

@media (max-width: 991px) {
.about .ul-box ul li {
    padding:0 0 35px 35px;
}
}

@media (max-width: 768px) {
.about .ul-box ul {
    margin: 0 25px !important;
}
.about .ul-box ul li {
    background-size: 25px auto;
    padding:0 0 25px 33px;
    line-height: 1.5;
}
.about .ul-box ul li span {
    border-bottom: 2px solid #E47971;
    font-weight: 700;
    padding:0 0 2px 0;
    line-height: 1.8;
}
.about p {
text-align: center;
}
}

/*--------------------------------------------------------------
# merit01
--------------------------------------------------------------*/

.merit01,.merit02 {
  padding: 60px 0 90px 0;
}

.merit01 h3,.merit02 h3 {
  color: #fff;
  font-weight: 500;
  margin: 0 0 10px 0;
  font-size: clamp(1.875rem, 1.393rem + 1vw, 2.25rem);
  min-height: 0vw;/* Safari用 */
}

.merit01-bg {
  background: #4A7EC1 url(../img/bg-circle.png) repeat-y 15px top; 
}

.merit02-bg {
  background: #43AFB1 url(../img/bg-triangle.png) repeat-y right top; 
}

.merit01 .merit01-box,.merit02 .merit02-box {
  padding: 40px 30px;
  box-shadow: 0px 0 30px rgba(39, 80, 167, 0.85);
  text-align: left;
  transition: 0.3s;
  background: #fff;
  border-radius: 10px;
}

.merit02 .merit02-box {
  box-shadow: 0px 0 30px rgba(23, 122, 103, 0.85);
}

.merit-ul {
    margin: 0;
    padding:0;
}
.merit-ul ul {
    list-style-type: none;
    margin: 0 0 0 1.5em;
    padding:0;
}

.merit-ul ul li {
    color: #1e1e1e;
    padding:0 0 15px 0.6em;
    color: #191919;
    line-height: 1.5;
    text-indent:-0.6em;
  font-size: clamp(1.125rem, 0.483rem + 1.34vw, 1.625rem);
  min-height: 0vw;/* Safari用 */
}
.merit-ul ul li i {
  color: #4485AD;
  padding:0 5px 0 0;
  
}
.merit-ul ul li i.ver2 {
  color: #649BBC;
  padding:0 5px 0 0;
}

@media (max-width: 991px) {
.merit01,.merit02 {
  padding: 60px 0;
}
.merit01 h3,.merit02 h3 {
  margin: 0 0 0 0;
}
.merit-ul ul {
    margin: 40px 0 0 1.0em;
}
.merit-ul ul li {
    padding:0 0 10px 0.6em;
}
}

@media (max-width: 768px) {
.merit01 h3,.merit02 h3 {
  margin: 0 0 20px 0;
}
.merit01 img {
    width: 60% !important;
  }
.merit02 img {
    width: 70% !important;
  }
.merit-ul ul {
    margin: 40px 0 0 1.0em;
}
.merit-ul ul li i {
  padding:0 3px 0 0;
  
}
}



/*--------------------------------------------------------------
# counselor
--------------------------------------------------------------*/

.counselor {
  background: url(../img/counselor-bg.jpg) fixed center center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .counselor {
    background-attachment: scroll;
  }
}

.container-box {
  padding: 40px 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.15);
  text-align: center;
  transition: 0.3s;
  background: #fff;
  border-radius: 15px;
  border: 3px solid #332899;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}

.container-box p {
  font-size: clamp(0.938rem, 0.697rem + 0.5vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
  line-height: 1.8;
}

.counselor span.line {
    border-bottom: 3px solid #E47971;
    font-weight: 500;
  line-height: 2;
    padding:0 0 2px 0
}

.container-box span {
    border-bottom: 3px solid #E47971;
    font-weight: 700;
    padding:0 0 4px 0;
  line-height: 2.2;
  font-size: clamp(1.25rem, 0.929rem + 0.67vw, 1.5rem);
  min-height: 0vw;/* Safari用 */
}

@media (max-width: 991px) {
.container-box p {
  line-height: 1.8;
}
.container-box span {
    padding:0 0 3px 0;
}
}

@media (max-width: 768px) {
.container-box {
  padding: 20px 15px 20px 15px;
}
}


/*--------------------------------------------------------------
# feature
--------------------------------------------------------------*/

section.feature {
  padding: 35px 25px 27px 25px;
  background: url(../img/feature-bg.jpg) fixed center center;
  background-size: cover;
}

@media (max-width: 1024px) {
  .section.feature {
    background-attachment: scroll;
  }
}

.feature h2 {
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-size: clamp(2.25rem, 1.608rem + 1.34vw, 2.75rem);
  min-height: 0vw;/* Safari用 */
}

section.feature02 {
  padding:30px 0 60px 0;
}

.feature02 h3 {
  font-weight: 400;
  color: #191919;
  text-align: center;
  padding-bottom:20px;
  font-size: clamp(1.75rem, 1.429rem + 0.67vw, 2rem);
  min-height: 0vw;/* Safari用 */
}

.feature02 h4 {
  font-weight: 400;
  color: #012970;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 7px;
  line-height: 1.4;
  font-size: clamp(1.125rem, 0.964rem + 0.33vw, 1.25rem);
  min-height: 0vw;/* Safari用 */
}

.feature02 .content {
  background-color: #f1ebf7;
  padding: 40px;
  border-radius: 10px;
}

.feature02 .content p {
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

.faq-list {
  padding: 20px 0;
}

.faq-list ul {
  padding: 0;
  list-style: none;
}

.faq-list li+li {
  margin-top: 15px;
}

.faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  line-height: 26px;
  font-weight: 500;
  padding: 0 35px;
  outline: none;
  cursor: pointer;
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

.faq-list .icon-help {
  font-size: 26px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
  line-height: 1;
}

.faq-list .icon-show,
.faq-list .icon-close {
  font-size: 26px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
}

.faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 35px;
}

.faq-list .icon-show {
  display: none;
}

.faq-list a.collapsed {
  color: #26529e;
  transition: 0.3s;
}

.faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq-list a.collapsed .icon-close {
  display: none;
}

.faq-list span {
    border-bottom: 3px solid #E47971;
    font-weight: 700;
    padding:0 0 4px 0;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .faq-list {
    padding: 0;
  }
}

.price-box {
  margin: 20px 0 0 0;
  padding: 50px 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  text-align: center;
  transition: 0.3s;
  background: #fff;
  border-radius: 10px;
}

img.pic-w {
    width: 95%;
  }

@media (max-width: 991px) {
.feature02 .content {
  margin-top: 25px;
}
img.pic-w{
    width: 70% !important;
    text-align: center;
    margin:15px 0;
  }
}

@media (max-width: 768px) {
section.feature {
  padding: 30px 25px 22px 25px;
}

section.feature02 {
  padding:30px 0 60px 0;
}

.feature02 h3 {
  padding-bottom:10px;
}

.feature02 .content {
  padding: 25px;
}

.faq-list {
  padding: 10px 0;
}

.faq-list li {
  padding: 15px;
}

.faq-list span {
    border-bottom: 2px solid #E47971;
    padding:0 0 3px 0;
  font-size: 18px;
}

img.pic-w {
    width: 80% !important;
  }
  
.price-box {
  margin: 10px 0 0 0;
  padding: 15px;
}
}


/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}
.contact .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  font-size: clamp(1rem, 0.679rem + 0.67vw, 1.25rem);
  min-height: 0vw;/* Safari用 */
}

.contact .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.16);
}

.contact .section-header {
  padding-bottom: 10px;
}

.contact .btn-contact {
  margin-top: 10px;
  line-height: 1;
  padding: 30px 80px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  box-shadow: 0px 5px 30px rgba(255, 255, 255, 0.4);
  background: #0071ac;
  background: -moz-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: -webkit-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: linear-gradient(to right, #0071ac 0%, #00b0c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ac', endColorstr='#00b0c7',GradientType=1 );
}


.contact .btn-contact:hover {
  color: #fff;
  background: #00b0c7;
  background: -moz-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: -webkit-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: linear-gradient(to right, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0c7', endColorstr='#0071ac',GradientType=1 );
}

.contact .btn-contact span {
  font-family: "Poppins","Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: clamp(1.25rem, 0.447rem + 1.67vw, 1.875rem);
  min-height: 0vw;/* Safari用 */
}

#free-contact .btn-contact span {
  font-family: "Poppins","Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: clamp(1rem, -0.124rem + 2.34vw, 1.875rem) !important;
  min-height: 0vw;/* Safari用 */
}

.contact .btn-contact i {
  margin-left: 5px;
  transition: 0.3s;
  font-size: clamp(1.5rem, 0.858rem + 1.34vw, 2rem);
  min-height: 0vw;/* Safari用 */
}

.contact .btn-contact:hover i {
  transform: translateX(5px);
}

.contact span.line {
    border-bottom: 3px solid #E47971;
    font-weight: 700;
  line-height: 2;
    padding:0 0 2px 0
}

@media (max-width: 768px) {
.contact .box {
  padding: 30px 20px;
  margin: 0 15px;
}
.contact .box p {
  font-size: 14px;
  text-align: left;
}
.contact .btn-contact {
  padding: 25px 0;
  border-radius: 50px;
  width: 95% !important;
}
.contact .btn-contact span{
  font-weight: 500;
}

}


/*--------------------------------------------------------------
# operation
--------------------------------------------------------------*/

.operation {
  background: #e4eeef; 
}

.operation .administrator {
  margin: 0 auto 20px auto;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 20px rgba(120, 153, 158, 0.35);
  max-width: 400px
}

.operation .administrator .administrator-img {
  position: relative;
  overflow: hidden;
}

.operation .administrator .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.operation .administrator .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.operation .administrator .social a i {
  line-height: 0;
}

.operation .administrator .social a:hover {
  color: #3498db;
}

.operation .administrator .social i {
  font-size: 18px;
  margin: 0 2px;
}

.operation .administrator .administrator-info {
  padding: 15px;
}

.operation h4 {
  font-weight: 500;
  padding: 0;
  margin: 40px 0 10px 0;
  font-size: 18px;
  color: #222222;
}

.operation .administrator .administrator-info h4 {
  font-size: 20px;
  margin: 5px 0;
  padding: 0;
  border-bottom: none;
}

.operation .administrator .administrator-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #012970;
  margin-bottom: 5px;
}

.operation .administrator:hover .social {
  opacity: 1;
}

.operation .content {
  padding: 0 0 0 20px;
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

.operation ul {
    list-style-type: none;
    margin: 0 0 30px 0;
    padding:0;
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

.operation ul li {
    padding:0 0 7px 0.6em;
    line-height: 1.5;
    text-indent:-0.6em;
}
.operation ul li i {
  color: #47b2e4;
  padding:0 5px 5px 0;
  
}
.operation address {
    margin-bottom: 20px;
    font-style: normal;
    line-height:1.8;
  font-weight: 500;
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

@media (max-width: 991px) {
.operation .content {
  margin-top: 20px;
  padding: 0 10px;
}
}

@media (max-width: 768px) {

.operation .administrator {
  max-width: 320px
}

.operation address {
    margin-bottom: 10px;
}
}


.operation table{
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.operation .tb01 th,
.operation .tb01 td{
  padding: 10px 15px;
  border: 1px solid #83aeb2;
  text-align:left;
  box-sizing:border-box;
}

.operation .tb01 th {
  background: #89babf;
  color: #fff;
  width: 25%;
  font-weight: 500;
}

.operation .tb01 ul {
    list-style-type: none;
    margin: 0 0 10px 0;
    padding:0;
  font-size: 16px;
}

.operation .tb01 ul li {
    padding:0 0 0.3em 1em;
    text-indent: -1em;
    
}

@media (max-width: 991px) {
.operation .tb01 th {
  color: #fff;
  width: 27%;
}
}

@media screen and (max-width: 756px) {
.operation table{
  border-collapse: collapse;
  width: 100%;
  line-height: 1.8;
}
.operation .tb01 {
    width: 100%;
  }
.operation table.tb01 th,
.operation table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  padding: 7px 15px;
  }
.operation table.tb01 th {
  text-align:center;
  padding: 7px 15px;
}
.operation .tb01 tr:last-child{
    border-bottom: solid 1px #83aeb2;
  }
}












/*--------------------------------------------------------------
# diagnose
--------------------------------------------------------------*/
.diagnose {
  background: #fff;
  padding: 60px 0 50px 0;
  text-align: center;
}

.diagnose .box {
  padding: 25px 20px 20px 20px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  margin: 0 5px;
}

.diagnose .box img {
  padding: 10px 5px 20px 5px;
  transition: 0.5s;
  transform: scale(1);
}

.diagnose .box h3 {
  line-height: 1.5;
  color: #007989;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: clamp(1.125rem, 0.804rem + 0.67vw, 1.375rem);
  min-height: 0vw;/* Safari用 */
}

.diagnose .box p {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0 !important;
}

.diagnose a .box h3 {
  color: #1ba3df;
  text-decoration: none !important;
}

.diagnose a .box p {
  color: #191919;
  text-decoration: none !important;
}

.diagnose a .bg01,.diagnose a:hover .bg01 {
  box-shadow: 0px 0 10px rgba(236, 191, 190, 1);
}

.diagnose a:hover .bg01 {
  background: #f2d1d0;
}

.diagnose a .bg02,.diagnose a:hover .bg02 {
  box-shadow: 0px 0 10px rgba(210, 201, 160, 1);
}

.diagnose a:hover .bg02 {
  background: #dfd8ba;
}

.diagnose a .bg03,.diagnose a:hover .bg03 {
  box-shadow: 0px 0 10px rgba(189, 231, 195, 1);
}

.diagnose a:hover .bg03 {
  background: #cfeed4;
}

.diagnose a .bg04,.diagnose a:hover .bg04 {
  box-shadow: 0px 0 10px rgba(182, 224, 220, 1);
}

.diagnose a:hover .bg04 {
  background: #cbe9e6;
}

.diagnose a .bg05,.diagnose a:hover .bg05 {
  box-shadow: 0px 0 10px rgba(194, 190, 212, 1);
}

.diagnose a:hover .bg05 {
  background: #d2cfdf;
}

.diagnose a:hover .box img {
  transform: scale(1.1);
}


.diagnose a:hover .box h3 {
  color: #fff;
  text-decoration: none !important;
}

.diagnose a:hover .box p {
  color: #fff;
  text-decoration: underline !important;
}

.diagnose .getstarted,
.diagnose .getstarted:focus {
  padding: 10px 40px;
  border-radius: 50px;
  color: #fff;
  background: #0071ac;
  background: -moz-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: -webkit-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: linear-gradient(to right, #0071ac 0%, #00b0c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ac', endColorstr='#00b0c7',GradientType=1 );
}

.diagnose .getstarted:hover,
.diagnose .getstarted:focus:hover {
  color: #fff;
  background: #00b0c7;
  background: -moz-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: -webkit-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: linear-gradient(to right, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0c7', endColorstr='#0071ac',GradientType=1 );
}

.diagnose .getstarted i {
  margin-left: 5px;
  font-size: 16px;
  transition: 0.3s;
}

.diagnose .getstarted:hover i {
  transform: translateX(5px);
}

@media (min-width: 992px) and (max-width: 1199px) {
.diagnose .box img {
  padding: 10px 20px;
}
}

@media (max-width: 768px) {
.diagnose .box {
  padding: 15px 20px;
  margin: 0;
}
.diagnose .box img {
  padding: 20px;
}
.diagnose .box h3 {
  margin-top: 5px;
  margin-bottom: 15px;
}
}

@media (max-width: 575px) {
.diagnose .box {
  padding: 15px 20px;
  margin: 0 25px;
  text-align: center;
}
.diagnose .box p {
  font-size: 16px;
  text-align: center;
}
}


/*--------------------------------------------------------------
# counseling Section
--------------------------------------------------------------*/
.counseling {
  background-color: #f3f5fa;
}

.counseling .content h2 {
  font-weight: 500;
  font-size: clamp(1.5rem, 0.858rem + 1.34vw, 2rem);
  min-height: 0vw;/* Safari用 */
}

.counseling .content img {
    margin: 30px 0 0 0;
  }

.counseling .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.counseling .accordion-item:last-child {
  margin-bottom: 0;
}

.counseling .accordion-collapse {
  border: 0;
}

.counseling .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 500;
  border: 0;
  font-size: 22px;
  line-height: 22px;
  color: #26529e;
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 8px !important;
}

.counseling .accordion-button:hover {
  color: #47b2e4;
}

.counseling .accordion-button .num {
  padding-right: 5px;
  font-size: clamp(1rem, 0.679rem + 0.67vw, 1.25rem);
  min-height: 0vw;/* Safari用 */
  line-height: 0;
  color: #47b2e4;
}

.counseling .accordion-button:not(.collapsed) {
  color: #47b2e4;
  border-bottom: 0;
  box-shadow: none;
}

.counseling .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.counseling .accordion-body {
  padding: 0 40px 15px 44px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.counseling .accordion-body p {
  font-size: clamp(0.875rem, 0.714rem + 0.33vw, 1rem);
  min-height: 0vw;/* Safari用 */
}

@media (max-width: 768px) {

.counseling .content img {
    width: 45% !important;
    margin: 10px 0 5px 0;
    text-align: center;
  }

.counseling .accordion-button {
  padding: 20px 50px 20px 20px;
  font-size: 18px;
  line-height: 18px;
}

.counseling .accordion-body {
  padding: 0 20px 15px 20px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

}


/*--------------------------------------------------------------
# physician Section
--------------------------------------------------------------*/

.physician {
  background: linear-gradient(rgba(28, 50, 103, 0.85), rgba(28, 50, 103, 0.75)), url("../img/physician-bg.jpg") fixed center center;
  background-size: cover;
  padding: 150px 0;
    text-align: center;
}

.physician h2 {
  color: #fff;
  font-weight: 500;
  margin: 0 0 40px 0;
  font-size: clamp(1.75rem, 1.108rem + 1.34vw, 2.25rem);
  min-height: 0vw;/* Safari用 */
}

.physician h2 span {
  border-bottom: 2px solid #00ffff;
  line-height: 2;
  padding: 0 0 0.2em 0;
}

.physician p {
  color: #fff;
  line-height: 2;
  font-size: clamp(1rem, 0.679rem + 0.67vw, 1.25rem);
  min-height: 0vw;/* Safari用 */
}

@media (max-width: 1024px) {
  .physician {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
.physician {
 padding: 80px 15px;
}
.physician h2 {
  margin: 0 0 30px 0;
}
.physician h2 span {
  line-height: 2;
  padding: 0 0 2px 0;
}
.physician p {
  line-height: 1.8;
}
}


/*--------------------------------------------------------------
# counseling02 Section
--------------------------------------------------------------*/

.counseling02 {
  background: linear-gradient(rgba(28, 50, 103, 0.85), rgba(28, 50, 103, 0.8)), url("../img/counseling-bg.jpg") fixed center center;
  background-size: cover;
  padding: 100px 0;
}

.counseling02 h2 {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0 0 20px 0;
  font-size: clamp(1.75rem, 1.108rem + 1.34vw, 2.25rem);
  min-height: 0vw;/* Safari用 */
    text-align: center;
}

.counseling02 h2 span {
  border-bottom: 3px solid #00ffff;
  line-height: 1.8;
  padding: 0 0 0.2em 0;
}

.counseling02 h3 {
  color: #fff;
  font-weight: 500;
  margin: 50px 0 12px 0;
  letter-spacing: 1px;
  font-size: clamp(1.25rem, 0.979rem + 0.9vw, 1.75rem);
  min-height: 0vw;/* Safari用 */
}

.counseling02 h3 span {
  border-bottom: 2px solid #39b2ff;
  line-height: 1.8;
  padding: 0 0 0.2em 0;
}

.counseling02 .l-red {
  border-bottom: 2px solid #ff6d7b;
  line-height: 1.8;
  padding: 0 0 0.2em 0;
}

.counseling02 h2 {
  color: #fff;
  font-weight: 500;
  margin: 0 0 40px 0;
  font-size: clamp(1.75rem, 1.108rem + 1.34vw, 2.25rem);
  min-height: 0vw;/* Safari用 */
    text-align: center;
}

.counseling02 p {
  color: #f0f5ff;
  line-height: 1.6;
  font-size: clamp(0.875rem, 0.604rem + 0.9vw, 1.375rem);
  min-height: 0vw;/* Safari用 */
}

@media (max-width: 1024px) {
.counseling02 {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
.counseling02 {
 padding: 60px 10px;
}
.counseling02 h2 {
  margin: 0 0 30px 0;
}
.counseling02 h2 span {
  line-height: 2;
  padding: 0 0 2px 0;
}
.counseling02 p {
  line-height: 1.8;
}
}




/*--------------------------------------------------------------
# service_tab Section
--------------------------------------------------------------*/

.service_tab {
  z-index: 5;
  background-color: #f0fdfe;
}

.counselor_tab {
  z-index: 6 !important;
  background-color: #fff !important;
  text-align: left !important;
}

.counselor_tab .shadow {
    box-shadow:0 .2rem 0.8rem rgba(52, 35, 157, .35) !important;
    
}

.service_tab h2 {
  font-weight: 500;
  font-size: clamp(1.5rem, 0.697rem + 1.67vw, 2.125rem);
  min-height: 0vw;/* Safari用 */
}

.service_tab h3,.counselor_tab h3 {
  font-weight: 500;
  color: #03beea;
  font-size: clamp(1.5rem, 1.018rem + 1vw, 1.875rem);
  min-height: 0vw;/* Safari用 */
}
.counselor_tab h3 {
  color: #7033ca;
  text-align: center !important;
}
.service_tab h4 {
  font-size: clamp(1.25rem, 0.929rem + 0.67vw, 1.5rem);
  min-height: 0vw;/* Safari用 */
}
.service_tab h5 {
  font-size: clamp(1.125rem, 0.964rem + 0.33vw, 1.25rem);
  min-height: 0vw;/* Safari用 */
}

.service_tab p{
  font-size: clamp(0.875rem, 0.714rem + 0.33vw, 1rem);
  min-height: 0vw;/* Safari用 */
}

.service_tab .icon {
  padding-right: 7px;
  font-size: 18px;
  line-height: 0;
  color: #03beea;
}

.service_tab .payment_info_tab .active {
  color: #fff !important;
}
.service_tab .content-block,
.service_tab .image-block {
  opacity: 0;
  transition: 0.5s;
  position: relative;
}
.service_tab .content-block {
  left: -25px;
  margin-right: 40px;
}
.service_tab .image-block {
  right: -25px;
}
.service_tab .show .content-block,
.service_tab .show .image-block {
  opacity: 1;
}
.service_tab .show .content-block {
  left: 0;
}
.service_tab .show .image-block {
  right: 0;
}
.service_tab > .container {
  position: relative;
  z-index: 10;
}
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.service_tab .btn,.counselor_tab .btn {
  font-size: 16px;
  text-transform: capitalize;
  padding: 13px 28px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: 0.2s ease;
  overflow: hidden;
  border: 1px solid #7ed4e8;
  background-color: #fff;
}

.counselor_tab .btn {
  border: 1px solid #7a5ac4;
}

.service_tab .btn::after {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background-color: #03beea;
  top: 100%;
  left: 60%;
  z-index: -1;
  border-radius: 50%;
  transition: 0.3s;
  transform: rotate(25deg);
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary:focus, .btn-outline-primary.focus {
  background: #addfeb;
  color: #fff;
}
.btn-outline-primary.w-100:hover, .btn-outline-primary.d-block:hover, .btn-outline-primary.d-flex:hover, .btn-outline-primary.effect-none:hover {
  background: #addfeb;
}

.counselor_tab .btn-outline-primary:hover, .counselor_tab .btn-outline-primary:active, .counselor_tab .btn-outline-primary.active, .counselor_tab .btn-outline-primary:focus, .counselor_tab .btn-outline-primary.focus {
  background: #c69ff7;
  color: #fff;
}
.counselor_tab .btn-outline-primary.w-100:hover, .counselor_tab .btn-outline-primary.d-block:hover, .counselor_tab .btn-outline-primary.d-flex:hover, .counselor_tab .btn-outline-primary.effect-none:hover {
  background: #c69ff7;
}

.nav-pills .nav-link:hover {
  color: #fff !important;
  text-decoration: underline;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #03beea;
}

.counselor_tab .nav-pills .nav-link.active,.counselor_tab .nav-pills .show > .nav-link {
  background-color: #9775e4;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.text-dark {
  color: #006691 !important;
}

.counselor_tab .text-dark {
  color: #962ce7 !important;
}


@media (max-width: 768px) {
  .service_tab {
    overflow: hidden;
  }
.service_tab h3 {
  text-align: center;
}
.service_tab .content-block {
  margin-right: 0;
}
}

.flow-item {
  padding: 0 0 40px 15px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}

.flow-item h4 {
  line-height: 1.2;
  font-weight: 600;
  color: #0141a1;
  margin-bottom: 5px;
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

.flow-item p {
  font-size: 16px;
  margin-bottom: 0;
}

.flow-item ul {
  padding-left: 20px;
  margin-bottom: 0;
  font-size: clamp(0.875rem, 0.714rem + 0.33vw, 1rem);
  min-height: 0vw;/* Safari用 */
}

.flow-item ul li {
  padding-top: 7px;
  line-height: 1.5;
}

.flow-item ul li::marker {
  color: #7ec7fc;
}

.flow-item:last-child {
  padding-bottom: 0;
}

.flow-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #74a1d7;
  border: 2px solid #0563bb;
}


@media (max-width: 768px) {
.service_tab .p-5 {
    padding:2rem !important
}
.service_tab .btn,.counselor_tab .btn {
  font-size: 15px;
  padding: 10px 15px;
}
.counselor_tab .shadow {
    margin-bottom: 15px !important;
    
}
}

.campaign {
  background: url("../img/campaign-bg.jpg") no-repeat top center;
  background-size: 100% 100%;
  padding: 100px 0;
  text-align: center;
}

.campaign h2 {
  color: #7f3ec1;
  font-size: 42px;
  font-weight: 500;
  margin: 0 0 40px 0;
  text-shadow: 1px 1px 1px rgba(255,255,255,1);
  font-size: clamp(1.875rem, 0.912rem + 2.01vw, 2.625rem);
  min-height: 0vw;/* Safari用 */
}

.campaign p {
  line-height: 2;
  text-shadow: 1px 1px 1px rgba(255,255,255,1);
  font-size: clamp(1rem, 0.358rem + 1.34vw, 1.5rem);
  min-height: 0vw;/* Safari用 */
}

.campaign p span {
  border-bottom: 3px solid #ec5781;
  line-height: 2;
  font-weight: 700;
  padding: 0 0 0.15em 0;
}

.campaign-pic {
  text-align: right;
  margin: 30px 40px 0 0;
}

.campaign .content {
  text-align: left;
  margin: 30px 0 0 0;
}

.campaign ul {
    list-style-type: none;
    margin: 0 0 0 0;
    padding:0;
    font-size: clamp(1.125rem, 0.964rem + 0.33vw, 1.25rem);
    min-height: 0vw;/* Safari用 */
}
.campaign ul li {
    padding:0 0 10px 0.6em;
    line-height: 1.5;
    text-indent:-0.6em;
    font-weight: 500;
}
.campaign ul li i {
  color: #ec5781;
  padding:0 5px 5px 0;
}

.campaign .btn-contact {
  margin-top: 10px;
  line-height: 1;
  padding: 30px 80px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  box-shadow: 0px 5px 30px rgba(255, 255, 255, 0.4);
  background: #0071ac;
  background: -moz-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: -webkit-linear-gradient(left, #0071ac 0%, #00b0c7 100%);
  background: linear-gradient(to right, #0071ac 0%, #00b0c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071ac', endColorstr='#00b0c7',GradientType=1 );
}


.campaign .btn-contact:hover {
  color: #fff;
  background: #00b0c7;
  background: -moz-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: -webkit-linear-gradient(left, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  background: linear-gradient(to right, #00b0c7 0%, #0071ac 100%, #0071ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0c7', endColorstr='#0071ac',GradientType=1 );
}

.campaign .btn-contact span {
  font-family: "Poppins","Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: clamp(1.25rem, 0.447rem + 1.67vw, 1.875rem);
  min-height: 0vw;/* Safari用 */
}

.campaign .btn-contact i {
  margin-left: 5px;
  transition: 0.3s;
  font-size: clamp(1.5rem, 0.858rem + 1.34vw, 2rem);
  min-height: 0vw;/* Safari用 */
}

.campaign .btn-contact:hover i {
  transform: translateX(5px);
}


@media (max-width: 1024px) {
  .campaign {
    background-attachment: scroll;
  }
}

@media (max-width: 991px) {
.campaign-pic {
  text-align: center;
  margin: 10px 0 0 0;
}
.campaign .content {
  text-align: left;
  margin: 30px auto 0 auto;
  width: 280px;
}
}

@media (max-width: 768px) {
.campaign {
 padding: 60px 0;
  background-size: 150% 100%;
}
.campaign h2 {
  margin: 0 0 20px 0;
}
.campaign p span {
  line-height: 2;
  padding: 0 0 1px 0;
  border-bottom: 2px solid #ec5781;
}
.campaign p {
  line-height: 1.8;
}
.campaign ul li {
    padding:0 0 8px 0.6em;
    line-height: 1.5;
}

.campaign .btn-contact {
  padding: 25px 0;
  border-radius: 50px;
  width: 95% !important;
}
.campaign.btn-contact span{
  font-weight: 500;
}

}


/*--------------------------------------------------------------
# simulation
--------------------------------------------------------------*/


.simulation h3 {
  font-weight: 700;
  color: #012970;
  margin: 0 0 10px 0;
  line-height: 2;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  min-height: 0vw;/* Safari用 */
  margin: 0 0 20px 0;
}

.simulation h3 span {
  border-bottom: 2px solid #ec5781;
  padding: 0 0 0.1em 0;
}

.simulation .content p {
  font-size: clamp(0.875rem, 0.554rem + 0.67vw, 1.125rem);
  min-height: 0vw;/* Safari用 */
}

.simulation .content {
  margin: 0 0 30px 0;
}

#simulation .point {
  width: 100%;
  background: #fff;
}

#simulation .point i.ver01 {
  font-size: 22px;
  line-height: 20px;
  color: #38b6a8;
  float: left;
  width: 44px;
  height: 44px;
  background: #e4faf8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

#simulation .point h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #109f8f;
}

#simulation .point p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
}

#simulation .point .point-in {
  margin-bottom: 30px;
}

#simulation .point .point-in-bg {
  margin:15px 0 0 60px;
  background: #e4faf8;
  padding: 20px;
  border-radius: 10px;
}

#simulation .point .point-in:hover i.ver01 {
  background: #38b6a8;
  color: #fff;
}

#simulation .point .point-in-bg p {
  padding: 0;
  margin-bottom: 0;
}

.simulation img  {
    width: 80%;
    text-align: left;
  }
  
.btn-point {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 0;
  width: 100%;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #1960b3;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #1960b3;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  margin-top:20px;
}

.btn-point:hover {
  background: #1960b3;
  color: #fff;
  text-decoration: none;
} 

.btn-point i.ver02 {
  margin-left: 5px;
  transition: 0.3s;
}




@media (max-width: 992px) {

.simulation h3 {
    text-align: center;
}
.simulation img  {
    width: 50% !important;
    margin: 0 auto 20px auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
.simulation img  {
    width: 60% !important;
    margin: 0 auto 20px auto;
    text-align: center;
  }
.simulation .content {
  margin: 0 10px;
}
#simulation .point .point-in {
  margin: 0 10px 30px 10px;
}
  
.btn-point {
  line-height: 1.5;
  font-size: 16px;
}

.btn-point i.ver02 {
}

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #012970;
}



.pc-look,.pc-look02 { display: block !important; }
.sp-look,.sp-look02 { display: none !important; }

@media only screen and (max-width: 991px) {
.pc-look { display: none !important; }
.sp-look { display: block !important; }
}

@media only screen and (max-width: 768px) {
.pc-look02 { display: none !important; }
.sp-look02 { display: block !important; }
}


@media only screen and (min-width:1200px) {
.pc-look03 { display: block !important; }
.sp-look03 { display: none !important; }
}

@media screen and (min-width:992px) and ( max-width:1199px) {
.pc-look03 { display: none !important; }
.sp-look03 { display: block !important; }
}

@media screen and (min-width:769px) and ( max-width:991px) {
.pc-look03 { display: none !important; }
.sp-look03 { display: none !important; }
}

@media only screen and (max-width: 768px) {
.pc-look03 { display: none !important; }
.sp-look03 { display: block !important; }
}




/* ----------------------------------------------------------------------
 text-align
---------------------------------------------------------------------- */
.align1{text-align:center !important;}
.align2{text-align:right !important;}
.align3{text-align:left !important;}

/* ----------------------------------------------------------------------
 font-size
---------------------------------------------------------------------- */
.text70{font-size:70% !important;}
.text80{font-size:80% !important;}
.text90{font-size:90% !important;}
.text100{font-size:100% !important;}
.text110{font-size:110% !important;}
.text120{font-size:120% !important;}
.text130{font-size:130% !important;}
.text140{font-size:140% !important;}
.text150{font-size:150% !important;}


/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.m0{margin:0 !important;} 
.mt0{margin-top:0 !important;}
.mr0{margin-right:0 !important;}
.mb0{margin-bottom:0 !important;}
.ml0{margin-left:0 !important;}

.m5{margin:5px !important;}
.mt5{margin-top:5px !important;}
.mr5{margin-right:5px !important;}
.mb5{margin-bottom:5px !important;}
.ml5{margin-left:5px !important;}

.m10{margin:10px !important;}
.mt10{margin-top:10px !important;}
.mr10{margin-right:10px !important;}
.mb10{margin-bottom:10px !important;}
.ml10{margin-left:10px !important;}

.m15{margin:15px !important;}
.mt15{margin-top:15px !important;}
.mr15{margin-right:15px !important;}
.mb15{margin-bottom:15px !important;}
.ml15{margin-left:15px !important;}

.m20{margin:20px !important;}
.mt20{margin-top:20px !important;}
.mr20{margin-right:20px !important;}
.mb20{margin-bottom:20px !important;}
.ml20{margin-left:20px !important;}

.m25{margin:25px !important;}
.mt25{margin-top:25px !important;}
.mr25{margin-right:25px !important;}
.mb25{margin-bottom:25px !important;}
.ml25{margin-left:25px !important;}

.m30{margin:30px !important;}
.mt30{margin-top:30px !important;}
.mr30{margin-right:30px !important;}
.mb30{margin-bottom:30px !important;}
.ml30{margin-left:30px !important;}

.m35{margin:35px !important;}
.mt35{margin-top:35px !important;}
.mr35{margin-right:35px !important;}
.mb35{margin-bottom:35px !important;}
.ml35{margin-left:35px !important;}

.m40{margin:40px !important;}
.mt40{margin-top:40px !important;}
.mr40{margin-right:40px !important;}
.mb40{margin-bottom:40px !important;}
.ml40{margin-left:40px !important;}

.m45{margin:45px !important;}
.mt45{margin-top:45px !important;}
.mr45{margin-right:45px !important;}
.mb45{margin-bottom:45px !important;}
.ml45{margin-left:45px !important;}

.m50{margin:50px !important;}
.mt50{margin-top:50px !important;}
.mr50{margin-right:50px !important;}
.mb50{margin-bottom:50px !important;}
.ml50{margin-left:50px !important;}

.m55{margin:55px !important;}
.mt55{margin-top:55px !important;}
.mr55{margin-right:55px !important;}
.mb55{margin-bottom:55px !important;}
.ml55{margin-left:55px !important;}

.m60{margin:60px !important;}
.mt60{margin-top:60px !important;}
.mr60{margin-right:60px !important;}
.mb60{margin-bottom:60px !important;}
.ml60{margin-left:60px !important;}

.m65{margin:65px !important;}
.mt65{margin-top:65px !important;}
.mr65{margin-right:65px !important;}
.mb65{margin-bottom:65px !important;}
.ml65{margin-left:65px !important;}

.m70{margin:70px !important;}
.mr70{margin-right:70px !important;}
.mb70{margin-bottom:70px !important;}
.ml70{margin-left:70px !important;}

.m75{margin:75px !important;}
.mt75{margin-top:75px !important;}
.mr75{margin-right:75px !important;}
.mb75{margin-bottom:75px !important;}
.ml75{margin-left:75px !important;}

.m80{margin:80px !important;}
.mt80{margin-top:80px !important;}
.mr80{margin-right:80px !important;}
.mb80{margin-bottom:80px !important;}
.ml80{margin-left:80px !important;}