@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap");
body {
  font-family: "Noto Sans JP", "Helvetica", "Hiragino Sans", "メイリオ", sans-serif;
  color: #383838;
  font-size: 24px;
  font-weight: bold;
  background-color: #FFF9EA;
  background-image: url("../img/background_radius.svg");
  background-size: 100%;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
}

main {
  min-height: 100vh;
}

.txt_orange {
  color: #FF7F3F;
}

.btn_orange {
  width: 300px;
  height: 80px;
  background: #FF7F3F;
  box-shadow: 0px 6px 0px #FFAE0B;
  border-radius: 100px;
  margin: 30px auto;
  font-size: 25px;
  color: #fff;
  line-height: 75px;
}
@media screen and (max-width: 480px) {
  .btn_orange {
    width: 100%;
    height: 55px;
    line-height: 55px;
  }
}
.btn_orange:hover {
  opacity: 0.7;
}
.btn_orange a {
  display: block;
}

@media screen and (max-width: 480px) {
  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .sp_only {
    display: none;
  }
}

a img:hover {
  opacity: 0.7;
}

header {
  position: fixed;
  z-index: 99;
  width: 100%;
}

.con_header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .con_header {
    width: 100vw;
    height: auto;
    padding: 4px 0;
    display: block;
    background-color: #fff;
    box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  }
}

.header_logo {
  width: 190px;
  margin: 25px 80px;
}
@media screen and (max-width: 480px) {
  .header_logo {
    width: 120px;
    margin: 10px;
  }
}
.header_logo img {
  width: 100%;
}

.sp_menu_con {
  position: absolute;
  right: 10px;
  top: 5px;
}

.overlay {
  background-color: #000;
  height: 100vh;
  left: 0;
  top: 0;
  transition: all 0.4s cubic-bezier(0.85, 0, 0.15, 1);
  opacity: 0;
  position: fixed;
  visibility: hidden;
  width: 100vw;
  z-index: -4;
}
.overlay.active {
  opacity: 0.7;
  visibility: visible;
}

.hamburger {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #FF7F3F;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 11px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}
.hamburger span:nth-of-type(1) {
  top: 7px;
}
.hamburger span:nth-of-type(2) {
  top: 13px;
}
.hamburger span:nth-of-type(3) {
  top: 19px;
}
.hamburger span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: -6px;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}
.hamburger.active span:nth-of-type(1) {
  top: 7px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  top: 19px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.hamburger.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 7px;
  left: 0px;
  font-size: 11px;
}

