
a{
  text-decoration: none;
}
* {
  box-sizing: border-box;
}
p,li,dl,dd,button,a{
  font-size: 16px;
  font-family: "kozuka-mincho-pro", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  line-height: 28px;
}
ul{
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  vertical-align: middle;
  object-fit: cover;
}
.flex-box{
  display: flex;
}
button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
button img {
  display: block;
}
.sp-only{
  display: none !important;
}
.pc-only{
  display: block !important;
}
body {
  font-family: "kozuka-mincho-pro", serif;
  margin:0;
  overflow-x: hidden;
  background-image: url(../img/caregiver/body_bg.jpg);
  /* background-repeat: repeat; */
  background-position: center;
  background-size: cover;
}
main{
  overflow: hidden;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  p,li,dl,dd{
    font-size: 14px;
    line-height: 1.8em;
  }
  .sp-only{
    display: block !important;
  }
  .pc-only{
    display: none !important;
  }
}

/* header */
.l-header{
  position: sticky;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.l-header__inner{
  max-width: 1370px;
  height: 120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo{
  display: flex;
  align-items: center;
  padding-left: 0;
}
.header_logo-1{
  width: 226px;
  margin-right: 39px;
}
.header_logo-2{
  width: 200px;
  margin-right: 39px;
}
.header_logo-3{
  width: 160px;
}
.l-header__btn{
  width:226px;
  border-radius: 48px;
  font-size: 20px;
  height: 80px;
  background-color: #FFFFF2;
  border:3px solid #FF5C00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__btn a{
  color: #FF5C00;
}
.hero__entry-btn:hover{
  opacity: 0.7;
}
.l-header__hamburger{
  width: 66px;
  height: 58px;
  background-color: #FAC211;
  border-radius: 100px;
  position: relative;
  display: none;
}
.hamburger_border {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 1px;
  background-color:#FFF;
  transition: all .6s;
}
.hamburger_border_top {
  top: 22px;
}
.hamburger_border_center {
  top: 28px;
}
.hamburger_border_bottom {
  top: 34px;
}
.l-header__hamburger::after{
  content: 'menu';
  position: absolute;
  bottom: -25px;
  color: #FAC211;
  font-size: 16px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 980px) {
  .l-header__inner{
    margin-left: 30px;
    width: 95%;
  }
  .header_logo-1{
    width: 151px;
    margin-right: 20px;
  }
  .header_logo-2{
    width: 120px;
    margin-right: 20px;
  }
  .header_logo-3{
    width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__inner{
    margin: 0 5vw;
    height: 60px;
  }
  .header_logo-1{
    width: 101px;
    margin-right: 15px;
  }
  .header_logo-2{
    width: 98px;
    margin-right: 0px;
  }
  .header_logo-3{
    display: none;
  }
  .l-header__btn{
    display: none;
  }

  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .l-header__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .l-header__nav-item {
    text-align: center;
    padding: 10px 20px;
    width: 300px;
}
  .l-header__nav-item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .l-header__nav-item-btn a{
    color: #FFF;
    margin: 0 auto;
    margin-top: 20px;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .l-header__nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}

/* about */
.about{
  display: block;
  margin: 75px auto 0;
  max-width: 812px;
}
@media only screen and (max-width: 980px) {
  .about{
    margin: 75px 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .about{
    margin: 20px 25px 0;
    max-width: 342px;
  }
  
}

/* OVERVIEW（法人概要） */
.overview-1{
  display: block;
  margin: 100px auto 0;
  position: relative;
}
.overview-1__header-pc{
  max-width: 1344px;
  margin: 0 auto;
  display: block;
}
.overview-1__sp{
  margin: 0 auto;
  display: none;
}
@media only screen and (max-width: 980px) {
  .overview-1{
    margin: 90px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .overview-1{
    margin: 60px auto 0;
  }
  .overview-1__header-pc{
    display: none;
  }
  .overview-1__sp{
    display: block;
    text-align: center;
  }
  .overview-1__sp-header{
    width: 188px;
    margin: 0 auto;
  }
  .overview-1__sp-inner{
    background-color: #FFF;
    box-shadow: 0px 0px 20px 20px #FFF;
    max-width: 85%;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .overview-1__sp-text{
    width: 287px;
    padding-top: 30px;
  }
  .overview-1__sp-text-2{
    padding-top: 0;
    width: 266px;
  }
}
/* スライダー */
.overview-1__pic{
  position: absolute;
  max-width: 700px;
  right: 0;
  top: 100px;
  display: block;
}
.wrapper {
  max-width: 700px;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-bottom: 150px;
}
.slider {
  width: 1301px;
  display: flex;
  margin: 0 auto;
}
.slider1 {
  transform: translateX(0);
  transition: all 0.3s;
}
.slider2 {
  transform: translateX(-427px);
  transition: all 0.3s;
}
.slider3 {
  transform: translateX(-854px);
  transition: all 0.3s;
}
.content {
  width: 100%;
  max-width: 367px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ボタン */
.next {
  width: 72px;
  height: 72px;
  position: absolute;
  right: 25%;
  bottom: 40px;
  transition: all 0.3s;
  z-index: 10;
  cursor: pointer;
  border:1px solid #1F547B;
  border-radius: 50%;
}
.next::after {
  content: '→';
  color: #1F547B;
  width: 0;
  height: 0;
  position: absolute;
  top: 25%;
  left: 30%;
  margin: auto;
  font-size: 24px;
}
.next:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.prev {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 40%;
  bottom: 40px;
  transition: all 0.3s;
  z-index: 10;
  cursor: pointer;
  border:1px solid #1F547B;
  border-radius: 50%;
  box-sizing: content-box;
}
.prev::after {
  content: '←';
  color: #1F547B;
  width: 0;
  height: 0;
  position: absolute;
  top: 25%;
  left: 30%;
  margin: auto;
  font-size: 24px;
}
.prev:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media only screen and (max-width: 980px) {
  .overview-1__pic{
    max-width: 350px;
    top: 120px;
  }
  .wrapper{
    max-width: 350px;
    padding-bottom: 120px;
  }
  .content {
    max-width: 200px;
  }
  .slider {
    width: 700px;
  }
  .prev {
    width: 50px;
    height: 50px;
  }
  .prev::after{
    left: 30%;
    top: 15%;
    left: 25%;
  }
  .next {
    width: 50px;
    height: 50px;
  }
  .next::after{
    top: 15%;
    left: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .overview-1__pic{
    display: none;
  }
  .overview-1__pic-sp{
    display: block;
    margin: 40px auto;
    max-width: 320px;
  }
  .wrapper {
    max-width: 320px;
  }
  .content {
    max-width: 250px;
  }
  .slider {
    width: 960px;
  }
  .slider2 {
    transform: translateX(-320px);
  }
  .slider3 {
    transform: translateX(-640px);
  }
  .prev {
    left: 12%;
  }
  .next {
    right: 12%;
  }
}

/* OVERVIEW（施設概要） */
.overview-2{
  display: block;
  margin: 127px auto 0;
  max-width: 1344px;
}
.overview-2__header{
  display: block;
  max-width: 115px;
}
.overview-2__box{
  display: flex;
  max-width: 1120px;
  justify-content: space-between;
  margin: 66px auto 0;
}
.overview-2__box div{
  max-width: 290px;
}
.overview-2__btn{
  width:231px;
  border-radius: 48px;
  font-size: 20px;
  height: 52px;
  background-color: #FFF;
  border:1px solid #1F547B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px auto 0;
}
.overview-2__btn a{
  color: #1F547B;
}
.overview-2__btn:hover{
  opacity: 0.7;
}
@media only screen and (max-width: 980px) {
  .overview-2__box div {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .overview-2{
    margin: 90px auto 0;
  }
  .overview-2__header {
    margin: 0 auto;
  }
  .overview-2__box{
    display: block;
    margin:  30px auto 0;
  }
  .overview-2__box div {
    margin: 0 auto;
    padding: 30px 0;
  }
  .overview-2__btn{
    margin-top: 30px !important;
  }
}

/* ふじおか病院 */
.fujioka-hospital{
  max-width: 1344px;
  margin: 120px auto;
}
.fujioka-hospital__header{
  display: block;
  max-width: 1344px;
  text-align: right;
  margin: 0 auto;
}
.fujioka-hospital__header img{
  max-width: 1207px;
}
.fujioka-hospital__inner{
  display: block;
  margin: 100px auto 0;
  max-width: 1344px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 20px #FFF;
  text-align: center;
  padding: 90px 100px 60px;
}
.fujioka-hospital__inner img{
  max-width: 1127px;
}
@media only screen and (max-width: 980px) {
  .fujioka-hospital__header {
    text-align: center;
  }
  .fujioka-hospital__header img{
    width: 90%;
  }
  .fujioka-hospital__inner{
    max-width: 90%;
    margin: 100px auto 0;
    padding: 60px 0px;
  }
  .fujioka-hospital__inner img{
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .fujioka-hospital{
    margin: 60px auto;
  }
  .fujioka-hospital__header img{
    max-width: 350px;
  }
  .fujioka-hospital__inner{
    max-width: 85%;
    margin: 80px auto 0;
    padding: 50px 20px;
  }
  .fujioka-hospital__inner img{
    max-width: 300px;
  }
}

/* しょうぶ苑 */
.shobuen{
  max-width: 1344px;
  margin: 120px auto;
}
.shobuen__header{
  display: block;
  max-width: 1344px;
  text-align: left;
}
.shobuen__header img{
  max-width: 1190px;
}
.shobuen__inner{
  display: block;
  margin: 100px auto 0;
  max-width: 1344px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 20px #FFF;
  text-align: center;
  padding: 70px;
}
.shobuen__inner img{
  max-width: 1200px;
}
@media only screen and (max-width: 980px) {
  .shobuen__header {
    text-align: center;
  }
  .shobuen__header img{
    width: 90%;
  }
  .shobuen__inner{
    max-width: 90%;
    margin: 100px auto 0;
    padding: 60px 0px;
  }
  .shobuen__inner img{
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .shobuen{
    margin: 80px auto;
  }
  .shobuen__header img{
    max-width: 350px;
  }
  .shobuen__inner{
    max-width: 85%;
    margin: 80px auto 0;
    padding: 50px 20px;
  }
  .shobuen__inner img{
    max-width: 300px;
  }
}

/* グループホームふじおか */
.fujioka-group{
  max-width: 1344px;
  margin: 120px auto;
}
.fujioka-group__header{
  display: block;
  max-width: 1344px;
  text-align: right;
}
.fujioka-group__header img{
  max-width: 1213px;
}
.fujioka-group__inner{
  display: block;
  margin: 100px auto 0;
  max-width: 1160px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 20px #FFF;
  text-align: center;
  padding: 60px 100px 60px;
}
.fujioka-group__inner img{
  max-width: 1010px;
}
@media only screen and (max-width: 980px) {
  .fujioka-group__header {
    text-align: center;
  }
  .fujioka-group__header img{
    width: 90%;
  }
  .fujioka-group__inner{
    max-width: 90%;
    margin: 100px auto 0;
    padding: 60px 0px;
  }
  .fujioka-group__inner img{
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .fujioka-group{
    margin: 80px auto;
  }
  .fujioka-group__header img{
    max-width: 350px;
  }
  .fujioka-group__inner{
    max-width: 85%;
    margin: 80px auto 0;
    padding: 50px 20px;
  }
  .fujioka-group__inner img{
    max-width: 300px;
  }
}

/* 募集職種について */
.open-position__caregiver-1{
  display: block;
  margin: 85px auto 0;
  max-width: 1140px;
}
.open-position__caregiver-2{
  display: block;
  margin: 140px auto 0;
  max-width: 1140px;
}
.open-position__caregiver-sub{
  display: flex;
  max-width: 1340px;
  justify-content: space-between;
  margin: 80px auto 0;
}
.open-position__caregiver-sub img{
  max-width: 290px;
}
.open-position__point{
  margin: 210px auto 0;
  max-width: 1200px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 20px #FFF;
  text-align: center;
  padding: 75px 70px;
  display: block;
}
@media only screen and (max-width: 980px) {
  .open-position__caregiver-1 { 
    padding: 0 30px;
  }
  .open-position__caregiver-sub {
    flex-wrap: wrap;
    padding: 0 30px;
  }
  .open-position__caregiver-sub img{
    padding-bottom: 30px;
    max-width: 250px;
    padding: 0 20px 20px;
  }
  .open-position__caregiver-2{
    margin: 80px auto 0;
    padding: 0 30px;
  }
  .open-position__point {
    margin: 80px 30px 0;
    padding: 55px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .open-position__caregiver-sub {
    margin: 40px auto 0;
  }
  .open-position__caregiver-2 {
    margin: 40px auto 0;
  }
  .open-position__point {
    padding: 50px 0px;
}

}

/* 1日のスケジュール */
.daily-routine{
  max-width: 1200px;
  margin: 200px auto 0;
  display: block;
}
.daily-routine__header{
  display: block;
  max-width: 300px;
}
.daily-routine__btn{
  display: flex; 
  max-width: 690px;
  margin: 70px auto 0;
  justify-content: space-between;
}
.daily-routine__btn button{
  width:296px;
  border-radius: 48px;
  font-size: 20px;
  height: 72px;
  border:1px solid #1F547B;
  color: #1F547B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "kozuka-mincho-pro", serif;
}
.daily-routine__content{
  margin-top: 50px;
}
#btn-daily-routine-01.active,#btn-daily-routine-02.active{
  background-color: #1F547B;
  color: #FFF;
}
.daily-routine__content-01,.daily-routine__content-02{
  display: none;
}
.daily-routine__content-01.active{
  display: block;
}
.daily-routine__content-02.active{
  display: block;
}
.daily-routine__training{
  max-width: 1100px;
  margin: 130px auto 0;
  display: block;
}
@media only screen and (max-width: 980px) {
  .daily-routine {
    margin: 50px auto 0;
  }
  .daily-routine__btn{
    margin: 0px auto;
  }
  .daily-routine__training{
    margin: 130px 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .daily-routine__btn{
    display:  block; 
    max-width: 250px;
  }
  .daily-routine__btn button{
    font-size: 16px;
    height: 60px;
    width:250px;
    margin-bottom: 20px;
  }
  .daily-routine__training {
    max-width: 400px;
    margin:0 auto;
    padding: 0 20px;
  }
}

/* インタビュー */
.interview__header{
  max-width: 573px;
  margin: 120px auto 0;
  display: block;
}
.interview__btn{
  display: flex;
  max-width: 971px;
  margin:0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.interview__btn div{
  margin-top: 118px;
}
.interview__btn img{
  width: 417px;
}
.interview__btn button img{
  width: 134px;
}
.interview__btn .interview-position{
  color: #1F547B;
  padding-top: 45px;
  font-size: 16px;
}
.interview__btn .interview-name{
  color: #1F547B;
  padding-top: 5px;
  font-size: 18px;
  font-weight: 700;
}
.interview__content{
  max-width: 1280px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 20px #FFF;
  margin: 110px auto 0;
  padding:  100px;
}
.interview__content-01,.interview__content-02,.interview__content-03{
  display: none;
}
.interview__content-01.active{
  display: block;
}
.interview__content-02.active{
  display: block;
}
.interview__content-03.active{
  display: block;
}
.interview__content-header{
  display: flex;
  color: #1F547B;
  justify-content: space-between;
}
.interview__content-header img{
  max-width: 560px;
}
.interview__sub-title{
  font-size: 18px;
  padding-bottom: 30px;
}
.interview__header-sub-title{
  font-size: 18px;
  padding-bottom: 30px;
}
.interview__header-title{
  font-size: 32px;
  font-weight: 700;
  line-height: 60px;
}
.interview__header-position{
  font-size: 16px;
}
.interview__header-name{
  font-size: 18px;
}
.interview__title{
  font-size: 24px;
  font-weight: bold;
  position: relative;
  color: #1F547B;
  border-left: 4px solid #1F547B;
  padding: 0rem .8em;
  margin: 60px 0 30px;
}
@media only screen and (max-width: 980px) {
  .interview__btn img {
    width: 300px;
  }
  .interview__btn {
      padding: 0 40px;
  }
  .interview__content-header {
    display: block;
  }
  .interview__content {
    margin: 110px 30px 0;
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .interview__header {
    max-width: 573px;
    margin: 100px 30px 0;
  }
  .interview__btn div {
    margin-top: 60px;
  }
  .interview__content {
    margin: 80px 30px 0;
    padding: 20px;
  }
  .interview__header-sub-title{
    padding-bottom: 20px;
  }
  .interview__header-title {
    font-size: 24px;
    line-height: 36px;
  }
  .interview__title{
    font-size: 16px;
  }
  .interview__content-header img {
    max-width: 300px;
  }
}

/* 福利厚生 */
.welfare__header{
  margin: 110px auto 0;
  display: block;
}
.welfare__header img{
  width: 100%;
  height: auto;
}
.welfare__inner{
  display: block;
  max-width: 1120px;
  margin:60px auto 0;
}
@media only screen and (max-width: 980px) {
  .welfare__header{
    margin: 80px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .welfare__inner {
    margin: 60px 10px 0;
  }
}

/* 募集要項 */
.requirements{
  margin: 210px auto 0;
  max-width: 1120px; 
  display: block;
}
.requirements__header{
  max-width: 288px;
  display: block;
}
.requirements__btn{
  display: flex; 
  max-width: 690px;
  margin: 100px auto 0;
  justify-content: space-between;
}
.requirements__btn button{
  width:296px;
  border-radius: 48px;
  font-size: 20px;
  height: 72px;
  color: #1F547B;
  background-color: #FFF;
  border:1px solid #1F547B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "kozuka-mincho-pro", serif;
  position: relative;
}
.requirements__btn button:after{
  content: "▶";
  right: 20px;
  position: absolute;
  font-size: 12px;
}
.requirements__content{
  max-width: 1032px;
  background-color: #F7FDFF;
  box-shadow: 0px 0px 20px 20px #F7FDFF;
  margin: 110px auto 0;
  padding:  50px 80px;
}
#btn-requirements-01.active,#btn-requirements-02.active{
  background-color: #1F547B;
  color: #FFF;
}
.requirements__table-01,.requirements__table-02{
  display: none;
}
.requirements__table-01.active{
  display: block;
}
.requirements__table-02.active{
  display: block;
}
.requirements__table{
  border-collapse: collapse;
  width: 100%;
}
.requirements__table th,.requirements__table td{
  border-top: 1px solid #94CFF8;
  border-bottom: 1px solid #94CFF8;
  padding: 30px 0;
}
.requirements__table th{
  width: 40%;
  color: #1F547B;
  font-size: 16px;
  text-align: left;
  padding-left: 30px;
  position: relative;
}
.requirements__table td{
  padding-left: 100px;
  line-height: 2em;
  font-size: 16px;
  color: #1F547B;
  width: 60%;
}
.requirements__table th::before{
  content: "";
  border-top: 1px solid #1F547B;
  width: 50px;
  position: absolute;
  top: -1px;
  left: 0;
}
.requirements__table th::after{
  content: "/";
  right: 0;
  position: absolute;
}
.requirements__table .flex-text{
  display: flex;
  align-items: center;
}
.requirements__table .flex-text p:first-child{
  padding-right: 50px;
}
.requirements__table a{
  color: #1F547B;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #1F547B;
}
@media only screen and (max-width:980px) {
  .requirements {
    margin: 80px 40px 0;
  }
  .requirements__content {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .requirements {
    margin: 80px 30px 0;
  }
  .requirements__header{
    max-width: 200px;
  }
  .requirements__btn {
    display: block;
    max-width: 250px;
    margin: 60px auto 0;
  }
  .requirements__btn button {
    font-size: 16px;
    height: 60px;
    width: 250px;
    margin-bottom: 20px;
  }
  .requirements__content {
    padding: 10px;
  }
  .requirements__table{
    margin-top: 40px;
  }
  .requirements__table th,.requirements__table td{
    width: 100%;
    display: block;
    padding: 30px 0;
    border-right: none;
    border-bottom: none;
    box-sizing: border-box;
  }
  .requirements__table th{
    font-size: 14px;
  }
  .requirements__table th::after{
    content: none;
  }
  .requirements__table td{
    padding-left: 10px;
    font-size: 14px;
  }
  .requirements__table .flex-text{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 代表メッセージ */
.message{
  display: block;
  max-width: 1158px;
  margin: 140px auto 0;
}
@media only screen and (max-width:980px) {
  .message {
    margin: 140px 30px 0;
  }
}
@media only screen and (max-width:767px) {
  .message {
    margin: 100px 20px 0;
  }
}

/* エントリー */
.entry__header{
  max-width: 328px;
  margin: 140px auto 0;
  display: block;
}
.entry__contact{
  max-width: 1120px;
  background-color: #F7FDFF;
  box-shadow: 0px 0px 20px 20px #F7FDFF;
  margin: 110px auto 30px;
  padding: 60px 130px;
}
.contact__list{
  padding-left: 0 !important;
  max-width: 845px;
}
.entry__contact li{
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.contact__title{
  width: 280px;
  text-align: left;
  font-weight: 400;
  font-size: 20px;
  color: #1F547B;
}
.contact__item{
  width: 565px;
}
.entry__contact input{
  border: 1px solid #1F547B;
  border-radius: 20px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  box-sizing: border-box;
  background-color: #FFFBF3;
  padding: 10px 15px;
}
.contact__textarea{
  background-color: #FFF;
  padding: 12px 10px;
  border: 1px solid #1F547B;
  border-radius: 20px;
  margin-left: 120px;
}
.entry__contact textarea{
  background-color: #FFF;
  padding: 10px;
  border: none;
  width: 98%;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7em;
}
.select-year-header{
  padding-right: 10px;
}
.select-year,.select-month,.select-date{
  padding: 0 25px 0 10px;
}
.contact__item-select{
  display: flex;
  align-items: center;
}
.item-select-flex{
  display: flex;
}
.entry__contact select{
  border: 1px solid #1F547B;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  box-sizing: border-box;
  background-color: #FFFBF3;
  padding: 8px 35px 8px 15px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-item{
  position: relative;
}
.select-item::after{
  position: absolute;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  border-bottom: 2px solid #1F547B;
  border-right: 2px solid #1F547B;
  transform: rotate(45deg) translateY(-50%);
  transition: all .4s ease-in-out;
  transform-origin: 50% 0;
}
.contact__item-rdo{
  font-size: 16px;
}
.contact__item-rdo input{
  width: 50px;
  accent-color: #1F547B;
}
.contact__item-rdo span{
  padding: 5px 0;
  display: inline-block;
  width: 38%;
}
.contact__item-check input{
  width: 50px;
}
/* 送信ボタン */
.contact__btn-wrap{
  display: block;
  position: relative;
  width: 293px !important;
  margin: 80px auto 0;
}
.contact__btn{
  display: block;
  color: #FFF;
  background-color: #E1701F !important;
  text-align: center;
  height: 61px;
  font-size: 24px !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  box-sizing: border-box;
  border: none !important;
  font-family: "kozuka-mincho-pro", serif;
}
.contact__btn-wrap::after{
  /* 擬似要素で三角アイコンをつくる */
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%); /* translateYのみ */
}
.contact__btn:hover{
  cursor: pointer;
  opacity: 0.7;
}
.contact__error{
  padding-left: 0 !important;
}
.contact__error li{
  color: red;
  font-size: 14px !important;
  padding: 0;
}
@media only screen and (max-width:980px) {
  .entry__header{
    max-width: 250px;
    margin: 120px auto 0;
    display: block;
  }
  .entry__contact{
    margin: 90px 30px 30px;
    padding: 40px 20px 60px;
  }
  .contact__title {
    font-size: 18px;
    width: 30%;
  }
  /* 送信ボタン */
  .contact__btn-wrap{
    margin: 60px auto 0;
  }
}
@media only screen and (max-width:767px) {
  .entry__header{
    max-width: 180px;
    margin: 100px auto 0;
  }
  .entry__contact{
    margin: 60px 20px 30px;
    padding: 20px 10px 40px;
  }
  .contact__title {
    font-size: 16px;
    width: 100%;
  }
  .contact__item{
    width: 100%;
  }
  .entry__contact li{
    display: block;
  }
  .contact__item-rdo{
    font-size: 14px;
  }
  .contact__item-rdo span {
    width: 45%;
  }
  .entry__contact select {
    font-size: 14px;
    padding: 6px 25px 6px 10px;
  }
  .select-year, .select-month, .select-date {
    padding: 0 15px 0 5px;
  }
  /* 送信ボタン */
  .contact__btn-wrap{
    margin: 40px auto 0;
  }
  .contact__btn{
    height: 58px;
    font-size: 18px !important;
  }
  .select-item::after{
    width: 4px;
    height: 4px;
  }
}

/* footer */
.footer {
  background-color: #F7FDFF;
  box-shadow: 0px 0px 20px 20px #F7FDFF;
  color: #1F547B;
  margin-top:  133px;
}
.footer__inner{
  padding-top: 90px;
  position: relative;
  text-align: center;
}
.footer__logo{
  max-width: 480px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
.footer__logo img{
  width: 200px;
}
.footer__entry-text{
  padding: 70px 0;
}
.footer__entry-text a{
  font-size: 16px;
  text-decoration: underline;
  color: #1F547B;
}
.footer__menu{
  display: flex;
  font-size: 16px;
  margin: 30px auto 0;
  max-width: 800px;
}
.footer__menu li{
  padding: 0 30px;
  position: relative;
}
.footer__menu li a{
color: #1F547B;
}
.footer__menu li::after{
  content: "/";
  right: 0;
  position: absolute;
}
.footer__menu li:last-child::after{
  content: none;
}
.footer__inc{
  color: #1F547B;
  font-size: 12px;
  padding: 50px 0 40px;
  margin-bottom: 0;
}
@media only screen and (max-width: 980px){
  .footer__logo{
    left: 30px;
  }
}
@media only screen and (max-width:767px) {
  .footer {
    margin-top: 60px;
  }
  .footer__inner{
    padding: 30px 8vw 60px;
  }
  .footer__logo{
    width: 200px;
    display: block;
  }
  .footer__logo img{
    padding-top: 20px;
  }
  .footer__entry-text{
    padding: 40px 0;
  }
  .footer__menu{
    display: block;
    padding-left: 0;
    margin: 0;
  }
  .footer__menu a{
    font-size: 12px;
  }
  .footer__menu li::after{
    content: none;
  }
  .footer__nav-entry{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 236px;
    z-index: 2;
    background-color: #FFFFF2;
    border:3px solid #FF5C00;
    padding: 15px 0;
    text-align: center;
    border-radius: 40px;
  }
  .footer__nav-entry a{
    color: #FF5C00;
    font-size: 24px;
    font-weight: 600;
  }
}