@charset "UTF-8";
/*================================================
  共通
==================================================*/
body {
  width:100%;
  min-width:100%;
  font-size: 16px;
  font-family: "big-caslon-fb", serif;
  font-family: Shippori Mincho B1, YuMincho, 游明朝, Times New Roman, Hiragino Mincho ProN, HGS明朝B, ＭＳ Ｐ明朝, serif;
  /* font-family: "big-caslon-fb", serif; */
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 28px;
  font-feature-settings: 'palt';
  color: #221b1b;
  background: url(../images/bk2.jpg);
  background-size: contain;
}

img {
  width: 100%;
}

.disp_pc {
  display: block;
}

.disp_sp {
  display: none;
}

.disp_none {
  display: none;
}

.grid_box {
  display:grid;
}

.color_f00 {
  color: #f00;
  font-weight: bold;
}

.obi_font {
  display: inline-block;
  padding: 3px 12px;
  color: #ff0000;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: underline;
}

.obi_pink {
  display: inline-block;
  padding: 1px 12px;
  background: #fda2d0;
  font-weight: 800;
  color: #fff;
  margin: 4px;
}

.obi_big {
  padding: 6px 18px;
}

.color_blue {
  color: #ff74bb;
  font-weight: bold;
  font-size: 1.2rem;
}

.font_b {
  font-weight: bold;
}

.text_under {
  text-decoration: underline;
}

h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 55px;
}

/*================================================
  ボタン
==================================================*/
button {
  width: auto;
  padding: 0.4rem 1.5rem;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 3px;
  background: none;
  z-index: 1;
  /* min-width: 15rem; */
  border: 1px solid;
  white-space: nowrap;
  transition: color .25s;
  position: relative;
  overflow: hidden;
}

.btn_box button::after {
  content: "";
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  transform: rotate(45deg);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 18px;
  top: 38%;
}

/*================================================
  ヘッダー
==================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 101;
}

.box_header {
  position:relative;
  background: #fff;
  height: 130px;
}

.box_header .pos_ab {
  width: 130px;
  position: absolute;
  left: 38px;
}

.nav_box {
  width: 75%;
  height: 130px;
  padding: 34px 0px 20px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 15px;
}

.nav_box a {
  display: block;
  width: auto;
  padding-bottom: 4px;
}

/* ハンバーガーメニューのボタン */
.sp-menu_box {
  position: fixed;
  top: 0;
  right: 0;
  /* 中の要素を上下中央寄せ */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  width: 100px;
  z-index: 100;
}

.sp-menu_box span,
.sp-menu_box span:before,
.sp-menu_box span:after {
  content: "";
  /* ３本線のサイズと色を指定 */
  display: block;
  height: 1px;
  width: 40px;
  border-radius: 3px;
  background-color: #6d6d6d;
  /* 3本線の位置は絶対位置で指定 */
  position: absolute;
}

.sp-menu_box span:before {
  bottom: 11px;
}

.sp-menu_box span:after {
  top: 11px;
}

#sp-menu_check {
  display: none;
}

/* checkbox チェックがON */
#sp-menu_check:checked ~ .sp-menu_box span {
  background: rgba(255, 255, 255, 0);
}

/* 上の線 */
#sp-menu_check:checked ~ .sp-menu_box span:before {
  bottom: 0;
  transform: rotate(45deg);
}

/* 下の線 */
#sp-menu_check:checked ~ .sp-menu_box span:after {
  top: 0;
  transform: rotate(-45deg);
}

.sp-menu_content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 90;
  background-color: #fffffa;

  /* 右端からゆっくり移動 */
  transition: all 1s; 
}

.sp-menu_content .box {
  display: flex;
  align-items: center;
}

.sp-menu_content .box .left_box,
.sp-menu_content .box .right_box {
  position: relative;
  width: 50%;
}

.sp-menu_content .box .left_box {
  background-image: url("../images/top1.jpg");
}

.sp-menu_content .box .right_box {
  background-image: url("../images/top3.jpg");
}

.sp-menu_content .box h3{
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: .1s cubic-bezier(.44,.13,.48,.87);
  width: 100%;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 2rem;
}

.sp-menu_content .box .overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #685858;
  opacity: .4
}

a:not([disabled]):hover, a:focus {
  color: #606060;
}

.sp-menu_list {
  width: 80%;
  margin: auto;
  padding: 140px 70px 0;
  display: grid;
  row-gap: 40px;
  font-size: 18px;
  letter-spacing: 5px;
}

.sp-menu_list li {
  padding-bottom: 20px;
  border-bottom: 1px solid #b6b6b6;
}

#sp-menu_check:checked ~ .sp-menu_content {
  left: 0;
}

.welina_icon_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welina_icon_box img {
  width: 150px;
  height: 150px;
  margin: 5px 30px;
}

