@charset "UTF-8";
/* ------------------------------------------------------
変数
------------------------------------------------------ */
/* =======================================================

header

======================================================= */
:root {
  --header: 60px;
  scroll-padding: var(--header);
}

#header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}

.header_wrap {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  padding: 15px 0;
  margin: 0 auto 30px;
  display: block;
}
.header_wrap .header_boxwrap {
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .header_wrap .header_boxwrap {
    padding: 0 20px;
  }
}
.header_wrap .header_boxwrap .headerbox_l {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header_wrap .header_boxwrap .headerbox_l img {
  width: 220px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .header_wrap .header_boxwrap .headerbox_l img {
    max-width: 70%;
  }
}
.header_wrap .header_boxwrap .headerbox_r {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  font-size: 12px;
  line-height: 1.4em;
  text-align: right;
  align-items: center;
}
@media (max-width: 1080px) {
  .header_wrap .header_boxwrap .headerbox_r {
    display: none;
  }
}
.header_wrap .header_boxwrap .headerbox_r nav ul {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header_wrap .header_boxwrap .headerbox_r nav ul li {
  list-style: none;
}
.header_wrap .header_boxwrap .headerbox_r nav ul li a {
  font-size: 1.8rem;
  color: #707070;
  padding-bottom: 8px;
  margin: 0 0 0 10px;
  border-bottom: 3px solid rgba(239, 127, 29, 0);
  transition: 0.3s;
}
.header_wrap .header_boxwrap .headerbox_r nav ul li a:hover {
  border-bottom: 3px solid #ef7f1d;
}
.header_wrap .header_boxwrap .headerbox_r nav ul li a.current {
  border-bottom: 3px solid #ef7f1d;
}
.header_wrap .header_boxwrap .headerbox_r a.headercontact {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 8px 16px;
  background-color: #E34C1F;
  vertical-align: middle;
  border-radius: 50px;
}
.header_wrap .header_boxwrap .headerbox_r a.headercontact i {
  font-size: 24px;
}
.header_wrap .header_boxwrap .headerbox_r a.headercontact:hover {
  background-color: #EF7F1D;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  display: none;
}

.drawer__nav {
  display: none;
}

@media (max-width: 1080px) {
  .drawer__button {
    display: inline;
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
    top: 0;
    right: 0;
  }
  /* ハンバーガーボタン内の線 */
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 3px;
    background-color: #EF7F1D;
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  /* 展開時のデザイン */
  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  /* メニューのデザイン */
  .drawer__nav {
    display: block;
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer__nav__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 4rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
  }
  .drawer__nav__link {
    display: block;
    color: #707070;
    font-weight: bold;
    text-decoration: none;
    padding: 1rem 1rem;
    font-size: 1.6rem;
  }
  .drawer__nav__link.common_btn_c {
    color: #fff;
  }
  .sp_btn a {
    border-radius: 50px !important;
    width: 80% !important;
    margin: 3% auto 0 !important;
  }
  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
}
/* =======================================================

TOPpage

======================================================= */
/*------ FV ------*/
#top_fvbox {
  display: block;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  z-index: 1;
  position: relative;
}
#top_fvbox .top_fv_catch {
  position: absolute;
  top: 45%;
  right: 0;
  z-index: 1;
}
#top_fvbox .top_fv_catch h2 {
  line-height: 1.4em;
  display: inline-block;
  border-radius: 150px 0 0 150px;
  padding: 50px 100px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  font-size: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  color: #EF7F1D;
}
@media (max-width: 1080px) {
  #top_fvbox .top_fv_catch h2 {
    font-size: 4vw;
    padding: 5vw 8vw;
  }
}
@media (max-width: 768px) {
  #top_fvbox .top_fv_catch h2 {
    font-size: 5.5vw;
    padding: 5vw 7vw;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 428px) {
  #top_fvbox .top_fv_catch h2 {
    font-size: 4.8vw;
  }
}
#top_fvbox .top_fv_catch .fv_catch_parts01 {
  position: absolute;
  mix-blend-mode: multiply;
  left: -3px;
  top: 0px;
  width: 9%;
  height: auto;
}
#top_fvbox .top_fv_catch .fv_catch_parts02 {
  position: absolute;
  mix-blend-mode: multiply;
  right: 1px;
  bottom: -30px;
  width: 12%;
  height: auto;
}
#top_fvbox .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  z-index: -1;
  position: relative;
}
#top_fvbox .full div.main01 {
  background-image: url(../img/top/fv_mainimg01.jpg);
}
#top_fvbox .full div.main02 {
  background-image: url(../img/top/fv_mainimg02.jpg);
}
#top_fvbox .full div.main03 {
  background-image: url(../img/top/fv_mainimg03.jpg);
}
#top_fvbox .full div.main04 {
  background-image: url(../img/top/fv_mainimg04.jpg);
}

