@charset "UTF-8";
/* CSS Document */

/* fade
-----------------------------------------------*/
#main .img,#main h2,section .img{
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1.0s cubic-bezier(.210, .60, .350, 1),opacity 1.0s cubic-bezier(.210, .60, .350, 1);
}
#main.fade .img,#main.fade h2,section.fade .img{
  transform: translateY(0);
  opacity: 1;
}
#main.fade h2{
  transition-delay: .3s;
}


/* main
-----------------------------------------------*/
#main .inner {
  max-width: 1280px;
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 0 40px;
  position: relative;
}
#main .txt li {
  position: relative;
}
#main .txt li a {
  display: block;
  border-bottom: 1px solid #333;
  padding: 20px 0 20px 10px;
  opacity: 1;
  transition: background .2s;
}
#main .txt li:hover a {
  background: #e8e9ef;
}
#main .txt strong,
#main .txt h3 {
  padding-left: 50px;
  font-size: 24px;
  font-weight: normal;
  position: relative;
  color: #333;
  display: block;
}
#main .txt strong::before,
#main .txt h3::before {
  position: absolute;
  display: block;
  content: "";
  background: url("/img/specialist/common/icon-arrow.svg")no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  left: 5px;
  top: 10px;
}
#main .txt em,
#main .txt p {
  font-style: normal;
  padding-left: 50px;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  color: #333;
  display: block;
}
#main .txt li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  display: none;
  padding-bottom: 40px;
  background: #e8e9ef;
}
#main .txt li .sub-menu li{
  padding: 18px 20px 0;
}
#main .txt li .sub-menu a {
  position: relative;
  display: block;
  padding: 0 0 18px 40px;
  font-size: 18px;
  transition: opacity .2s;
  line-height: 1.5;
}
#main .txt li .sub-menu a:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
  border-bottom: 1px solid #333;
}
#main .txt li .sub-menu a:hover {
  opacity: .7;
}
#main .img-area .img {
  margin-left: -350px;
  border-radius: 100px;
  max-width: 988px;
  overflow: hidden;
}
#main .img-area h2 {
  font-size: 32px;
  color: #165099;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
#main .img-area h2:lang(en) {
  top: -70px;
}
@media only screen and (max-width: 1340px) {
  #main .img-area h2 {
    width: 100%;
  }
}
@media only screen and (max-width: 1140px) {
  #main .img-area h2 {
    top: -30px;
  }
}
@media only screen and (max-width: 980px) {
  #main .img-area h2 {
    top: -80px;
  }
}
@media only screen and (max-width: 767px) {
  #main .inner {
    flex-wrap: wrap;
    padding: 0;
    margin-top: 0;
    gap: 40px;
    justify-content: center;
    z-index: 2;
  }
  #main .img-area {
    width: 100%;
  }
  #main .img-area .img {
    margin-left: 0;
    border-radius: 0;
    max-width: 100%;
  }
  #main .img-area h2 {
    font-size: 28px;
    position: sticky;
    transform: none;
    margin-top: 20px;
  }
  #main .img-area h2,
  #main .txt {
    padding: 0 20px;
  }
  #main .txt li .sub-menu li{
    padding: 0 20px 0;
  }
  #main .txt li > a:has(+ .sub-menu) {
    pointer-events: none;
}
  #main .txt li > a {
  }
  #main .txt strong,
  #main .txt h3 {
    font-size: 20px;
    padding-left: 40px;
  }
  #main .txt strong::before,
  #main .txt h3::before {
    width: 25px;
    height: 25px;
  }
  #main .txt em,
  #main .txt p {
    padding-left: 40px;
  }
  #main .txt li .sub-menu {
    position: relative;
    top: 0;
    border-bottom: 1px solid #333;
  }
  #main .txt li .sub-menu a {
    padding: 13px 20px 13px 20px;
    font-size: 14px;
  }
}


/* section
-----------------------------------------------*/
section{
  margin-top: 160px;
  overflow-x: clip;
}
section .inner{
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
section .ttl h2{
	font-family: 'Oswald', sans-serif;
  font-size: 100px;
  color: #026faf;
  position: relative;
  font-weight: normal;
  line-height: 1;
  padding-bottom: 30px;
}
section .ttl h2::before{
  position: absolute;
  display: block;
  content: "";
  width: 151px;
  height: 2px;
  background: #ff5e00;
  bottom: 0;
  left: -50px;
}
section .ttl h3{
  font-size: 28px;
  font-weight: normal;
  margin-top: 40px;
}
section .ttl p{
  font-size: 14px;
}
section .btn {
  margin-top: 45px;
}
section .btn a{
  position: relative;
  font-size: 20px;
  padding-left: 45px;
}
section .btn a::before{
  position: absolute;
  display: block;
  content: "";
  background: url("/img/specialist/common/icon-arrow.svg")no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
section{
  margin-top: 100px;
}
section .inner{
  padding: 0 20px;
}
section .ttl h2{
  font-size: 50px;
  padding-bottom: 20px;
}
  section .ttl h3 {
    font-size: 24px;
    margin-top: 20px;
}
section .txt {
        max-width: 450px;
  width: 100%;
}
section .btn {
  margin-top: 20px;
}
section .btn a{
  font-size: 18px;
  padding-left: 35px;
}
section .btn a::before{
  width: 25px;
  height: 25px;
}

}


/* notice
-----------------------------------------------*/
#notice {
  margin-top: 0;
  padding: 80px 40px;
	
}
#notice .inner {
  max-width: 1060px;
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  overflow: hidden;
	border: #ED1C24 solid 8px;
}
#notice h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 64px;
	position: relative;
	color: #ED1C24;
	text-align: center;
  line-height: 1;
}
#notice h2::before{
  position: absolute;
  display: block;
  content: "";
  width: 200px;
  height: 2px;
  background: #ED1C24;
  bottom: -20px;
  left: calc(50% - 100px);
}
#notice h2 + p {
	margin-top: 70px;
}
#notice a{
  text-decoration: underline;
    color: #ED1C24;
}
@media only screen and (max-width:767px) {
  #notice {
    padding: 40px 20px;
  }
  #notice .inner {
    padding: 30px 20px;
    border-radius: 5px;
  }