.header_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  background: #FFFFFF;
  border-radius: 0px 0px 0px 40px;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 20px 120px 20px 50px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .header_menu {
    top: inherit;
    right: inherit;
    display: block;
    opacity: 0;
    position: fixed;
    visibility: hidden;
    width: 80%;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(130%);
    margin-left: 130%;
    transition: 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .header_menu.active {
    margin-left: 20%;
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
    transition: 0.4s cubic-bezier(0.85, 0, 0.15, 1);
  }
}
.header_menu li {
  margin: auto 0;
  padding: 10px 0;
  position: relative;
}
@media screen and (max-width: 480px) {
  .header_menu li {
    padding: 0;
    text-align: center;
  }
  .header_menu li::after {
    position: absolute;
    width: 100%;
    content: "";
    border-bottom: 1px solid #ddd;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .header_menu li a {
    display: block;
    padding: 20px 0;
  }
}
.header_menu li:nth-child(1) {
  cursor: pointer;
  padding: 10px 15px;
}
@media screen and (max-width: 480px) {
  .header_menu li:nth-child(1) {
    padding: 0;
    padding-top: 20px;
  }
}
.header_menu li:hover {
  color: #FF7F3F;
}
.header_menu li:hover .tasufuku_menu {
  display: block;
  color: #383838;
}
.header_menu li .tasufuku_menu {
  display: none;
  position: absolute;
  text-align: center;
  border-radius: 0px 0px 20px 20px;
  background-color: #fff;
  margin-left: -5px;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .header_menu li .tasufuku_menu {
    display: block;
    position: relative;
    border-radius: 0;
    background: #FFF9EA;
    margin: 0;
    margin-top: 20px;
  }
}
.header_menu li .tasufuku_menu li {
  padding: 15px 0;
}
@media screen and (max-width: 480px) {
  .header_menu li .tasufuku_menu li {
    padding: 0;
  }
}
.header_menu li .tasufuku_menu li a {
  padding: 15px 15px;
}
@media screen and (max-width: 480px) {
  .header_menu li .tasufuku_menu li a {
    display: block;
    padding: 20px 0;
  }
}
.header_menu li .tasufuku_menu li:hover {
  background-color: #FFF2D9;
  color: #FF7F3F;
}
.header_menu li .tasufuku_menu li:hover:nth-child(2) {
  border-radius: 0px 0px 20px 20px;
}
@media screen and (max-width: 480px) {
  .header_menu li .tasufuku_menu li:hover:nth-child(2) {
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .header_menu .outside::before {
    position: absolute;
    width: 100%;
    content: "";
    border-bottom: 1px solid #ddd;
    left: 0;
    bottom: 0;
  }
}
.header_menu .outside::after {
  position: absolute;
  content: "";
  background-image: url("../img/icon_outside.svg");
  width: 12px;
  height: 11px;
  left: 115%;
  top: 35%;
}
@media screen and (max-width: 480px) {
  .header_menu .outside::after {
    left: 63%;
    top: 38%;
  }
}

.footer_btn {
  width: 100vw;
}
.footer_btn p {
  position: fixed;
  bottom: 150px;
  right: -85px;
  width: 200px;
  color: #fff;
  rotate: -90deg;
  background-color: #06C755;
  font-size: 16px;
  padding: 15px 25px 40px 25px;
  border-radius: 20px 20px 0 0;
  transition: all 0.2s;
  z-index: 80;
}
@media screen and (max-width: 480px) {
  .footer_btn p {
    text-align: center;
    rotate: initial;
    bottom: -25px;
    right: 0;
    padding: 15px 8px 40px;
    font-size: 14px;
    width: 170px;
  }
}
.footer_btn p:hover {
  right: -75px;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .footer_btn p:hover {
    right: 0;
    bottom: -15px;
  }
}
.footer_btn p a {
  display: block;
}

footer {
  background-color: #FFF2D9;
  font-size: 18px;
  font-weight: 400;
}
footer p {
  font-weight: 300;
  font-size: 12px;
  color: #A0A0A0;
  letter-spacing: 0.05rem;
  padding: 0px 50px 15px;
}
@media screen and (max-width: 480px) {
  footer p {
    padding: 10px;
    text-align: center;
  }
}

.con_footer {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  .con_footer {
    width: 100vw;
    display: block;
    text-align: center;
  }
}

.info_link {
  display: flex;
  font-size: 14px;
  font-weight: 300;
  line-height: 48px;
}
@media screen and (max-width: 480px) {
  .info_link {
    justify-content: center;
  }
}
.info_link a:hover {
  opacity: 0.8;
}
.info_link li {
  margin: auto 0;
  margin-right: 25px;
}

.footer_btn_yoko p {
  text-align: center;
  width: 200px;
  color: #fff;
  background-color: #06C755;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 5px;
  border-radius: 5px;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .footer_btn_yoko p {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    width: 170px;
    margin: 0 auto;
  }
}
.footer_btn_yoko p:hover {
  transition: all 0.2s;
  opacity: 0.8;
}
.footer_btn_yoko p a {
  display: block;
}

.con_fv {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .con_fv {
    flex-flow: column-reverse;
    margin: 0;
  }
}
.con_fv .main_copy {
  width: 45%;
  font-size: 55px;
  font-weight: bold;
  line-height: 4.5rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .con_fv .main_copy {
    width: 100vw;
    font-size: 40px;
    text-align: center;
    line-height: 50px;
  }
}
.con_fv .main_copy h1 {
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 500px;
  height: 150px;
}
@media screen and (max-width: 480px) {
  .con_fv .main_copy h1 {
    position: relative;
    width: 100vw;
    height: auto;
    top: 30px;
  }
}
.con_fv .swiper {
  width: 55%;
  border-radius: 0px 0px 0px 100px;
}
@media screen and (max-width: 480px) {
  .con_fv .swiper {
    width: 90%;
    margin: 0 0 0 auto;
    height: 85vh;
  }
}
.con_fv .swiper img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .con_fv .swiper img {
    height: 100%;
    width: auto;
  }
}

.all_con_box {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .all_con_box {
    width: 95vw;
    padding-top: 60px;
  }
}

.con_copy h2 {
  font-size: 35px;
  color: #FF7F3F;
  font-weight: bold;
  padding: 40px 0;
}
@media screen and (max-width: 480px) {
  .con_copy h2 {
    font-size: 26px;
    padding: 20px 0;
  }
}