/* Waves */
.waves {
  position: absolute;
  width: 100%;
  height: 8vh;
  margin-bottom: -7px;
  min-height: 60px;
  max-height: 100px;
  z-index: 1;
  bottom: 0;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/* =======================================================

TOP

======================================================= */
/* sec01 */
#top_sec01 {
  display: block;
  position: relative;
  padding: 0 0 80px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #top_sec01 {
    padding: 0 0 40px;
  }
}
#top_sec01 h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #EF7F1D;
  margin-bottom: 50px;
  line-height: 1em;
}
@media (max-width: 768px) {
  #top_sec01 h2 {
    font-size: 6.5vw;
    margin-bottom: 25px;
  }
}
#top_sec01 h2 span {
  font-size: 20px;
  color: #EAB615;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  #top_sec01 h2 span {
    font-size: 4vw;
  }
}
#top_sec01 h2 i {
  font-size: 24px;
}
@media (max-width: 768px) {
  #top_sec01 h2 i {
    font-size: 5vw;
  }
}
#top_sec01 .top_sec01_box01 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 40px;
}
#top_sec01 .top_sec01_box01 p {
  margin-bottom: 30px;
}
#top_sec01 .top_sec01_box01 div:first-of-type {
  flex: 1;
}
#top_sec01 .top_sec01_box01 div:last-of-type {
  width: 30%;
}
@media (max-width: 768px) {
  #top_sec01 .top_sec01_box01 div:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top_sec01 .top_sec01_box01 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #top_sec01 .top_sec01_box01 img {
    display: block;
    max-width: 75%;
    margin: 0 auto;
  }
}

/* sec02 */
#top_sec02 {
  display: block;
  position: relative;
  padding: 80px 0;
  font-size: 1.8rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  #top_sec02 {
    padding: 40px 0;
  }
}
#top_sec02 h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #EF7F1D;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1em;
}
@media (max-width: 768px) {
  #top_sec02 h2 {
    font-size: 6.5vw;
    margin-bottom: 25px;
  }
}
#top_sec02 h2 span {
  font-size: 20px;
  color: #EAB615;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  #top_sec02 h2 span {
    font-size: 4vw;
  }
}
#top_sec02 h2 i {
  font-size: 24px;
}
@media (max-width: 768px) {
  #top_sec02 h2 i {
    font-size: 5vw;
  }
}
#top_sec02 .top_sec02_box01 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: row-reverse;
  gap: 40px;
}
#top_sec02 .top_sec02_box01 p {
  margin-bottom: 30px;
}
#top_sec02 .top_sec02_box01 div:first-of-type {
  flex: 1;
}
#top_sec02 .top_sec02_box01 div:last-of-type {
  width: 40%;
}
@media (max-width: 768px) {
  #top_sec02 .top_sec02_box01 div:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top_sec02 .top_sec02_box01 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #top_sec02 .top_sec02_box01 img {
    display: block;
    max-width: 75%;
    margin: 0 auto;
  }
}