#notice h2 {
  font-size: 50px;
}
#notice h2::before{
  width: 160px;
  left: calc(50% - 80px);
}
#notice h2 + p {
	margin-top: 45px;
}
#notice a,
#notice p{
	font-size: 14px;
}
}


/* news
-----------------------------------------------*/
#news .inner::before{
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: #e8e9ef;
  top: 0;
  left: -240px;
  border-radius: 100px;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
#news .img{
  max-width: 642px;
  border-radius: 100px;
  overflow: hidden;
  position: absolute;
  top: -190px;
  right: -350px;
}
#news .txt {
  padding: 120px 0 200px;
}
#news .txt ul{
  margin-top: 40px;
}
#news .txt li {
  display: flex;
    padding-bottom: 15px;
}
#news .txt li a{
      font-size: 18px;
}
#news .txt li time{
    width: 13%;
    position: relative;
}
#news li time::before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 18px;
    background: #333;
    top: 12px;
    right: 20px;
}
#news .txt li p{
      font-size: 18px;
}
@media only screen and (max-width: 767px) {
  #news .img {
    max-width: 250px;
    border-radius: 60px;
    top: -60px;
    right: -70px;
}
  #news .inner::before{
    left: 0;
    border-radius:0;
  }
  #news .txt {
    padding: 60px 0;
}
  #news .txt ul {
    margin-top: 20px;
}
  #news .txt li{
    flex-wrap: wrap;
        font-size: 16px;
  }
  #news .txt li time{
    width: 100%;
  }
  #news li time::before{
    display: none;
  }
}


/* event
-----------------------------------------------*/
#event {
  margin-top: 0;
}
#event .inner{
  display: flex;
  gap:120px;
  align-items: center;
}
#event .img{
  max-width: 790px;
  border-radius: 100px;
  overflow: hidden;
  margin-top: -100px;
  margin-left: -330px;
}

@media only screen and (max-width: 767px) {
  #event .inner{
    padding: 60px 20px;
    position: relative;
  justify-content: center;
  }
  #event .img{
        max-width: 250px;
    border-radius: 60px;
    position: absolute;
    left: -100px;
    top: -50px;
    margin: 0;
  }
  #event .ttl h2{
    text-align: right;
  }
  #event .ttl h2::before{
        left: auto;
    right: -50px;
  }
}

/* special
-----------------------------------------------*/
#special li{
  margin-bottom: 30px;
}
#special .inner{
  display: flex;
  gap:40px;
}
#special .img{
  max-width: 985px;
  border-radius: 100px;
  overflow: hidden;
  margin-top: -100px;
  margin-right: -370px;
}

@media only screen and (max-width: 767px) {
  #special .inner{
    position: relative;
  justify-content: center;
  }
  #special .img{
    position: absolute;
    display: block;
    content: "";
    margin: 0;
        max-width: 280px;
        border-radius: 60px;
        top: -130px;
        right: -50px;
    z-index: -1;
  }
  #special li {
    margin-bottom: 15px;
}
}


/* voice
-----------------------------------------------*/
#voice {
  margin-top: 50px;
}
#voice .inner{
  display: flex;
  gap:220px;
  padding: 150px 40px;
  align-items: start;
}
#voice .inner::before{
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: #e8e9ef;
  top: -80px;
  right: -260px;
  border-radius: 100px;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
#voice .img{
  max-width: 642px;
  border-radius: 100px;
  overflow: hidden;
  margin-top: -100px;
  margin-left: -330px;
}
#voice .txt ul{
  margin-top: 40px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}
#voice .txt li a{
  border-radius: 50%;
  overflow: hidden;
  display: block;
  max-width: 110px;
  max-height: 110px;
  width: 100%;
  height: 100%;
}
#voice .txt .illust{
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
#voice .inner {
    gap: 0;
    padding: 200px 20px 60px;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
}
  #voice .ttl h3 span{
    display: block;
  }
  #voice .ttl h3 span > span{
    display: none;
  }
  #voice .img {
    position: absolute;
    display: block;
    content: "";
    max-width: 260px;
    border-radius: 60px;
    left: -90px;
    top: 20px;
    margin: 0;
}
  #voice .inner::before{
        top: 150px;
    right: 0;
    border-radius: 0;
  }
  #voice .ttl h2{
    text-align: right;
  }
  #voice .ttl h2::before{
        left: auto;
    right: -50px;
  }
  #voice .txt ul {
    margin-top: 20px;
    gap: 20px;
}
}



/* header
-----------------------------------------------*/


@media only screen and (max-width: 767px) {
}