.con_top {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .con_top {
    flex-flow: column;
  }
}
.con_top .box {
  background-color: #fff;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  border-radius: 60px 60px 0px 60px;
  padding: 20px;
  width: 25%;
}
@media screen and (max-width: 480px) {
  .con_top .box {
    width: 100%;
    position: relative;
    border-radius: 40px 40px 0px 40px;
  }
}
.con_top .box:nth-child(2) {
  margin: 0 30px;
}
@media screen and (max-width: 480px) {
  .con_top .box:nth-child(2) {
    margin: 20px 0;
  }
}
.con_top .box .num {
  font-size: 55px;
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
}
.con_top .box h3 {
  font-size: 35px;
  font-weight: bold;
  margin: 20px 0;
}
@media screen and (max-width: 480px) {
  .con_top .box h3 {
    font-size: 30px;
    position: absolute;
    top: 20px;
    left: 120px;
  }
}
.con_top .box h3 span {
  background: linear-gradient(transparent 60%, #A7EA13 60%);
}
.con_top .box .row2 {
  margin: 0;
  margin: 0 0 20px 20px;
}
.con_top .box .txt {
  padding: 0 30px;
  font-size: 19px;
  color: #FF7F3F;
  font-weight: bold;
  margin: 40px 0 20px;
  line-height: 1.3rem;
}
@media screen and (max-width: 480px) {
  .con_top .box .txt {
    margin: 20px 0;
    padding: 0;
    font-size: 16px;
  }
}
.con_top .box .nomar {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .con_top .box .nomar {
    margin-top: 30px;
  }
}

.con_about {
  font-size: 45px;
  line-height: 75px;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .con_about {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 60px;
  }
}

.con_info {
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .con_info {
    margin-bottom: 60px;
  }
}
.con_info .title {
  text-align: left;
  margin-bottom: 10px;
  margin-left: 30px;
}
@media screen and (max-width: 480px) {
  .con_info .title {
    margin-left: 20px;
  }
}
.con_info .window {
  background: #FFFFFF;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  border-radius: 100px;
}
.con_info .window li {
  display: flex;
  padding: 20px 50px;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .con_info .window li {
    font-size: 14px;
    display: block;
    text-align: left;
    padding: 10px 30px;
  }
}
.con_info .window li .date {
  margin-right: 50px;
}

h4 {
  font-size: 35px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  h4 {
    font-size: 26px;
  }
}

.con_recommend {
  margin-bottom: 100px;
}
.con_recommend .main_banner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .con_recommend .main_banner {
    width: 100%;
  }
}
.con_recommend .main_banner img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
}
@media screen and (max-width: 480px) {
  .con_recommend .main_banner img {
    border-radius: 20px;
  }
}
.con_recommend ul {
  display: flex;
  justify-content: center;
}
.con_recommend ul li {
  width: 44%;
  margin: 30px 0 40px;
}
@media screen and (max-width: 480px) {
  .con_recommend ul li {
    width: 50%;
    margin: 10px 0;
  }
}
.con_recommend ul li img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
}
@media screen and (max-width: 480px) {
  .con_recommend ul li img {
    border-radius: 20px;
  }
}
.con_recommend ul li:nth-child(2) {
  margin-left: 2%;
}

.con_column {
  margin-bottom: 100px;
}
.con_column ul {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.con_column ul li {
  width: 26%;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  border-radius: 40px;
}
.con_column ul li:nth-child(2) {
  margin: 0 3%;
}
.con_column ul li .thum {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.con_column ul li .thum img {
  width: 100%;
  border-radius: 40px 40px 0px 0px;
}
.con_column ul li .title {
  margin-top: 10px;
  background-color: #fff;
  padding: 30px 10px 70px;
  border-radius: 0px 0px 40px 40px;
  font-size: 22px;
}

.about_copy {
  padding-top: 200px;
  margin-bottom: 80px;
  font-size: 35px;
  line-height: 3rem;
}
@media screen and (max-width: 480px) {
  .about_copy {
    padding-top: 50px;
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}

.about_txt {
  font-weight: 400;
  font-size: 19px;
  line-height: 43px;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .about_txt {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 40px;
  }
}

.con_award {
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .con_award {
    margin-bottom: 40px;
  }
}
.con_award h1 {
  width: 750px;
  padding: 15px 0;
  margin: 0 auto;
  background-color: #FF7F3F;
  color: #fff;
  border-radius: 40px;
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .con_award h1 {
    width: 100%;
    font-size: 18px;
    padding: 10px 0;
  }
}
.con_award h2 {
  margin: 30px 0;
  font-size: 40px;
  line-height: 45px;
}
@media screen and (max-width: 480px) {
  .con_award h2 {
    font-size: 20px;
    line-height: 26px;
    margin: 15px 0;
  }
}
.con_award ul {
  display: flex;
  justify-content: center;
}
.con_award ul li {
  width: 25%;
}
@media screen and (max-width: 480px) {
  .con_award ul li {
    width: 30%;
  }
}
.con_award ul li img {
  width: 100%;
}
.con_award ul li:nth-child(2) {
  margin: 0 5%;
}

.con_point {
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .con_point {
    margin-bottom: 50px;
  }
}
.con_point .box {
  display: flex;
  margin-bottom: 80px;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .con_point .box {
    flex-flow: column-reverse;
    margin-bottom: 30px;
  }
}
.con_point .box:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
  .con_point .box:nth-child(2) {
    flex-flow: column-reverse;
  }
}
.con_point .box:nth-child(2) img {
  border-radius: 0px 0px 100px 0px;
}
@media screen and (max-width: 480px) {
  .con_point .box:nth-child(2) img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0px 0px 0px 30px;
  }
}
.con_point .box .left {
  width: 50%;
  text-align: right;
  margin: auto 0;
  padding: 0 15px;
}
@media screen and (max-width: 480px) {
  .con_point .box .left {
    width: 100%;
  }
}
.con_point .box .left h3 {
  font-size: 45px;
  color: #FF7F3F;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .con_point .box .left h3 {
    font-size: 26px;
    text-align: center;
    margin-top: 20px;
  }
}
.con_point .box .left .lower {
  text-align: left;
}
@media screen and (max-width: 480px) {
  .con_point .box .left .lower {
    text-align: center;
  }
}
.con_point .box .left .txt {
  text-align: left;
  font-weight: 400;
  font-size: 19px;
  line-height: 35px;
  letter-spacing: 0rem;
}
@media screen and (max-width: 480px) {
  .con_point .box .left .txt {
    font-size: 15px;
    line-height: 25px;
  }
}
.con_point .box .left .txt .att {
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .con_point .box .left .txt .att {
    font-size: 12px;
    line-height: 16px;
  }
}
.con_point .box picture {
  width: 45%;
}
@media screen and (max-width: 480px) {
  .con_point .box picture {
    width: 100%;
    height: 200px;
  }
}
.con_point .box picture img {
  width: 100%;
  border-radius: 0px 0px 0px 100px;
}
@media screen and (max-width: 480px) {
  .con_point .box picture img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0px 0px 0px 30px;
  }
}