/* sec03 */
#top_sec03 {
  display: block;
  position: relative;
  padding: 80px 0;
  font-size: 1.8rem;
  background-image: url(../img/top/sec03_bg.jpg);
  background-size: cover;
  background-position: center center;
}
@media (max-width: 768px) {
  #top_sec03 {
    padding: 40px 0;
  }
}
#top_sec03 h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #EF7F1D;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1em;
}
@media (max-width: 768px) {
  #top_sec03 h2 {
    font-size: 6.5vw;
    margin-bottom: 25px;
  }
}
#top_sec03 h2 span {
  font-size: 20px;
  color: #EAB615;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  #top_sec03 h2 span {
    font-size: 4vw;
  }
}
#top_sec03 h2 i {
  font-size: 24px;
}
@media (max-width: 768px) {
  #top_sec03 h2 i {
    font-size: 5vw;
  }
}
#top_sec03 .top_sec03_box01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
}
#top_sec03 .top_sec03_box01 div {
  width: 30%;
  margin-bottom: 5%;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  #top_sec03 .top_sec03_box01 div {
    width: 100%;
    margin-bottom: 50px;
  }
  #top_sec03 .top_sec03_box01 div img {
    display: block;
    max-width: 75%;
    margin: 0 auto;
  }
}
#top_sec03 .top_sec03_box01 div h3 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #top_sec03 .top_sec03_box01 div h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    min-height: initial;
  }
}
#top_sec03 .top_sec03_box01 div .txt-red {
  color: red;
  font-size: 0.8em;
}
#top_sec03 .top_sec03_box01 div .common_btn_c {
  margin-top: auto;
}

/* sec04 */
#top_sec04 {
  display: block;
  position: relative;
  padding: 80px 0;
  font-size: 1.8rem;
  background-color: #FCFBED;
}
@media (max-width: 768px) {
  #top_sec04 {
    padding: 40px 0;
  }
}
#top_sec04 h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #EF7F1D;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1em;
}
@media (max-width: 768px) {
  #top_sec04 h2 {
    font-size: 6.5vw;
    margin-bottom: 25px;
  }
}
#top_sec04 h2 span {
  font-size: 20px;
  color: #EAB615;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  #top_sec04 h2 span {
    font-size: 4vw;
  }
}
#top_sec04 h2 i {
  font-size: 24px;
}
@media (max-width: 768px) {
  #top_sec04 h2 i {
    font-size: 5vw;
  }
}
#top_sec04 .top_sec04_box01 {
  width: 80%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 40px;
}
#top_sec04 .top_sec04_box01 p {
  margin-bottom: 30px;
}
#top_sec04 .top_sec04_box01 div:first-of-type {
  flex: 1;
  width: 80%;
}
@media (max-width: 768px) {
  #top_sec04 .top_sec04_box01 div:first-of-type {
    width: 90%;
  }
}
#top_sec04 .top_sec04_box01 div:first-of-type table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #707070;
  box-sizing: border-box;
  margin-bottom: 50px;
}
#top_sec04 .top_sec04_box01 div:first-of-type table tr {
  border-bottom: 1px solid #707070;
}
#top_sec04 .top_sec04_box01 div:first-of-type table tr th {
  font-weight: bold;
  padding: 15px;
  width: 30%;
  box-sizing: border-box;
}
#top_sec04 .top_sec04_box01 div:first-of-type table tr td {
  width: 70%;
  box-sizing: border-box;
  padding: 15px 15px 15px 25px;
}
#top_sec04 .top_sec04_box01 div:last-of-type {
  width: 30%;
}
@media (max-width: 768px) {
  #top_sec04 .top_sec04_box01 div:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top_sec04 .top_sec04_box01 {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  #top_sec04 .top_sec04_box01 img {
    display: block;
    max-width: 75%;
    margin: 0 auto;
  }
}
#top_sec04 h3 {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  border-left: 5px solid #EF7F1D;
  padding: 8px 15px;
  margin: 20px 0;
}
#top_sec04 .top_sec04_box02 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 40px;
}
#top_sec04 .top_sec04_box02 p {
  margin-bottom: 30px;
}
#top_sec04 .top_sec04_box02 div:first-of-type {
  flex: 1;
}
#top_sec04 .top_sec04_box02 div:last-of-type {
  width: 30%;
}
@media (max-width: 768px) {
  #top_sec04 .top_sec04_box02 div:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top_sec04 .top_sec04_box02 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #top_sec04 .top_sec04_box02 img {
    display: block;
    max-width: 75%;
    margin: 0 auto;
  }
}
#top_sec04 .top_sec04_box03 {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.8rem;
}
#top_sec04 .top_sec04_box03 > div {
  width: calc(50% - 10px);
}
#top_sec04 .top_sec04_box03 > div ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 20px;
}
#top_sec04 .top_sec04_box03 > div ul li {
  list-style-type: disc;
}
@media (max-width: 768px) {
  #top_sec04 .top_sec04_box03 > div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top_sec04 .top_sec04_box03 {
    flex-direction: column;
    font-size: 1.6rem;
  }
}