.header_flex_sub {
  width: 50%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.header_flex_sub button {
  min-width: 12rem;
}

/*================================================
  フッター
==================================================*/
.box_footer {
  position: relative;
  /* min-width: 1080px; */
  min-width: 100%;
  padding: 40px 0px 65px;
  /* background-color: #fffaf0; */
  background-image: url('../images/bg.png');
  text-align: center;
}



.lower_content {
  width: 100%;
}

.lower_container {
  width: 100%;
  margin: auto;
  padding-bottom: 120px;
}

.lower_sub_box {
  margin-top: 130px;
}

.lower_sub_box h2 {
  padding: 32px 0 0;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.lower_sub_box h2 span {
  margin-top: 5px;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lower_container h2.top_main_title {
  width: 100%;
  padding: 80px 8vw 0px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
  background-color: #de9f2e;
  text-align: center;
  font-size: 2rem;
}

.lower_container h2.top_main_title2 {
  background: #fff;
  color: #221b1b;
}

.exp_box {
  width: 80%;
  margin: auto;
  padding: 80px 0 100px;
}

.exp_box_sp {
  display: none;
}

.exp_box h1 {
  font-size: 2rem;  
}

.exp_box .title_box,
.exp_box .sub_box {
  width: 100%;
  display: flex;
}

.exp_box .sub_box {
  margin-top: 35px;
  align-items: flex-end;
  align-items: center;
}

.exp_box .title_box div:first-child,
.exp_box .sub_box div:first-child {
  width: 35%;
  text-align: center;
}

.exp_box .title_box div:last-child,
.exp_box .sub_box div:last-child {
  width: 65%;
  padding: 0 28px;
}

.exp_box span {
  font-size: 1.3rem;
  margin-right: 28px;
  border-bottom: 1px solid;
  display: inline-block;
}

.exp_box button {
  padding: 0.4rem 2.5rem;
}

.exp_box span.border_none {
  border: none;
}


.top_img_box {
  max-width: 85%;
  margin: 0px auto;
  padding: 100px 0;
  /* padding: 0 55px; */
}

.top_img_box_sp {
  display: none;
}

.top_img_box h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 55px;
}

.top_img_box .img_box {
  width: 100%;
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  background-image: url(../images/back2.jpg);
  background-size: cover;
}

.top_img_box .img_box img {
  width: calc(98% / 3);
  padding: 24px 20px;
  text-align: center;
  object-fit: cover;
  /* background: #f0ece8; */
}

.top_img_box .img_exp_box1,
.top_img_box .img_exp_box2 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.top_img_box .img_exp_box1 {
  align-items: center;
}

.top_img_box .img_exp_box2 {
  align-items: flex-end;
}

.top_img_box .img_exp_box1 div,
.top_img_box .img_exp_box2 div {
  width: calc(100% / 3);
  padding: 0 20px;
  text-align: center;
}

.top_img_box .img_exp_box2 div:first-child {
  padding: 0;
}

.top_img_box .img_exp_box1 div {
  font-size: 0.95rem;
  line-height: 24px;
}

.top_img_box .img_exp_box2 button {
  margin-top: 15px;
  padding: 0.6rem 1.3rem;
  font-size: 1.1rem;
  color: #080808;
  background-color: #f3f3f3;
  border: none;
  /* border-bottom: 1px solid; */
  box-shadow: 7px -9px 12px 0px #fff, 4px 4px 8px rgb(0 0 0 / 24%);
}

.top_img_box .img_exp_box2 button.f_min {
  font-size: 1rem;
}

.top_img_box .img_exp_box2 div:last-child {
  opacity: 0.6;
}

.top_img_box .img_exp_box2 div:last-child span {
  font-size: 0.8rem;
  padding-right: 20px;  
}

.top_img_box .img_exp_box2 div:last-child button:hover {
  pointer-events: none;
}

.info_box {
  width: 80%;
  padding: 55px 20px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.info_box img {
  width: 280px;
}

.info_box div {
  width: calc(100% - 280px);
  padding-left: 70px;
}

.info_box div li {
  border-bottom: 1px solid;
  padding-bottom: 12px;
  margin-bottom: 26px;
  font-size: 1.1rem;
}

.info_box div li span.date {
  width: 131px;
  padding: 3px 21px;
  margin-right: 20px;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  font-size: 1rem;
  background: #efc525;
  color: #fff;
}

.blog_box {
  width: 80%;
  margin: auto;
  padding: 55px 0;
}

.blog_box h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 55px;
}

.blog_box div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.blog_box div img {
  width: calc(90% / 3);
  padding: 0 20px;
}

.blog_box .btn_box {
  padding-top: 47px;
}

.blog_box .btn_box button {
  width: 300px;
  text-align: center;
  border: none;
  border-bottom: 1px solid;
}





.top_main_img {
  width: 80%;
  margin: 150px auto 0;
  padding-bottom: 55px;
  position: relative;
  color: #fff;
}

.top_main_img img {
  width: 100%;
  z-index: -1;
}

.top_main_img h1 {
  font-size: 2.5rem;
  text-align: center;
  position: absolute;
  top: 75%;
  left: 21%;
  left: 30%;
  opacity: 0.9;
  z-index: 100;
  letter-spacing: 6px;
}

.top_main_img h1 span {
  display: block;
  font-size: 1.8rem;
  padding-top: 25px;
  letter-spacing: 5px;
}

.top_main_img .pos_ab {
  width: 23%;
  position: absolute;
  top: 30px;
  right: 0;
}

.obi {
  width: 100%;
  background-color: #de9f2e;
  padding: 45px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color:#fff;
}

/* .obi img {
  max-width: 480px;
} */

.obi>div {
  width: 75%;
}

.obi div img {
  width: 30%;
  /* max-width: 268px; */
}

.obi .flex_box {
  width: 92%;
  margin:  -30px 0 0 37px;
  display: flex;
  justify-content: center;
}

.obi .flex_box img:first-child {
  width: 55%;
}

.obi .flex_box img:last-child {
  width: 48%;
}

.ac_fam_imgbox {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.ac_fam_imgbox img {
  width: calc(100% / 4);
}

.menu_box {
  width: 92%;
  margin: 60px auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.menu_box .menu_one_box {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 18px;
  text-align: center;
  padding: 22px 10px;
  margin-bottom: 35px;
  color: #8e6261;
  border: 3px solid #ffed9b;
  -o-border-image: linear-gradient(to right, #b79671 0%, #f5e2be 50%, #b79671 100%);
  border-image: linear-gradient(to right, #b79671 0%, #f5e2be 50%, #b79671 100%);
  border-image-slice: 1;
}

.top_menu_box .menu_one_box:last-child {
  margin-bottom: 0;
}

.menu_box .menu_one_box img {
  width: 70%;
}

.top_img_fstbox {
  width: 100%;
}

.top_img_fstbox .top_txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px auto 120px;
  width: 1080px;
}

.top_img_fstbox .top_txt div {
  /* display: grid;
  row-gap: 100px; */
  width: calc((100% - 38%) - 100px);
  /* margin-left: 100px; */
  /* padding: 0 0 65px 60px; */
  font-size: 1.1rem;
  line-height: 1.8rem;
  letter-spacing: 3px;
}

.top_img_fstbox .top_txt .img3box {
  /* width: 500px; */
  padding-left: 50px;
}

.top_img_fstbox .top_txt .img3box img.circle3_img {
  width: 400px;
  margin-bottom: 40px;
}

.top_img_fstbox .top_txt .img3box img.full_img {
  width: 550px;
  margin-bottom: 22px;
}

.top_img_fstbox .top_txt div.img3box p {
  font-size: 2rem;
}

.top_img_fstbox .top_txt img {
  width: 38%;
}

.top_img_fstbox .img_box {
  width: 87%;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_img_fstbox .img_box img:first-child {
  width: calc(85% / 3);
  margin-top: -80px;
}

.top_img_fstbox .img_box img:nth-child(2) {
  width: 40%;
  padding: 0 30px;
  margin-top: 130px;
}

.top_img_fstbox .img_box img:last-child {
  width: 26%;
  margin-top: 130px;
}

.top_img_fstbox .img_ver_box {
  width: 1080px;
  width: 100%;
  margin: 0 auto 70px;
}

.top_img_fstbox .img_ver_box .flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_img_fstbox .img_ver_box p {
  font-size: 2rem;
  line-height: 3.2rem;
  text-align: center;
  padding-top: 53px;
}

.ac_char_box {
  padding: 90px 0 110px;
}

.back_gray {
  background-image: url(../images/back2.jpg);
  background-size: cover;
}

.ac_char_box .inner {
  width: 1080px;
  margin: auto;
}

.ac_char_box .inner .header {
  text-align: center;
}

.ac_char_box .inner .header h2 {
  font-size: 32px;
  height: auto;
  line-height: normal;
}

.ac_char_box .inner .header p {
  font-size: 18px;
  font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3",Hiragino Kaku Gothic Pro,Verdana,"ＭＳ Ｐゴシック",MS PGothic,Arial,sans-serif;
}

.ac_char_box .inner .list_group {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.ac_char_box .inner .list_group .list {
  /* box-sizing: border-box;
  margin-top: 28px;
  width: 306px;
  padding: 30px 15px 25px;
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 5px; */

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 16px;
  width: 306px;
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 5px;
}

.ac_char_box .inner .list_group .list .detail {
  /* opacity: 0; */
  background-color: #fff;
  padding: 20px 15px 25px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.ac_char_box .inner .list_group .list .thunb {
  order: 3;
  text-align: center;
}

.ac_char_box .inner .list_group .list .thunb img {
  width: 90%;
}

.ac_char_box .inner .list_group .list .thunb1 img {
  width: 220px;
  margin-top: 42px;
}

.ac_char_box .inner .list_group .list .thunb2 img {
  width: 80%;
  margin-top: 41px;
}

.ac_char_box .inner .list_group .list .thunb5 img {
  width: 85%;
  margin-top: 13px;
}

.ac_char_box .inner .list_group .list .thunb6 img {
  width: 84%;
  margin-top: 31px;
}

.ac_char_box .inner .list_group .list .thunb8 img {
  width: 210px;
  margin-top: 20px;
}

.ac_char_box .inner .list_group .list .name {
  text-align: center;
  padding-bottom: 10px;
  color: #e66ea6;
}

.ac_char_box .inner .list_group .list .name h3 {
  margin-bottom: 15px;
  font-size: 2.8rem;
  font-weight: bold;
}

.ac_char_box .inner .list_group .list .name span {
  display: block;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3",Hiragino Kaku Gothic Pro,Verdana,"ＭＳ Ｐゴシック",MS PGothic,Arial,sans-serif;
}

.ac_char_box .inner .list_group .list .contenet {
  padding: 0 13px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 200;
  position: relative;
}

.ac_char_box .inner .list_group .list .contenet p {
  text-align: left;
}

.ac_char_box .inner .list_group .list .contenet span {
  font-weight: bold;
  color: #e66ea6;
}

.ac_char_box .inner .list_group .list .contenet span.span1 {
  border-bottom: 1px solid;
}

.ac_char_box .inner .list_group .list .contenet span.span2 {
  font-size: 1.2rem;
  text-align: center;
  display: block;
  margin-top: 12px;
}

.ac_char_box .inner .list_group .list .contenet img {
  margin-top: 10px;
  width: 145px;
}

/* 各々 */
.ac_char_box .inner .list_group .list .contenet1 span.span1 {
  position: absolute;
  bottom: 132px;
  left: 12px;
}

.ac_char_box .inner .list_group .list .contenet2 span {
  display: block;
}

.ac_char_box .inner .list_group .list .contenet2 img {
  width: 160px;
}
/* .ac_char_box .inner .list_group .list .contenet span {
  font-weight: bold;
  display: block;
  text-align: center;
} */

.ac_char_box .img_box {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.ac_char_box .img_box div {
  width: calc(100% / 4);
}

.ac_char_box .img_box div:first-child {
  background-image: url("../images/ac_fam2.jpg");
  background-size: cover;
}

.ac_char_box .img_box div:nth-child(2) {
  background-image: url("../images/ac_fam3.jpg");
  background-size: cover;
}

.ac_char_box .img_box div:nth-child(3) {
  background-image: url("../images/ac_fam1.jpg");
  background-size: cover;
}

.ac_char_box .img_box div:last-child {
  background-image: url("../images/ac_fam4.jpg");
  background-size: cover;
}

.ac_class_box .contenet {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
}

.ac_class_box .contenet .back_gray {
  background-size: auto;
}

.ac_class_box .one_box {
  width: calc(95% / 5);
  margin: 0 auto 45px;
  padding: 50px 20px;
}

.ac_class_box .one_box .img_box {
  width: 90%;
  margin: 0 auto 10px;
  display: block;
  text-align: center;
}

.ac_class_box .one_box .img_box p {
  display: block;
  height: 45px;
  font-size: 1.2rem;
}

.ac_class_box .one_box .img_box p.f_big {
  font-size: 1.6rem;
}

.ac_class_box .one_box .img_box p.f_min {
  font-size: 1rem;
}

.ac_class_box .one_box .img_box img {
  width: 75px;
  margin: 25px auto;
}

.ac_class_box .one_box p {
  line-height: 21px;
  text-align: center;
}

.ac_class_box .inner .class_content_box {
  display: flex;
  margin-top: 30px;
}

.ac_class_box .inner .class_content_box .swiper-wrapper {
  margin-bottom: 30px;
}



.media_box {
  width: 100%;
  max-width: 1080px;
  margin: 0px auto 110px;  
}

.media_box .img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 65px;
}

.media_box .m_txt_box {
  margin-bottom: 34px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
}

.media_box .img_box div {
  width: calc(100% / 5);
  /* padding: 20px; */
}

.media_box .img_box div:first-child img {
  margin-bottom: 10px;
}

.media_box .img_box div a {
  text-decoration: underline;
  text-align: center;
}

.media_box .article_box {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.media_box .article_box .txt_box {
  position: relative;
}

.media_box .article_box .txt_box img {
  width: 14px;
}

.media_box .article_box .txt_box p {
  padding-left: 19px;
  font-size: 1.4rem;
  font-weight: bold;
}

.media_box .article_box .txt_box span {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 9px;
}

.media_box .article_box .txt_box span::before {
  content: "";
  width: 80px;
  border-bottom: 1px solid;
  margin-right: 14px;
}

.media_box .article_box .txt_box a {
  display: block;
  margin-top: 30px;
  text-align: center;
  text-decoration: underline;
  font-size: 1.3rem;
}

.media_box .article_box img {
  width: 325px;
}

/* before after */
.ac_baimg_box .content {
  margin-top: 80px;
}

.ac_baimg_box .content .one_box {
  display: block;
  justify-content: space-around;
  align-items: start;
  background: #fff;
  padding: 50px 60px 35px;
  margin: 0px 10px 40px;
  position: relative;
}

.ac_baimg_box .content .one_box .b_a_imgbox,
.ac_baimg_box .content .one_box .txt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.ac_baimg_box .content .one_box .b_a_imgbox img {
  width: 375px;
  padding-bottom: 18px;
}

.ac_baimg_box .content .one_box .bef_txt,
.ac_baimg_box .content .one_box .aft_txt {
  width: 375px;
  text-align: center;
}

.ac_baimg_box .content .one_box img.route_icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100px;
}

.ac_baimg_box .content > .one_box:first-child .txt .bef_txt {
  font-size: 2.2rem;
}

.ac_baimg_box .content > .one_box:last-child .txt .bef_txt {
  font-size: 1.4rem;
  line-height: 31px;
}

.ac_baimg_box .content .one_box .txt .bef_txt {
  padding-bottom: 9px;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  position: relative;
}

.ac_baimg_box .content .one_box .txt .aft_txt p {
  font-size: 1rem;
  line-height: 23px;
}

.ac_baimg_box .content .one_box .txt span {
  display: inline-block;
  padding: 15px 45px;
  margin: auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 5px;
  margin-top: 14px;
}

.ac_baimg_box .content .one_box .txt span.last_waku1 {
  background: #5cdeff;
  z-index: 100;
}

.ac_baimg_box .content .one_box span.last_waku2 {
  background: #ffa7f4;
  z-index: 100;
}

.ac_baimg_box .content .one_box span.last_waku3 {
  background: #ffcb14;
  z-index: 100;
}

.ac_baimg_box h3 {
  padding: 80px 0;
  margin: 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.6rem;
}

/* .sit_img_box {
  margin-top: 120px;
} */

.sit_img_box .flex_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sit_img_box .flex_box img {
  width: 330px
}

.sit_img_box p {
  font-size: 2rem;
  margin: 30px 0;
  text-align: center;
}

.sit_img_box p.txt_r {
  padding-left: 50px;
}

.sit_img_box p.txt_l {
  padding-right: 50px;
}

.txt_vr {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
}

.eyebrow_history_box {
  width: 90%;
  margin: 55px auto 80px;
}

.eyebrow_history_box .top {
  display: grid;
  row-gap: 40px;
  margin-bottom: 80px;
  text-align: center;
}

.eyebrow_history_box .top p {
  font-size: 1.5rem;
}

.eyebrow_history_box .top img {
  width: 565px;
  margin: auto;
}

.eyebrow_history_box .history_grid {
  width: 80%;
  margin: 55px auto 30px;
  display: grid;
  row-gap: 28px;
  line-height: 32px;
  letter-spacing: 2px;
  text-align: center;
}

.eyebrow_history_box .history_grid_last {
  font-size: 1.2rem;
  line-height: 43px;
}

.eyebrow_history_box .history_last {
  row-gap: 26px;
  line-height: 50px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}


.eyebrow_history_box .history_grid p.emp_p {
  font-size: 1.1rem;
  line-height: 36px;
}

.eyebrow_history_box .history_grid p.emp_p2 {
  padding: 7px 0 11px;
  font-size: 1.2rem;
  font-weight: bold;
}

.eyebrow_history_box .history_section2 {
  margin-top: 45px;
}

.eyebrow_history_box .history_img_box {
  width: 100%;
  margin: 50px auto 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eyebrow_history_box .history_img_box img {
  width: calc(93% / 3);
}

.eyebrow_history_box .guest_img_box {
  width: 96%;
}

.tech_box {
  width: 90%;
  margin: auto;
  font-family: "big-caslon-fb", serif;
}

.tech_box h2 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 56px;
}

.tech_box .tech_top {
  display: grid;
  row-gap: 29px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 40px;
  letter-spacing: 2px;
}

.tech_box .tech_top1 {
  margin-bottom: 50px;
}

.tech_box .tech_top1 p:first-child {
  font-size: 2rem;
  margin-bottom: 21px;
}

.tech_box .tech_top2 p:last-child {
  font-size: 2rem;
  margin-top: 21px;
}

.tech_img_box {
  margin: 100px 0 120px;
}

.tech_img_box div {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1.3fr 1fr;
}

.tech_img_box div img {
  width: 90%;
  max-width: 310px;
  margin: auto;
}

.video_box {
  margin-bottom: 120px;
}

.video_box .img_box {
  margin-bottom: 60px;
  text-align: center;
}

.video_box .img_box img {
  width: 540px;
}

.video_one_box {
  width: 90%;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-evenly;;
  align-items: center;
}

.video_one_box video {
  width: 400px;
  padding: 0 20px;
}

.video_one_box .comment>p {
  font-size: 1.8rem;
}

.video_one_box .comment_sub {
  display: grid;
  row-gap: 30px;
  padding: 40px 0 0 30px;
  font-size: 1.2rem;
}


.after_review_box {
  /* width: 90%; */
  margin: 0 auto 80px;
  padding: 120px 25px 120px 0;
  text-align: center;
  background-image: url(../images/orange_bk2.JPG);
  background-size: cover;
  color: #3434a5;
  background-color: rgba(255, 255, 255, 0.1);
  background-blend-mode: lighten;
}

.after_review_box .top_txt {
  font-size: 1.2rem;
  margin-bottom: 38px;
}

.after_review_box .top_txt span {
  font-size: 1.5rem;
  display: inline-block;
  padding-left: 30px;
}

.after_review_box .top_txt p:first-child {
  line-height: 41px;
  padding-bottom: 17px;
}

.after_review_box .top_txt div {
  width: 90%;
  margin-left: 8%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.after_review_box .top_txt div span {
  font-size: 1.2rem;
}

.academy_flex_box {
  width: 90%;
  margin: 0 0 30px 8%;
  display: flex;
  justify-content: space-evenly;
}

.academy_flex_box div {
  /* width: calc(100% / 3); */
}

.academy_flex_box .flex_one .title {
  padding: 8px 26px;
  font-size: 1.2rem;
  border: 1px solid;
  border-radius: 50%;
}

.academy_flex_box .flex_one .title span {
  display: inline-block;
  padding-right: 8px;
  font-size: 1rem;  
}

.academy_flex_box .flex_one div {
  text-align: center;
  font-size: 1.1rem;
}

.academy_flex_box .flex_one div p {
  padding-top: 7px;
}

.ac_aft_img_box {
  width: 85%;
  margin: 50px auto 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.ac_aft_img_box img {
  width: calc(70% / 2);
  object-fit: contain;
}


.ac_roll_box {
  width: 100%;
  margin: 0px auto 0px;
  padding: 80px 50px;
  /* background-image: url(../images/orange_bk2.JPG);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.1);
  background-blend-mode: lighten; */

  /* background: #fffcf4; */
}

.ac_roll_box img.title_img {
  width: 520px;
}

.ac_roll_box .ac_flow_content {
  padding-bottom: 50px;
}

.ac_roll_box .top_title_box {
  width: 100%;
  padding-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ac_roll_box .top_title_box div {
  width: 45%;
  position: relative;
}

.ac_roll_box .top_title_box div img.halu_img {
  width: 88%;
}

.ac_roll_box .top_title_box div img.title {
  width: 252px;
  position: absolute;
  bottom: 5px;
  right: 15%;
}

.ac_roll_box h3 {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}

.ac_roll_box h3::after {
  content: "";
  width: calc(100% - 580px);
  border-bottom: 2px solid;
  margin-left: 40px;
}

.ac_roll_box .top_title_box span {
  width: 55%;
  /* margin: auto; */
  display: block;
  background: #fff;
  padding: 10px 25px;
  border: 4px double #ddc6a5;
}

.ac_roll_box .each_box {
  width: 95%;
  margin: auto;
  padding: 30px 0 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.ac_roll_box .each_box .txt_box {
  width: 65%;
}

.ac_roll_box .each_box .txt_box p {
  color: #221b1b;
  margin-top: -5px;
}

.ac_roll_box .each_box span {
  display: inline-block;
  font-size: 1.1rem;
  border: 1px solid;
  padding: 8px;
  text-align: center;
  width: 220px;
  background: #fff7ec;
}

.ac_roll_box .act_img {
  width: 90%;
  margin: 0 auto 55px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.ac_roll_box .act_img img {
  width: calc(83% / 3);
}

.ac_roll_box .img_top_box img:last-child {
  margin-top: 55px;
}

.ac_roll_box .ac_create_box {
  width: 85%;
  margin: auto;
  padding: 50px 0 0;
  text-align: center;
}

.ac_roll_box .ac_create_box img.title {
  width: 485px;
  margin: 0 auto 50px;
  text-align: center;
}

.ac_roll_box .ac_create_box .img_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.ac_roll_box .ac_create_box .img_box img {
  width: calc(100% / 3);
  padding: 0 20px;
}

.form_btnbox {
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
}

.form_btnbox button{
  padding: 1.5rem 7rem;
  font-size: 1.7rem;
  /* color: #fff; */
  background: #fffcf8;
  border-radius: 23px;
  line-height: 40px;
  border: none;
  border: 4px double #ddc6a5;
}


.voice_box {
  width: 100%;
  margin-bottom: 80px;
}

.voice_box img.voice_title {
  width: 520px;
}

.voice_box .voice_sub {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  /* align-items: center; */
}

.voice_content {
  display: grid;
  /* row-gap: 14px; */
  margin: 1.5em 0 3em 0px;
  padding: 26px 16px 30px;
  max-width: calc((100% / 5) - 30px);
  position: relative;
  font-size: 14px;
  line-height: 24px;
  background: #fff;
  color: #455415;
  border: solid 1px #455415;
  box-sizing: border-box;
  border-radius: 20px;

  width: 45%;
  /* background: #fce7f0; */

}

.voice_content p:first-child {
  padding-bottom: 14px;
  font-size: 1rem;
  font-weight: bold;
  color: #e66ea6;
}

.voice_content_r {
  margin: 1.5em 0px 3em 0px;
}

.partner_voice {
  padding: 60px 0;
  background-image: url("../images/crem_bk.jpg");
  background-size: cover;
}

.partner_voice img.title {
  width: 880px;
}

.partner_voice .head_title {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 70px 30px;
}

.partner_box {
  width: 90%;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
}

.partner_box .img_box {
  width: 40%;
  padding-bottom: 5px;
}

.partner_box .mes_all_box {
  width: 690px;
  margin: 30px auto 0;
}

.partner_voice .mes_all_box2 {
  width: 690px;
  margin: 30px auto 0;
}

.partner_box .mes_box {
  width: 90%;
  margin: 26px auto 0;
}

.partner_box .img_box img:last-child {
}

.partner_box .img_box img.name {
  width: 210px;
  margin-bottom: 10px;
}

.partner_box .img_box img.name_l {
  width: 100px;
}

.partner_box .img_box img.name_l2 {
  width: 165px;
}

.client_box {
  width: 100%;
  /* margin: 80px 0 100px; */
  padding: 55px 0;
  /* height: 90vh; */
  /* background-image: url(../images/pk_bk.JPG);
  background-size: cover; */
}

.client_box .client_inner {
  text-align: center;
  padding: 30px 0;
}

.client_box img.title {
  width: 250px;
}

.client_inner .swiper {
  width: 75%;
  margin: auto;
  padding-bottom: 15px;
}

.client_inner .swiper .swiper_txt_box {
  width: calc(100% - 350px);
  display: grid;
  row-gap: 16px;
  padding: 46px 30px 60px;
  font-family: Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
}

.client_inner .swiper .swiper_txt_box p {
  padding-left: 30px;
  text-align: left;
  font-size: 0.95rem;
}

.client_inner .swiper .swiper_txt_box span {
  display: block;
  font-size: 26px;
  margin-bottom: 5px;
  letter-spacing: 6px;
  /* text-align: left; */
  color: #e081b2;
}

.client_inner .swiper .review_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0;
}

.client_inner .swiper .review_box img.top {
  width: 350px;
}

.client_inner .swiper .review_box img.top_min {
  width: 330px;
}

.client_inner .swiper .swiper_txt_box span img {
  width: 30px;
}

.company_box {
  width: 80%;
  margin: auto;
  padding: 55px 0;
}

.company_box h3 {
  position: relative;
  padding-right: 50px;
}

.company_box h3 img {
  width: 116px;
  position: absolute;
  top: -24px;
  margin-left: 53px;
}

.company_box dl {
  width: 690px;
  margin: 80px auto 0;
}


.company_box dt {
  width: 100px;
  float: left;
  padding: 0px 10px;
  margin-bottom: 10px;
  background: #0d4f71;
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  text-align: center;
}

.company_box dd {
  padding: 3px 10px 6px 120px;
  margin-bottom: 8px;
  border-bottom: 0.7px solid #0d4f71;
}


.last_img_box {
  display: flex;
  align-items: center;
  margin: 50px 0 100px;
}

.last_img_box img {
  width: calc(100% / 3);
}

.about_last_box {
  width: 1025px;
  margin: 80px auto 100px;
  padding: 50px 50px;
  background-image: url(../images/img_about_frame.png);
  background-size: cover;
}

.about_last_box h4 {
  text-align: center;
  border-bottom: 0.8px solid;
  padding-bottom: 14px;
  font-size: 1.6rem;
}

.about_last_box .inner {
  display: grid;
  row-gap: 20px;
  padding-top: 30px;
  text-align: center;
}

.about_us {
  width: 80%;
  margin: 150px auto;
  text-align: center;
}

.about_us img {
  width: 40%;
  text-align: center;
  margin-bottom: 65px;
}

.about_us .video_box {
  margin-bottom: 120px;
  display: flex;
  justify-content: space-evenly;
}

.last {
  width: 90%;
  margin: 200px 0 80px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.last div {
  width: 50%;
  text-align: center;
  font-size: 1.3rem;
  line-height: 63px;
}

.last img {
  width: 41%;
}


/*================================================
  フッター
==================================================*/
#copyright {
  width: 100%;
  font-size: 11px;
}

.exp_video_box {
  width: 890px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 50px 0 80px;
  background: #fff;
}

.exp_video_box p {
  font-size: 1.8rem;
  font-family: "big-caslon-fb", serif;
  padding-bottom: 20px;
}

.exp_video_box iframe {
  width: 83%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 560 / 315;
}

@media only screen and (max-width: 1200px) {
  /* アカデミー画面 */
  .top_img_fstbox .top_txt .img3box img.circle3_img {
    width: 340px;
    margin-bottom: 40px;
  }

  .top_img_fstbox .top_txt .img3box img.full_img {
    width: 500px;
  }

  .top_img_fstbox .top_txt div.img3box p {
    font-size: 1.7rem;
  }

}
@media only screen and (max-width: 480px) {
  body {
    font-feature-settings: 'palt';
    font-size: 16px;
    line-height: 28px;
  }

  .disp_pc {
    display: none;
  }

  .disp_sp {
    display: block;
  }

  .lower_container {
    padding-bottom: 0px;
  }

  .color_blue {
    font-size: 1rem;
  }

  .swiper-slide img {
    height: auto;
    width: 100%;
  }

  .box_header .pos_ab {
    width: 115px;
    top: -12px;
    left: 15px;
  }

  .sp-menu_box {
    height: 115px;
    top: -9px;
  }

  .sp-menu_list {
    width: 100%;
    padding: 140px 40px 0;
    letter-spacing: 4px;
  }

  .sp-menu_list li {
    padding-bottom: 5px;
    padding-left: 5px;
  }


  header {
    height: 95px;
  }

  .box_header {
    height: 95px;
  }

  .nav_box a {
    display: none;
  }

  .nav_box {
    height: 95px;
  }

  .box_footer {
    padding-top: 0;
    padding-bottom: 15px;
  }

  #copyright {
    padding-top: 70px;
    font-size: 11px;
  }

  .top_main_img h2 {
    font-size: 1.5rem;
  }

  .top_main_img h1 {
    font-size: 1.3rem;
    top: 59%;
    left: 33%;
  }

  .top_main_img h1 span {
    margin-top: -2px;
    padding-top: 0;
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .top_main_img .pos_ab {
    width: 27%;
    bottom: -8px;
  }

  .lower_container h2.top_main_title {
    width: 100%;
    /* margin-top: 21px; */
    padding: 14px 8vw;
    font-size: 1.3rem;
  }
  
  .menu_box {
    width:98%;
    /* display: block; */
    text-align: center;
    margin: 30px auto;
  }

  .menu_box .menu_one_box {
    width: 45%;
    padding: 9px 0;
    text-align: center;
    margin: 0 auto 20px;
  }

  .menu_box .menu_one_box:nth-child(2) {
    padding: 12px 0;
  }

  .menu_box .menu_one_box:nth-child(3) {
    padding: 7px 0 12px;
    padding: 0px 0 12px;
  }

  .menu_box .menu_one_box:nth-child(3) img {
    width: 75%;
  }

  .menu_box .menu_one_box:nth-child(4) img {
    width: 83%;
    padding: 7px 0px;
  }

  .menu_box .menu_one_box .menu_btn1 {
    margin-top: -6px;
    padding: 0px 0px 6px;
  }

  .menu_box .menu_one_box .menu_btn1 img {
    width: 220px;
    width: 154px;
  }

  .menu_box .menu_one_box .menu_btn2 img {
    width: 80%;
  }

  .ac_fam_imgbox {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .ac_fam_imgbox img {
    width: calc(100% / 2);
  }

  .top_img_fstbox .top_txt {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 85px;
    flex-direction: column-reverse;
  }

  .top_img_fstbox .top_txt div {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 5px;
    row-gap: 17px;
    font-size: 1rem;
    text-align: center;
  }

  .top_img_fstbox .top_txt img.full_img {
    width: 280px;
    margin: 0px auto 25px;
  }

  .top_img_fstbox .top_txt img.circle3_img {
    width: 245px;
    margin: 0px auto 35px;
  }

  .top_img_fstbox .top_txt img.follow_img {
    width: 305px;
    margin: auto;
    padding-left: 15px;
  }

  .top_img_fstbox .top_txt img.top_img_main {
    width: 65%;
    margin: 0px 0 65px 35%;
  }

  .top_img_fstbox .img_box {
    display: none;
  }

  .top_img_fstbox .top_txt .img3box {
    width: 90%;
    padding: 0;
    margin: auto;
  }

  .top_img_fstbox .top_txt .img3box img.circle3_img {
    width: 270px;
    margin-bottom: 25px;
  }

  .top_img_fstbox .top_txt .img3box img.full_img {
    width: 100%;
    margin: 0 0 10px 11px;
  }

  .top_img_fstbox .top_txt div.img3box p {
    font-size: 1.3rem;
  }

  .top_img_fstbox .img_ver_box .flex_box {
    display: block;
    /* width: 90%; */
    width: 100%;
    margin: auto;
  }

  .top_img_fstbox .img_ver_box p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .top_img_fstbox .img_box_sp {
    width: 100%;
    display: block;
  }

  .top_img_fstbox .img_box_sp div {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }

  .top_img_fstbox .img_box_sp div:first-child img.pers_img {
    width: 45%;
    margin-top: 0px;
  }

  .top_img_fstbox .img_box_sp div:first-child img.txt_img {
    width: 200px;
    position: absolute;
    bottom: 26%;
    right: 7px;
  }

  .top_img_fstbox .img_box_sp div:nth-child(2) img.pers_img {
    width: 64%;
    margin-left: 36%;
    margin-top: 110px;
    padding: 0;
  }

  .top_img_fstbox .img_box_sp div:nth-child(2) img.txt_img {
    width: 265px;
    position: absolute;
    top: 9px;
    left: 22px;
  }

  .top_img_fstbox .img_box_sp div:last-child img.pers_img {
    width: 45%;
    margin-top: 0px;
  }

  .top_img_fstbox .img_box_sp div:last-child img.txt_img {
    width: 195px;
    position: absolute;
    top: 40%;
    right: 10px;
  }

  .ac_char_box {
    padding: 45px 0 60px;
  }

  .ac_char_box .inner {
    width: 100%;
  }

  .ac_char_box .inner .header h2 {
    padding: 0;
    font-size: 32px;
    line-height: 41px;
  }

  .ac_char_box .inner .header p {
    margin-top: 5px;
  }

  .ac_char_box .inner .list_group {
    margin-top: 50px;
  }

  .ac_char_box .inner .list_group .list {
    width: 90%;
    margin: auto;
    margin: 20px auto;
    border-radius: 42px;
  }

  .ac_char_box .inner .list_group .list .thunb img {
    margin-top: 20px;
  }

  .ac_char_box .inner .list_group .list .thunb1 img {
    width: 220px;
  }

  .ac_char_box .inner .list_group .list .thunb2 img {
    display: none;
  }

  .ac_char_box .inner .list_group .list .thunb5 img,
  .ac_char_box .inner .list_group .list .thunb6 img {
    width: 78%;
  }

  .ac_class_box .contenet {
    display: block;
  }

  .ac_class_box .one_box {
    width: 90%;
    margin: 20px auto;
    padding: 30px 20px 23px;
  }

  .ac_class_box .one_box .img_box {
    margin: 0 auto 18px;
  }

  .ac_class_box .one_box .img_box img {
    margin: 0px auto;
  }

  .media_box {
    margin: 50px auto 100px;
  }

  .media_box .m_txt_box {
    width: 80%;
    margin: 0 auto 25px;
    font-size: 16px;
    line-height: 24px;
  }

  .media_box .img_box {
    display: flex;
    flex-wrap: wrap;
  }

  .media_box .img_box img {
    width: calc(100% / 3);
  }

  .media_box .article_box {
    display: block;
    width: 80%;
  }

  .media_box .article_box .txt_box {
    padding-top: 25px;
  }

  .media_box .article_box .txt_box p {
    font-size: 1.2rem;
    text-align: center;
  }

  .media_box .article_box .txt_box img {
    position: absolute;
    top: 23px;
    left: 46px;
  }

  .ac_baimg_box .content .one_box {
    padding: 50px 10px 35px;
  }

  .ac_baimg_box .content .one_box img.route_icon {
    width: 50px;
  }

  .ac_baimg_box .content > .one_box:first-child .txt .bef_txt {
    font-size: 1.4rem;
  }

  .ac_baimg_box .content .one_box .txt .bef_txt {
    font-size: 1.3rem;
  }

  .ac_baimg_box .content > .one_box:last-child .txt .bef_txt {
    font-size: 0.95rem;
    line-height: 23px;
  }

  .ac_baimg_box .content .one_box .txt .aft_txt p {
    font-size: 12px;
    line-height: 20px;
  }

  .ac_baimg_box .content .one_box .txt span {
    padding: 9px 15px;
    font-size: 1.3rem;
    letter-spacing: 3px;
  }

  .ac_baimg_box h3 {
    font-size: 21px;
    line-height: 2.2rem;
  }

  .sit_img_box .flex_box {
    padding: 20px 0;
    flex-direction: column-reverse;
  }

  .sit_img_box .flex_box img {
    width: 280px;
    margin-bottom: 35px;
  }

  .sit_img_box p {
    font-size: 1.8rem;
  }

  .sit_img_box p.txt_l {
    padding: 0;
    margin-top: -5px;
  }

  .sit_img_box p.txt_r {
    padding: 0;
  }

  .sit_img_box p.txt_vr {
    writing-mode: inherit;
  }

  .q_and_a_box {
    width: 100%;
    text-align: center;
  }

  .q_and_a_box img.title{
    width: 90%;
  }

  .accordion-container {
    width: 80%;
    margin: 20px auto 0;
  }

  .accordion-title {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 1.25em;
    font-weight: normal;
    cursor: pointer;
    color: #ff9532;
    bottom: -100%;
    left: 0;
    padding-left: 10px;
    border-bottom: solid 2px #ff9532;
  }

  .accordion-title::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    transform: rotate(90deg);
    background-color: #ff9532;
    transition: all 0.3s ease-in-out;
  }

  .q-txt {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }

  .q-fig {
    text-align: left;
    font-size: 50px;
    opacity: 0.6;
    font-weight: bold;
    margin-right: 20px;
  }

  hr {
    background-color: #ff9532;
    border: 1px solid #ff9532;
    margin: 0;
  }

  .accordion-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    background-color: #ff9532;
    transition: all 0.2s ease-in-out;
  }

  .accordion-content {
    background-color: #ffe7d0;
    padding-left: 10px;
    padding-top: 10px;
  }

  .a-txt {
    text-align: left;
    font-size: 20px;
    margin: 0;
    font-weight: bold;
  }

  .a-fig {
    text-align: left;
    font-size: 50px;
    opacity: 0.6;
    font-weight: bold;
    margin-right: 20px;
    color: #ff9532;
  }


  .eyebrow_history_box {
    width: 100%;
    margin: 80px auto 60px;
  }

  .eyebrow_history_box .top {
    flex-wrap: wrap;
    justify-content: center;
  }

  .eyebrow_history_box .top p {
    font-size: 1.2rem;
  }

  .eyebrow_history_box .top img {
    width: 95%;
    margin-top: 20px;
  }

  .eyebrow_history_box .history_grid {
    width: 100%;
    margin: 45px auto 0px;
    row-gap: 20px;
    line-height: 26px;
    letter-spacing: 1px;
    font-size: 0.9rem;
  }

  .eyebrow_history_box .history_img_box {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
  }

  .eyebrow_history_box .history_img_box img {
    width: calc(100% / 2);
    padding: 30px 7px 0;
  }

  .eyebrow_history_box .guest_img_disp_pc {
    display: none;
  }

  .swiper {
    width:80%;
    margin: 30px auto 0;
    padding-bottom: 35px;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -5px;
  }

  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #5f5f5f;
  }

  .eyebrow_history_box .history_grid p.emp_p {
    font-size: 1rem;
    line-height: 31px;
  }

  .mennu_box2 {
    margin-top: -21px;
  }

  .ac_box h3 .main_img {
    width: 80%;
    margin-left: 32px;
  }

  .ac_box h3 {
    padding: 75px 0 30px;
  }

  .ac_box h3 span {
    font-size: 1.1rem;
    padding-right: 20px;
    padding-top: 15px;
  }

  .ac_box .full_course span {
    font-size: 1.1rem;
  }

  .ac_box .full_course span::before {
    content: "";
    width: 17px;
    height: 17px;
    margin-right: 10px;
    border: 1px solid;
    background: #221b1b;
  }

  .ac_box .full_course span::after {
    content: none;
  }

  .ac_box .full_course {
    padding-bottom: 12px;
  }

  .ac_box .full_course li {
    list-style: disc;
    font-size: 0.95rem;
  }


  .ac_box .full_course2 {
    font-size: 0.9rem;
    padding: 0 16px;
    margin-bottom: 80px;
  }

  .ac_box .full_course p {
    padding: 10px 0px 2px 10px;
    letter-spacing: 2px;
    line-height: 25px;
    font-size: 0.9rem;
    line-height: 23px;
  }

  .about_last_box {
    padding: 70px 40px 50px;
    background-position: -45px 0px;
  }

  .about_last_box h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .about_last_box .inner { 
    font-size: 0.9rem;
    line-height: 25px;
    row-gap: 27px;
  }

  .last_img_box { 
    flex-wrap: wrap;
    justify-content: center;
  }

  .last_img_box img {
    width: calc(100% / 2);
  }

  .voice_box {
    background-image: url(../images/pk_bk.JPG);
    background: #fffcf4;
    /* height: 80vh; */
    background-size: cover;
    background-position: 0 -175px;
    padding-bottom: 45px;
  }

  .voice_box .voice_sub {
    margin-top: 45px;
  }

  .voice_box img.voice_title {
    /* 円なしの場合 */
    /* width: 220px;
    margin-top: 65px;
    margin-left: 30px; */

    /* 円有りの場合 */
    width: 280px;
    margin-top: -24px;
    margin-left: -52px;
    margin-bottom: 21px;

    width: 100%;
    margin-top: -17px;
    margin-left: -20px;
    margin-bottom: 8px;
  }

  .voice_content {
    display: grid;
    /* row-gap: 14px; */
    margin: 0em 0 1em 50px;
    padding: 20px 16px;
    max-width: 85%;
    position: relative;
    font-size: 14px;
    line-height: 24px;
    background: #fff;
    color: #455415;
    border: solid 1px #455415;
    box-sizing: border-box;
    border-radius: 20px;

    width: 100%;
  }

  .voice_content:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -42px;
    margin-top: -12px;
    border: 21px solid transparent;
    border-right: 21px solid #FFF;
    z-index: 2;
  }
  
  .voice_content:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -46px;
    margin-top: -14px;
    border: 23px solid transparent;
    border-right: 23px solid #455415;
    z-index: 1;
  }

  .voice_content_r {
    margin: 1.5em 50px 3em 30px;
  }

  .voice_content_r:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -36px;
    left: inherit;
    margin-top: -12px;
    border: 18px solid transparent;
    border-left: 18px solid #FFF;
    z-index: 2;
  }
  
  .voice_content_r:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    left: inherit;
    margin-top: -14px;
    border: 20px solid transparent;
    border-left: 20px solid #455415;
    z-index: 1;
  }

  .partner_voice {
    width: 100%;
    margin: 100px 0 45px;
    padding: 65px 0 30px;
    background: #fffbff;
  }

  .partner_voice img.title {
    width: 280px;
    margin-left: 16px;
  }

  .partner_voice .partner_box {
    width: 90%;
    margin: 0 auto 45px;
    display: block;
  }

  .partner_box .img_box {
    width: 90%;
    margin: auto;
  }

  .partner_box .img_box img:last-child {
    bottom: 4px;
    right: 6%;
  }

  .partner_box .img_box img.name {
    width: 252px;
  }

  .partner_box .img_box img.name_l {
    width: 90px;
    margin-bottom: 10px;
  }

  .partner_box .img_box img.name_l2 {
    width: 130px;
    margin-bottom: 10px;
  }

  .partner_box .mes_all_box {
    width: 100%;
    margin: 20px auto 0;
  }

  .partner_box .mes_box {
    width: 95%;
    margin: 0px auto 0;
    padding: 0;
  }

  .partner_box .mes_box img {
    width: 100%;
  }

  .client_box {
    width: 100%;
    /* margin: 80px 0 100px; */
    margin: 0px 0 100px;
    height: 140vh;
    background-image: url(../images/pk_bk.JPG);
  }

  .client_box .client_inner {
    margin: auto;
    padding: 15px 0px 40px;
    /* border: 4px solid #b19759; */
    text-align: center;
  }

  .client_box .client_inner img.title {
    width: 240px;
  }

  .client_box .client_inner img.sub_title {
    width: 260px;
    padding-top: 10px;
  }

  .client_inner .swiper {
    width: 290px;
    width: 100%;
  }

  .client_inner .swiper .review_box {
    display: block;
  }

  .client_inner .swiper .swiper_txt_box {
    width: 330px;
    display: grid;
    row-gap: 12px;
    margin: 15px auto;
    padding: 35px 30px 40px;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    border: 2px solid #8c8c8c;
    border-bottom: 3px solid ;
    border-right: 2px solid ;
    border-radius: 12px;
    font-family: Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  }

  .client_inner .swiper .swiper_txt_box p {
    padding-left: 0px;
  }

  .client_inner .swiper .swiper_txt_box span {
    font-size: 23px;
    margin-bottom: 8px;
    letter-spacing: 6px;
    float: left;
    text-align: left;
    color: #e081b2;
  }

  .client_inner .swiper .review_box img.top {
    margin-bottom: 30px;
  }

  .client_inner .swiper .review_box img.top_min {
    width: 330px;
  }



  .about_us {
    width: 100%;
    margin: 95px auto 80px;
  }

  .about_us img {
    width: 75%;
    margin-bottom: 45px;
  }

  .about_us .video_box {
    /* display: block; */
  }

  .about_us .video_box iframe {
    margin-bottom: 40px;
    width: 50%;
    height: 275px;
  }

  .last {
    width: 100%;
    flex-wrap: wrap;
    margin: auto;
    flex-direction: column-reverse;
  }

  .last img {
    width: 65%;
    margin-bottom: 45px;
  }

  .last div {
    width: 100%;
    font-size: 1rem;
    line-height: 32px;
  }

  .last_img_box {
    margin-bottom: 100px;
  }

  .ac_roll_box {
    padding: 0;
  }

  .ac_flow_content {
    padding: 0px 25px 80px;
  }

  .ac_roll_box img.title_img {
    width: 100%;
    margin-top: -17px;
    margin-left: -20px;
    margin-bottom: 8px;
  }

  .ac_roll_box .top_title_box {
    display: block;
  }

  .ac_roll_box .top_title_box div {
    width: 95%;
    margin: auto;
  }

  .ac_roll_box .top_title_box div img.halu_img {
    width: 92%;
    object-position: 0px -17px;
    margin-left: 0;
  }

  .ac_roll_box .top_title_box div img.title {
    width: 225px;
    position: absolute;
    bottom: 17px;
    right: 10%;
  }

  .ac_roll_box .top_title_box span {
    width: 92%;
    font-size: 0.9rem;
    margin: 16px auto 0;
    padding: 16px 25px;
    line-height: 24px;
  }

  .ac_roll_box .top_title_box {
    padding-bottom: 55px;
    text-align: center;
  }

  .ac_roll_box .each_box .txt_box {
    width: 100%;
    margin-right: 0;
  }

  .ac_roll_box .each_box .txt_box p {
    text-align: left;
    font-size: 0.9rem;
    line-height: 23px;
  }

  .ac_roll_box .each_box {
    padding: 45px 0 20px;
    flex-wrap: wrap;
  }

  .ac_roll_box .act_img {
    flex-wrap: wrap;
    margin-bottom: 35px;
  }

  .ac_roll_box .act_img img:first-child {
    width: 60%;
    margin-bottom: 22px;
  }

  .ac_roll_box .act_img img {
    width: calc(94% / 2);
  }

  .ac_roll_box .each_box span {
    margin-bottom: 20px;
  }

  .ac_roll_box .ac_create_box {
    width: 100%;
  }

  .ac_roll_box .ac_create_box img.title {
    width: 300px;
    margin: 0 auto 35px;
  }

  .ac_roll_box .ac_create_box .img_box img {
    padding: 0;
  }

  .form_btnbox {
    margin: 45px 0 0;
  }

  .form_btnbox button {
    padding: 1rem 3rem;
    font-size: 1.3rem;
    line-height: 31px;
  }

  /*================================================
    フッター
  ==================================================*/
  #copyright {
    width: 100%;
    font-size: 11px;
  }

  .about_last_box {
    width: 100%;
    padding: 80px 35px 5px;
    background-image: url(../images/img_about_frame.png);
    background-size: cover;
    object-position: 0 0px;
  }

  .accordion_one {
    max-width: 90%;
    margin: 0 auto;
  }

  .accordion_one .accordion_header {
    background-color: #db0f2f;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    padding: 20px 11%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
  }

  .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }

  .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }

  .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }

  .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
  }

  .accordion_one .accordion_header .i_box .one_i:before, .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #fff;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }

  .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
  }

  .accordion_one .accordion_inner {
    display: none;
    padding: 30px 30px;
    border-left: 2px solid #db0f2f;
    border-right: 2px solid #db0f2f;
    border-bottom: 2px solid #db0f2f;
    box-sizing: border-box;
  }

  .accordion_one .accordion_inner .box_one {
    height: 300px;
  }

  .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
  }

  .top_main_img {
    width: 100%;
    margin-top: 100px;
    padding-bottom: 30px;
  }

  .exp_box {
    display: none;
  }

  .exp_box_sp {
    display: block;
    text-align: center;
    margin-bottom: 120px;
  }

  .exp_box_sp h1 {
    font-size: 1.8rem;
  }

  .exp_box_sp .sp_content {
    width: 90%;
    margin: auto;
    padding: 28px 0 0;
  }

  .exp_box_sp .sp_content .exp_sub_title_sp span {
    display: block;
    font-size: 1.1rem;
  }

  .exp_box_sp .sp_content .exp_sub_title_sp span:first-child {
    border-bottom: 1px solid;
    display: inline-block;
    margin-bottom: 9px;
  }

  .exp_box_sp .sp_content div:nth-child(2) {
    padding-top: 30px;
    line-height: 24px;
    font-size: 14px;
  }

  .exp_box_sp button {
    width: 200px;
    margin-top: 30px;
    padding: 0.3rem 1.5rem;
    font-size: 14px;  
  }

  .top_img_box {
    display: none;
  }

  .top_img_box_sp {
    display: block;
    max-width: 95%;
    margin: auto;
    padding: 40px 0 30px;
  }
  
  .top_img_box_sp h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .top_img_box_sp .content {
    width: 83%;
    margin: auto;
  }

  .top_img_box_sp .content > .img_one_box:last-child .txt span { 
    font-size: 13px;
    padding-right: 22px;
  }


  .top_img_box_sp .img_one_box {
    width: 100%;
    margin: 0 0 75px;
  }

  .top_img_box_sp .img_one_box .txt {
    text-align: center;
    padding-top: 24px;
  }

  .top_img_box_sp .img_one_box .txt div {
    margin-top: 16px;
  }

  .top_img_box_sp .img_one_box .txt div button {
    border: none;
    color: #080808;
    background-color: #f3f3f3;
    box-shadow: 7px -9px 12px 0px #fff, 4px 4px 8px rgb(0 0 0 / 24%);
  }

  .company_box {
    padding-bottom: 0;
  }

  .company_box h3 {
    text-align: left;
    line-height: 35px;
    margin-bottom: 40px;
    padding-right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .company_box h3 img {
    width: 107px;
    margin-left: 0;
    position: inherit;
    top: inherit;
    bottom: 0;
  }

  .company_box dl {
    width: 100%;
    margin-top: 40px;
  }

  .company_box dt {
    float: initial;
    margin-bottom: 6px;
  }

  .company_box dd {
    margin-bottom: 15px;
    padding: 0px 10px 6px 20px;
  }
}

@media only screen and (max-width: 400px) {
  .client_box {
    height: 180vh;
  }
}