.con_kubof {
  font-size: 25px;
  margin-bottom: 120px;
}
@media screen and (max-width: 480px) {
  .con_kubof {
    font-size: 18px;
    margin-bottom: 60px;
    line-height: 25px;
  }
}
.con_kubof .big {
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .con_kubof .big {
    font-size: 22px;
  }
}

.btn_flow {
  position: relative;
  width: 650px;
  height: 130px;
  background: #FFAE0B;
  box-shadow: 0px 7px 0px #FF7F3F;
  border-radius: 40px;
  color: #fff;
  margin: 0 auto 100px;
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .btn_flow {
    width: 100%;
    height: 60px;
    box-shadow: 0px 4px 0px #FF7F3F;
    font-size: 20px;
    border-radius: 20px;
    margin-bottom: 60px;
  }
}
.btn_flow:hover {
  opacity: 0.7;
}
.btn_flow p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 480px) {
  .btn_flow p {
    position: absolute;
    top: 31%;
    left: 5%;
    transform: none;
  }
}
.btn_flow a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_flow {
  padding-top: 200px;
}
@media screen and (max-width: 480px) {
  .ttl_flow {
    padding-top: 80px;
  }
}
.ttl_flow h1 {
  font-size: 35px;
  margin-bottom: 65px;
}
@media screen and (max-width: 480px) {
  .ttl_flow h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.ttl_flow p {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 65px;
}
@media screen and (max-width: 480px) {
  .ttl_flow p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.con_flow ul li {
  background-color: #fff;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  border-radius: 60px 60px 0px 60px;
  display: flex;
  margin: 0 auto;
  margin-bottom: 40px;
  width: 900px;
  position: relative;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li:nth-child(4) {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 480px) {
  .con_flow ul li {
    border-radius: 40px 40px 0px 40px;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px;
    flex-flow: column;
  }
}
.con_flow ul li .left {
  width: 40%;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .left {
    width: 100%;
    padding: 10px;
  }
}
.con_flow ul li .left img {
  width: 200px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .left img {
    width: 50%;
  }
}
.con_flow ul li .right {
  text-align: left;
  width: 60%;
  position: relative;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .right {
    width: 100%;
    position: relative;
  }
}
.con_flow ul li .right .num {
  font-size: 50px;
  padding: 20px 0 0;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .right .num {
    font-size: 40px;
    padding: 0;
    margin-left: 10px;
  }
}
.con_flow ul li .right .txt {
  padding: 15px 15px 15px 0;
  line-height: 35px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .right .txt {
    font-size: 18px;
    line-height: 26px;
    position: absolute;
    top: -10px;
    left: 65px;
  }
}
.con_flow ul li .right .txt .marker {
  background: linear-gradient(transparent 60%, #A7EA13 60%);
}
.con_flow ul li .right .line_btn {
  width: 400px;
  height: 65px;
  background: #06C755;
  box-shadow: 0px 6px 0px #A7EA13;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 65px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .right .line_btn {
    width: 100%;
    height: 50px;
    margin: 20px 0;
    line-height: 50px;
    font-size: 25px;
  }
}
.con_flow ul li .right .line_btn:hover {
  opacity: 0.7;
}
.con_flow ul li .right .line_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.con_flow ul li .right .att {
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .right .att {
    font-size: 14px;
    line-height: 20px;
    margin-top: 70px;
  }
}
.con_flow ul li .right .work_btn {
  width: 400px;
  height: 65px;
  background: #FF7F3F;
  box-shadow: 0px 6px 0px #FFAE0B;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  position: relative;
  line-height: 65px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .right .work_btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
  }
}
.con_flow ul li .right .work_btn:hover {
  opacity: 0.7;
}
.con_flow ul li .right .work_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.con_flow ul li .right .att_b {
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  padding: 20px;
  background-color: #FFF2D9;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .con_flow ul li .right .att_b {
    margin-top: 50px;
  }
}

.slider_service {
  padding-top: 150px;
  width: 820px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .slider_service {
    padding-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .slider_service li {
    width: 90vw;
    margin: 0 auto;
  }
}
.slider_service img {
  width: 100%;
  border-radius: 40px;
}
@media screen and (max-width: 480px) {
  .slider_service img {
    width: 100%;
    border-radius: 20px;
  }
}

.ttl_service {
  margin: 80px 0 60px;
  font-size: 30px;
  line-height: 45px;
}
@media screen and (max-width: 480px) {
  .ttl_service {
    font-size: 26px;
    line-height: 35px;
    margin: 30px 0;
  }
}

.category {
  box-shadow: 0px 5px 15px rgba(255, 174, 11, 0.1);
  width: 1000px;
  margin: 0 auto 80px;
  background-color: #fff;
  border-radius: 40px 40px 0px 40px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .category {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 20px 20px 0px 20px;
  }
}
.category h2 {
  font-size: 25px;
  padding: 15px 0;
  background: #FFE3AB;
  border-radius: 40px 40px 0px 0px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .category h2 {
    border-radius: 20px 20px 0px 0px;
    font-size: 20px;
  }
}
.category .category_area {
  padding: 30px 0 10px;
  padding-left: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .category .category_area {
    padding: 10px 0;
  }
}
.category h3 {
  font-size: 20px;
  color: #FF7F3F;
  margin: 10px 10px 5px;
}
@media screen and (max-width: 480px) {
  .category h3 {
    margin: 10px 25px 5px;
  }
}
.category h3::before {
  position: absolute;
  content: "";
  background: #FF7F3F;
  height: 19px;
  width: 4px;
  border-radius: 2px;
  margin-top: 3px;
  margin-left: -10px;
}
.category ul {
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
.category ul li {
  display: inline-block;
  width: 25%;
  padding: 12px 0 10px 20px;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .category ul li {
    width: 50%;
    font-size: 16px;
    padding: 12px 0 10px 35px;
  }
}
.category ul li:hover {
  color: #FF7F3F;
}
.category ul li:hover::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 11px;
  border-color: transparent transparent transparent #FF7F3F;
  margin-top: 5px;
  margin-left: -21px;
}
@media screen and (max-width: 480px) {
  .category ul li:hover::before {
    margin-top: 2px;
    margin-left: -18px;
  }
}
.category ul li:hover::after {
  content: "";
  background-color: #FFF9EA;
  border-radius: 30px;
  position: absolute;
  width: 95%;
  height: 87%;
  top: 5px;
  left: -18px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .category ul li:hover::after {
    left: 5px;
  }
}
.category ul li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 11px;
  border-color: transparent transparent transparent #d9d9d9;
  margin-top: 5px;
  margin-left: -21px;
}
@media screen and (max-width: 480px) {
  .category ul li::before {
    margin-top: 2px;
    margin-left: -18px;
  }
}
.category ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

.con_work {
  width: 1000px;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .con_work {
    width: 100%;
    margin-bottom: 50px;
  }
}
.con_work h4 {
  font-size: 35px;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .con_work h4 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}

.work_thumb {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
.work_thumb li {
  width: 30%;
  border-radius: 20px;
  background-color: #fff;
  text-align: left;
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .work_thumb li {
    width: 47%;
  }
}
.work_thumb li:nth-child(3n-1) {
  margin: 0 5%;
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .work_thumb li:nth-child(3n-1) {
    margin: initial;
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .work_thumb li:nth-child(2n-1) {
    margin-right: 5%;
  }
}
.work_thumb li img {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
}
@media screen and (max-width: 480px) {
  .work_thumb li img {
    border-radius: 10px 10px 0px 0px;
  }
}
.work_thumb li img:hover {
  opacity: 0.7;
}
.work_thumb li .txt_area {
  padding: 15px 15px;
}
@media screen and (max-width: 480px) {
  .work_thumb li .txt_area {
    padding: 10px;
  }
}
.work_thumb li .txt_area .ttl {
  font-size: 22px;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .work_thumb li .txt_area .ttl {
    font-size: 18px;
  }
}
.work_thumb li .txt_area .ttl:hover {
  opacity: 0.8;
}
.work_thumb li .term_area {
  padding: 0 15px 30px;
}
@media screen and (max-width: 480px) {
  .work_thumb li .term_area {
    padding: 0 10px 20px;
  }
}
.work_thumb li span {
  display: inline-block;
  width: auto;
  margin-bottom: 5px;
  font-size: 15px;
  border-radius: 15px;
  color: #FF7F3F;
  background-color: #FFE3AB;
}
@media screen and (max-width: 480px) {
  .work_thumb li span {
    font-size: 12px;
    margin-left: 3px;
  }
}
.work_thumb li span:hover {
  opacity: 0.7;
}
.work_thumb li span a {
  padding: 5px 15px;
  display: block;
}
@media screen and (max-width: 480px) {
  .work_thumb li span a {
    padding: 3px 10px;
  }
}
.work_thumb p {
  text-align: center;
  margin: 0 auto;
}

.con_work_single {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .con_work_single {
    flex-flow: column;
  }
}
.con_work_single .left_box {
  width: 60%;
  padding: 0 30px;
}
@media screen and (max-width: 480px) {
  .con_work_single .left_box {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.con_work_single .left_box img {
  width: 100%;
}
.con_work_single .right_box {
  width: 30%;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box {
    width: 100%;
  }
}
.con_work_single .right_box .work_txt {
  box-shadow: 0px 5px 15px rgba(255, 174, 11, 0.1);
  border-radius: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .work_txt {
    border-radius: 20px;
  }
}
.con_work_single .right_box .work_txt h1 {
  font-size: 24px;
  background: #FFE3AB;
  border-radius: 40px 40px 0px 0px;
  padding: 25px 15px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .work_txt h1 {
    font-size: 22px;
    border-radius: 20px 20px 0px 0px;
    padding: 15px;
  }
}
.con_work_single .right_box .work_txt .detail {
  background-color: #fff;
  padding: 10px 25px 30px;
  border-radius: 0px 0px 40px 40px;
  font-size: 20px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .work_txt .detail {
    border-radius: 0px 0px 20px 20px;
    font-size: 16px;
  }
}
.con_work_single .right_box .work_txt .detail h3 {
  font-size: 20px;
  color: #FF7F3F;
  margin: 10px 10px 5px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .work_txt .detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.con_work_single .right_box .work_txt .detail h3::before {
  position: absolute;
  content: "";
  background: #FF7F3F;
  height: 18px;
  width: 4px;
  border-radius: 2px;
  margin-top: 3px;
  margin-left: -9px;
}
.con_work_single .right_box .work_txt .detail p {
  margin-bottom: 20px;
  font-weight: 400;
}
.con_work_single .right_box .work_txt .detail .single_line_btn {
  text-align: center;
  background-color: #06C755;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .work_txt .detail .single_line_btn {
    margin-top: 40px;
  }
}
.con_work_single .right_box .work_txt .detail .single_line_btn a {
  display: block;
  padding: 15px 0;
}
.con_work_single .right_box .category_box {
  box-shadow: 0px 5px 15px rgba(255, 174, 11, 0.1);
  border-radius: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .category_box {
    border-radius: 20px;
  }
}
.con_work_single .right_box .category_box h2 {
  font-size: 24px;
  background: #FFE3AB;
  border-radius: 40px 40px 0px 0px;
  padding: 25px 15px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .category_box h2 {
    font-size: 22px;
    border-radius: 20px 20px 0px 0px;
    padding: 15px;
  }
}
.con_work_single .right_box .category_box .category_area {
  background-color: #fff;
  padding: 20px 25px 25px;
  border-radius: 0px 0px 40px 40px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .category_box .category_area {
    border-radius: 0px 0px 20px 20px;
    padding: 10px 25px;
  }
}
.con_work_single .right_box .category_box .category_area h3 {
  font-size: 20px;
  font-weight: bold;
  color: #FF7F3F;
  margin: 10px 10px 5px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .category_box .category_area h3 {
    font-size: 18px;
    margin: 10px 10px;
  }
}
.con_work_single .right_box .category_box .category_area h3::before {
  position: absolute;
  content: "";
  background: #FF7F3F;
  height: 19px;
  width: 4px;
  border-radius: 2px;
  margin-top: 3px;
  margin-left: -10px;
}
.con_work_single .right_box .category_box .category_area ul {
  margin-bottom: 25px;
}
.con_work_single .right_box .category_box .category_area ul li {
  display: inline-block;
  margin: 5px 20px 5px 15px;
}
@media screen and (max-width: 480px) {
  .con_work_single .right_box .category_box .category_area ul li {
    font-size: 16px;
  }
}
.con_work_single .right_box .category_box .category_area ul li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #d9d9d9;
  margin-top: 5px;
  margin-left: -14px;
}

.other_recommend {
  width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  .other_recommend {
    margin: 0 auto;
    width: 100%;
  }
}
.other_recommend .ttl {
  margin: 40px 0;
}
@media screen and (max-width: 480px) {
  .other_recommend .ttl {
    font-size: 20px;
    margin-bottom: 0;
  }
}

/* パンくず位置調整 */
div#breadcrumb {
  font-size: 15px; /*文字サイズ*/
  padding-top: 150px;
  padding-left: 6%;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  div#breadcrumb {
    font-size: 12px;
    padding: 0;
    padding-top: 30px;
    margin-bottom: 5px;
  }
}

div#breadcrumb ul li {
  display: inline; /*横並びにする*/
  line-height: 20px; /*行間*/
  margin-left: 25px;
}
@media screen and (max-width: 480px) {
  div#breadcrumb ul li:nth-child(1) {
    margin: 0;
  }
}
div#breadcrumb ul li::after {
  position: absolute;
  content: "";
  background-image: url("../img/right_arrow.svg");
  width: 6px;
  height: 11px;
  margin-left: 10px;
  margin-top: 6px;
}
div#breadcrumb ul li:nth-last-child(1)::after {
  display: none;
}