/* sec05 */
#top_sec05 {
  display: block;
  position: relative;
  padding: 80px 0;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #top_sec05 {
    padding: 40px 0;
  }
}
#top_sec05 h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #EF7F1D;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1em;
}
@media (max-width: 768px) {
  #top_sec05 h2 {
    font-size: 6.5vw;
    margin-bottom: 25px;
  }
}
#top_sec05 h2 span {
  font-size: 20px;
  color: #EAB615;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  #top_sec05 h2 span {
    font-size: 4vw;
  }
}
#top_sec05 h2 i {
  font-size: 24px;
}
@media (max-width: 768px) {
  #top_sec05 h2 i {
    font-size: 5vw;
  }
}

form#mail_form {
  width: 700px;
  max-width: 100%;
  margin: 0 auto 50px;
  line-height: 1.8;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

form#mail_form dl {
  width: 96%;
  margin: 0 auto;
  border-bottom: none;
  border-bottom: 0;
}

form#mail_form dl dt {
  width: 100%;
  float: none;
  padding: 35px 0 10px;
  display: block;
  text-align: left;
  font-size: 20px;
}
@media (max-width: 768px) {
  form#mail_form dl dt {
    /* font-size: 3.5vw; */
  }
}

form#mail_form input::-moz-placeholder {
  font-size: 16px;
}

form#mail_form input::placeholder {
  font-size: 16px;
}

form#mail_form input[type=text],
form#mail_form input[type=email],
form#mail_form input[type=tel] {
  font-size: 16px;
  padding: 2%;
  background-color: #fff;
}

form#mail_form input[name=company] {
  width: calc(96% - 2px);
}

form#mail_form input[name=mail_address],
form#mail_form input[name=mail_address_confirm] {
  width: calc(96% - 2px);
}

form#mail_form dl dd {
  width: 100%;
  float: none;
  padding: 0;
}

form#mail_form input[type=button] {
  margin: 0 auto;
  display: block;
  border: 2px solid #E34C1F;
  padding: 1vw 4vw;
  border-radius: 50px;
  background: #E34C1F;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
  transition: 0.3s;
}
form#mail_form input[type=button]:hover {
  border: 2px solid #E34C1F;
  background: #fff;
  color: #E34C1F;
}
@media (max-width: 768px) {
  form#mail_form input[type=button] {
    font-size: 16px;
    padding: 3vw 7vw;
    max-width: 96%;
  }
}

form#mail_form textarea {
  display: block;
  width: calc(96% - 2px);
  height: 200px;
  padding: 7px 2%;
  resize: vertical;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fff;
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
}

form#mail_form textarea::-moz-placeholder {
  font-size: 16px;
}

form#mail_form textarea::placeholder {
  font-size: 16px;
}

form#mail_form input[name=phone] {
  width: 50%;
}

div#agreement {
  width: 90%;
  margin: 0 auto;
  padding: 15px 0;
  border-bottom: none;
  text-align: center;
}

div#agreement a {
  text-decoration: underline;
}
div#agreement a:hover {
  text-decoration: none;
}

div#agreement input[type=checkbox] {
  margin-right: 10px;
  color: #333;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: 20px;
  height: 20px;
}

form#mail_form span.required {
  font-style: normal;
  border-radius: 0;
  padding: 2px 8px;
  margin-right: 10px;
  border-radius: 5px;
  color: #fff;
  background: #E34C1F;
  border: 1px solid #E34C1F;
}

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
  font-style: normal;
  border-radius: 0;
  padding: 2px 8px;
  margin-right: 10px;
}

form#mail_form dl dt span.required {
  background: #E34C1F;
  border: 1px solid #E34C1F;
  color: #fff;
}

form#mail_form dl dt span.optional {
  background: #fff;
  border: 1px solid #E34C1F;
  color: #E34C1F;
}

/* =======================================================

Consulting

======================================================= */
.consulting_sec01_box01 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 40px;
}
.consulting_sec01_box01 p {
  margin-bottom: 30px;
}
.consulting_sec01_box01 div:first-of-type {
  flex: 1;
}
.consulting_sec01_box01 div:last-of-type {
  width: 30%;
}
@media (max-width: 768px) {
  .consulting_sec01_box01 div:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .consulting_sec01_box01 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .consulting_sec01_box01 img {
    display: block;
    max-width: 75%;
    margin: 0 auto;
  }
}