.con_taxn_all {
  padding-top: 150px;
}
@media screen and (max-width: 480px) {
  .con_taxn_all {
    padding-top: 50px;
  }
}
.con_taxn_all h1 {
  padding-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .con_taxn_all h1 {
    font-size: 26px;
    padding-bottom: 30px;
  }
}
.con_taxn_all h2 {
  margin: 20px 0;
}
@media screen and (max-width: 480px) {
  .con_taxn_all h2 {
    margin: 0;
  }
}

.con_contact {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding: 150px 0 0;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .con_contact {
    width: 90vw;
    max-width: 90vw;
    padding: 60px 0 0;
  }
}
.con_contact h1 {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .con_contact h1 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.input_area {
  text-align: left;
}
.input_area .form_area {
  display: flex;
}
@media screen and (max-width: 480px) {
  .input_area .form_area {
    display: block;
    margin-bottom: 40px;
  }
}
.input_area .title {
  width: 300px;
  text-align: right;
  padding-right: 20px;
  padding-top: 3px;
  font-size: 16px;
  vertical-align: top;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .input_area .title {
    width: 100%;
    text-align: left;
    padding: 0;
    margin-bottom: 5px;
  }
}
.input_area .require::after {
  content: "*";
  color: #FF0000;
  font-size: 15px;
  margin-left: 3px;
}
.input_area .input {
  width: calc(100% - 200px);
  margin-left: 20px;
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .input_area .input {
    width: 100%;
    text-align: left;
    margin: 0;
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.input_area .input input, .input_area .input textarea {
  width: 100%;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.input_area textarea {
  height: 200px;
  line-height: 1.5rem;
}
.input_area ::-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
}
.input_area ::placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
}

.con_policy {
  padding: 20px 0 80px;
}
@media screen and (max-width: 480px) {
  .con_policy {
    padding: 0;
  }
}

.policy_txt {
  overflow-y: scroll;
  width: 100%;
  height: 150px;
  text-align: left;
  font-size: 12px;
  font-weight: 300;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.privacy_policy input[type=checkbox].check_btn_item {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.privacy_policy {
  margin: 20px 0;
}
.privacy_policy .mwform-checkbox-field-text {
  font-weight: bold;
  font-size: 16px;
}
.privacy_policy .check_btn_item + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}
.privacy_policy .check_btn_item + span::after, .privacy_policy .check_btn_item + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.privacy_policy .check_btn_item + span::before {
  border: 1px solid #AAA;
  border-radius: 4px;
  left: 0;
  height: 18px;
  width: 18px;
  margin-top: 2px;
  background-color: #fff;
}
.privacy_policy .check_btn_item + span::after {
  border: none;
  border-right: 3px solid #222;
  border-bottom: 3px solid #222;
  height: 11px;
  left: 6px;
  opacity: 0;
  top: 4px;
  transform: rotate(45deg);
  width: 7px;
}
.privacy_policy .check_btn_item:checked + span::after {
  opacity: 1;
}

.submit {
  padding: 20px 0 50px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
}
@media screen and (max-width: 480px) {
  .submit {
    padding-bottom: 20px;
    flex-flow: column;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .submit br {
    display: none;
  }
}
.submit button {
  width: 300px;
  height: 75px;
  background: #FF7F3F;
  box-shadow: 0px 6px 0px #FFAE0B;
  border-radius: 100px;
  margin: 15px auto;
  font-size: 25px;
  color: #fff;
  line-height: 75px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .submit button {
    width: 90vw;
    height: 60px;
    line-height: 60px;
  }
}
.submit button:hover {
  opacity: 0.8;
}

.con_thanks {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding: 100px 0 220px;
}
@media screen and (max-width: 480px) {
  .con_thanks {
    width: 90vw;
    max-width: 90vw;
  }
}
.con_thanks h1 {
  font-weight: bold;
  padding: 100px 0 60px;
  font-size: 30px;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 480px) {
  .con_thanks h1 {
    font-size: 22px;
    letter-spacing: 0.2rem;
    line-height: 1.8rem;
  }
}
.con_thanks .thx_txt {
  font-size: 18px;
  line-height: 2.5rem;
}
@media screen and (max-width: 480px) {
  .con_thanks .thx_txt {
    font-size: 13px;
    line-height: 1.8rem;
  }
  .con_thanks .thx_txt p {
    margin: 20px;
  }
}

.page_policy {
  padding-top: 150px;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}

.page_guideline {
  padding-top: 150px;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}
.page_guideline a {
  text-decoration: underline;
}

.con_interview {
  padding-top: 250px;
}
@media screen and (max-width: 480px) {
  .con_interview {
    padding-top: 50px;
  }
}
.con_interview .fon30 {
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .con_interview .fon30 {
    font-size: 22px;
  }
}

.ttl_interview {
  background-color: #fff;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  border-radius: 60px 60px 0px 60px;
  padding: 40px 70px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .ttl_interview {
    padding: 20px 20px 30px;
    text-align: center;
    border-radius: 20px 20px 0px 20px;
  }
}
.ttl_interview h1 {
  margin: 10px 0 20px;
  font-size: 38px;
  color: #FF7F3F;
}
@media screen and (max-width: 480px) {
  .ttl_interview h1 {
    font-size: 22px;
  }
}
.ttl_interview h1 img {
  display: inline-block;
  height: 38px;
  width: auto;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .ttl_interview h1 img {
    margin: 0;
    margin-bottom: 3px;
  }
}

.fv_interview {
  display: flex;
}
@media screen and (max-width: 480px) {
  .fv_interview {
    display: block;
  }
}
.fv_interview .left {
  position: relative;
  margin: auto 0;
  width: 45%;
  font-size: 25px;
}
@media screen and (max-width: 480px) {
  .fv_interview .left {
    width: 100%;
    font-size: 16px;
    padding: 10px 0;
  }
}
.fv_interview .left p {
  color: #FF7F3F;
  font-size: 20px;
  margin: 50px 0 0;
}
.fv_interview .right {
  width: 55%;
  float: right;
  position: relative;
}
@media screen and (max-width: 480px) {
  .fv_interview .right {
    width: 100%;
    float: initial;
  }
}
.fv_interview .right img {
  width: 100%;
  z-index: 1;
  position: relative;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .fv_interview .right img {
    margin-top: 10px;
  }
}
.fv_interview .right .circle_svg {
  position: absolute;
  z-index: 0;
  top: -185px;
  right: -80px;
  width: 220px;
}
@media screen and (max-width: 480px) {
  .fv_interview .right .circle_svg {
    width: 38%;
    z-index: 1;
    top: -15px;
    left: -10px;
  }
}
.fv_interview .right p {
  margin: 10px 0;
  color: #FF7F3F;
}

.con_interview_main {
  background-color: #fff;
  box-shadow: 0px 14px 15px rgba(255, 174, 11, 0.1);
  border-radius: 60px 60px 0px 60px;
  padding: 60px 80px;
  text-align: left;
  margin: 50px 0 100px;
}
@media screen and (max-width: 480px) {
  .con_interview_main {
    border-radius: 20px 20px 0px 20px;
    padding: 10px 20px;
    margin: 30px 0 50px;
  }
}
.con_interview_main .txt {
  font-size: 18px;
  line-height: 25px;
}
@media screen and (max-width: 480px) {
  .con_interview_main .txt {
    font-size: 14px;
    line-height: 20px;
  }
}
.con_interview_main .txt .txt_tasufuku {
  margin: 20px 0;
  color: #FF7F3F;
}
@media screen and (max-width: 480px) {
  .con_interview_main .txt .txt_tasufuku {
    margin: 10px 0;
  }
}
.con_interview_main .txt .txt_guest {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .con_interview_main .txt .txt_guest {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.con_interview_main .txt .txt_fin {
  margin: 30px 0;
  color: #FF7F3F;
}
.con_interview_main .txt .photo {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .con_interview_main .txt .photo {
    display: block;
  }
}
.con_interview_main .txt .photo img {
  width: 380px;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .con_interview_main .txt .photo img {
    width: 100%;
  }
}
.con_interview_main .txt .photo .left {
  width: 70%;
  margin-left: 30px;
}
@media screen and (max-width: 480px) {
  .con_interview_main .txt .photo .left {
    width: 100%;
    margin: 0;
  }
}
.con_interview_main .txt .photo.rev {
  flex-direction: row-reverse;
}
.con_interview_main .txt .photo.rev .left {
  margin: 0;
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .con_interview_main .txt .photo.rev .left {
    width: 100%;
    margin: 0;
  }
}

.con_404 {
  padding: 35vh 0 0;
}
.con_404 .txt {
  margin: 50px 0;
  line-height: 2rem;
}

.box {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.box.ready {
  opacity: 1;
  transform: translateY(0px);
}

.fade_item {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade_item.fadein {
  opacity: 1;
  transform: translateY(0px);
}