.consulting_sec01_box02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.8rem;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .consulting_sec01_box02 {
    margin-top: 20px;
  }
}
.consulting_sec01_box02 > div {
  width: calc(50% - 10px);
}
.consulting_sec01_box02 > div ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 20px;
}
.consulting_sec01_box02 > div ul li {
  list-style-type: disc;
}
@media (max-width: 768px) {
  .consulting_sec01_box02 > div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .consulting_sec01_box02 {
    flex-direction: column;
    font-size: 1.6rem;
  }
}

.consulting_sec01_box03 {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .consulting_sec01_box03 {
    margin-top: 20px;
  }
}

.consulting_sec02_question {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.consulting_sec02_question h4 {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.6;
  border-left: none;
  padding: 0;
}
.consulting_sec02_question h4 span {
  display: inline;
}
@media (max-width: 768px) {
  .consulting_sec02_question h4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 428px) {
  .consulting_sec02_question h4 {
    font-size: 2rem;
  }
  .consulting_sec02_question h4 span {
    display: block;
  }
}
.consulting_sec02_box01 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 1.8rem;
  align-items: flex-start;
  margin-top: 40px;
}
.consulting_sec02_box01 div:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
  gap: 20px;
}
.consulting_sec02_box01 div:first-of-type .staff_name {
  font-weight: bold;
  font-size: 2.4rem;
}
.consulting_sec02_box01 div:first-of-type .staff_name span {
  font-size: 1.4rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .consulting_sec02_box01 div:first-of-type .staff_name {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .consulting_sec02_box01 div:first-of-type {
    width: 100%;
  }
  .consulting_sec02_box01 div:first-of-type img {
    max-width: 60%;
    margin: 0 auto;
  }
}
.consulting_sec02_box01 div:last-of-type {
  width: calc(70% - 40px);
}
.consulting_sec02_box01 div:last-of-type ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 20px;
}
.consulting_sec02_box01 div:last-of-type ul li {
  list-style-type: disc;
}
@media (max-width: 768px) {
  .consulting_sec02_box01 div:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .consulting_sec02_box01 {
    flex-direction: column;
    gap: 20px;
    font-size: 1.6rem;
  }
}

.consulting_sec02_box02 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 1.8rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .consulting_sec02_box02 {
    flex-direction: column;
    justify-content: center;
  }
}
.consulting_sec02_box02 > div {
  width: 100%;
  gap: 40px;
  display: flex;
}
@media (max-width: 768px) {
  .consulting_sec02_box02 > div {
    width: 100%;
  }
}
.consulting_sec02_box02 > div > div:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  align-items: center;
  gap: 20px;
}
.consulting_sec02_box02 > div > div:first-of-type img {
  max-width: 45%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .consulting_sec02_box02 > div > div:first-of-type img {
    max-width: 50%;
  }
}
.consulting_sec02_box02 > div > div:first-of-type .staff_name {
  font-weight: bold;
  font-size: 2.4rem;
}
.consulting_sec02_box02 > div > div:first-of-type .staff_name span {
  font-size: 1.4rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .consulting_sec02_box02 > div > div:first-of-type .staff_name {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .consulting_sec02_box02 > div > div:first-of-type {
    width: 100%;
  }
  .consulting_sec02_box02 > div > div:first-of-type img {
    max-width: 60%;
    margin: 0 auto;
  }
}
.consulting_sec02_box02 > div > div:last-of-type {
  width: 65%;
}
.consulting_sec02_box02 > div > div:last-of-type ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 20px;
}
.consulting_sec02_box02 > div > div:last-of-type ul li {
  list-style-type: disc;
}
@media (max-width: 768px) {
  .consulting_sec02_box02 > div > div:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .consulting_sec02_box02 > div {
    flex-direction: column;
    gap: 20px;
    font-size: 1.6rem;
  }
}

.consulting_sec03_img01 {
  display: block;
  margin: 50px auto;
  text-align: center;
}
.consulting_sec03_img01 img {
  width: 700px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .consulting_sec03_img01 img {
    max-width: 100%;
  }
}

.consulting_sec04_box01 {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.consulting_sec04_box01 img {
  width: 160px;
  height: auto;
  max-width: 30%;
}

.consulting_sec04_img01 {
  display: block;
  margin: 50px auto;
  text-align: center;
}
.consulting_sec04_img01 img {
  width: 700px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .consulting_sec04_img01 img {
    max-width: 100%;
  }
}

/* ---------------------------------------------

otherservice

---------------------------------------------- */
.otherservice_sec01_box01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
.otherservice_sec01_box01 p {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(24% - 5px);
  padding: 10px;
  text-align: center;
  flex-shrink: 1;
  background: #FCFBED;
  border: 1px dashed #EF7F1D;
  border-radius: 5px;
}
.otherservice_sec01_box01 p:nth-child(1), .otherservice_sec01_box01 p:nth-child(2), .otherservice_sec01_box01 p:nth-child(3) {
  width: calc(33% - 10px);
}
@media (max-width: 768px) {
  .otherservice_sec01_box01 p {
    width: calc(50% - 10px) !important;
    justify-content: flex-start;
    text-align: left;
  }
}
@media (max-width: 428px) {
  .otherservice_sec01_box01 p {
    width: 100% !important;
  }
}

.otherservice_sec01_img01 {
  display: block;
  margin: 50px auto 0;
  text-align: center;
}
.otherservice_sec01_img01 img {
  width: 700px;
  max-width: 80%;
}
@media (max-width: 768px) {
  .otherservice_sec01_img01 img {
    max-width: 100%;
  }
}

table.otherservice_table {
  width: 100%;
}
@media (max-width: 768px) {
  table.otherservice_table {
    border-top: 1px solid #707070;
  }
}
table.otherservice_table th {
  width: 30%;
  vertical-align: middle;
}
@media (max-width: 768px) {
  table.otherservice_table th {
    display: block;
    width: 100%;
    border-bottom: 0 !important;
    border-top: 0 !important;
  }
}
table.otherservice_table td:nth-child(2) {
  vertical-align: middle;
}
@media (max-width: 768px) {
  table.otherservice_table td:nth-child(2) {
    border-bottom: 0;
    display: block;
    width: 100%;
  }
}
table.otherservice_table td:nth-child(3) {
  width: 10%;
  font-size: 80%;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  table.otherservice_table td:nth-child(3) {
    border-top: 0px;
    padding-top: 0;
    display: block;
    width: 100%;
  }
}

/* ---------------------------------------------

footer

---------------------------------------------- */
#footer {
  background-color: #EF7F1D;
  background-image: url(../img/footer_bg.png);
  background-repeat: repeat-x;
  background-position: center bottom 5%;
  background-size: auto 32px;
  color: #fff;
  padding: 50px 0 80px;
  font-size: 14px;
  line-height: 1.6em;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #footer {
    padding: 30px 0 50px;
    margin-top: 50px;
  }
}
#footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
  }
}
#footer .container .footer_box {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
@media (max-width: 768px) {
  #footer .container .footer_box {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
#footer .container .footer_box .footerlogo img {
  margin: 10px 0 20px;
  width: 270px;
  height: auto;
}
#footer .container .footer_box div:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#footer .container .footer_box div:last-of-type a {
  text-decoration: underline;
  color: #fff;
}
#footer .container .footer_box div:last-of-type a:hover {
  text-decoration: none;
}
#footer .container .footer_box div:last-of-type #copyright {
  margin-top: 20px;
}

/* =======================================================

サンクスページ

======================================================= */
#thanks {
  padding: 50px 0;
  text-align: center;
}
#thanks h2 {
  margin-bottom: 40px;
  color: #EF7F1D;
  font-weight: bold;
  font-size: 30px;
}
@media (max-width: 428px) {
  #thanks h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  #thanks .txtCent {
    text-align: left;
  }
}

.thanks__ico {
  text-align: center;
}
.thanks__ico .material-symbols-outlined {
  color: #EF7F1D;
  font-size: 8rem;
}

.thanks__txt {
  margin-bottom: 30px;
  text-align: center;
  font-size: 18px;
}

.thanks__link {
  text-align: center;
  display: block;
  text-decoration: underline;
  font-weight: bold;
  font-size: 18px;
}
.thanks__link:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */
