@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
img {
  max-width: 100%;
}

a {
  color: #000;
}

/*display flexキッド 
============================================*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrap {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-btw {
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  align-content: space-around;
}

img {
  max-width: 100%;
}

a {
  color: #000;
}

/*display flexキッド 
============================================*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrap {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-btw {
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  align-content: space-around;
}

body {
  color: #000;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", serif;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}

.inbox {
  margin: 0 auto;
}

.common_title {
  color: #ffde35;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", serif;
}

.title02 {
  background: #ffde35;
  font-size: 24px;
  padding: 10px;
  line-height: 1.5;
  border-radius: 8px;
}

.dotted_title {
  padding-bottom: 10px;
  background: url(../img/ttl_dot.png) no-repeat center bottom;
}

.text_l {
  text-align: left;
}

.text_c {
  text-align: center;
}

.text_r {
  text-align: right;
}

.border_txt {
  background: url(../img/border_titl_bg.png) repeat-x bottom center;
}

.accent_text {
  padding-bottom: 3px;
  font-weight: 700;
  border-bottom: dotted #ffde35 2px;
}

.tel_icon {
  position: relative;
  font-weight: 700;
  color: #000;
  padding-left: 25px;
  font-size: 32px;
  font-family: "Zen Kaku Gothic New", serif;
  letter-spacing: 0;
}
.tel_icon:before {
  content: "";
  display: block;
  width: 22px;
  height: 25px;
  position: absolute;
  top: 50%;
  background: url(../img/tel_icon.svg) no-repeat center;
  background-size: 22px 25px;
  transform: translateY(-50%);
}

.tel_txt {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 600;
}

.frame-text {
  text-shadow: 2.5px 2.5px 0 #ffde35, -2.5px -2.5px 0 #ffde35, -2.5px 2.5px 0 #ffde35, 2.5px -2.5px 0 #ffde35, 0px 2.5px 0 #ffde35, -2.5px 0 #ffde35, -2.5px 0 0 #ffde35, 2.5px 0 0 #ffde35;
}

.arw_r {
  position: relative;
  width: 14px;
  height: 21px;
  margin-left: 10px;
}
.arw_r:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.text_link {
  color: #4abfd7;
  border-bottom: 1px solid #4abfd7;
}

.click_button {
  display: inline-block;
  background: #000;
  border-radius: 0;
  height: 70px;
  font-family: "Zen Kaku Gothic New", serif;
  box-sizing: border-box;
}
.click_button .click_button_box {
  height: 100%;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: relative;
  bottom: 0;
  color: #000;
  min-width: 400px;
  border: solid 3px #000;
  box-sizing: border-box;
  border-radius: 0;
  text-align: center;
  transition: 0.1s all ease-in;
  font-size: 18px;
  box-sizing: border-box;
}
.click_button input {
  height: 100%;
}
.click_button .sub_color_button {
  background: #fff !important;
}

.c-button-box {
  display: inline-block;
  vertical-align: top;
  border-radius: 8px;
  background: #000;
}
.c-button-box .c-button {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 3px #000;
  border-radius: 8px;
  position: relative;
  background: #fff;
  top: -4px;
  font-weight: 700;
  transition: 0.1s all ease;
}
.c-button-box .c-button:hover {
  background: #e53935;
  color: #fff;
  top: 0;
}
.c-button-box.small-button {
  height: 60px;
  width: 270px;
}
.c-button-box.large-button {
  width: 620px;
  height: 80px;
}
.c-button-box.large-button .text {
  font-size: 24px;
}

.com_dl {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: solid 0 #000;
  box-sizing: border-box;
}
.com_dl .in-dl {
  border-bottom: 1px solid #000;
}
.com_dl .in-dl:last-of-type {
  border-bottom: none;
}
.com_dl .in-dl dt,
.com_dl .in-dl dd {
  box-sizing: border-box;
  font-weight: 700;
}
.com_dl .in-dl dd a {
  color: #000;
}

.selectbox {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: clamp(100px, 70%, 100%);
}
.selectbox:before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
  z-index: 10;
}
.selectbox select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1280px;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.1rem;
  }
  .pc-none {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inbox {
    width: 1080px;
  }
  .widebox {
    width: 1280px;
  }
  .c-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .c-title.wht-title {
    color: #fff;
  }
  .com-txt p {
    margin-bottom: 30px;
  }
  .com-txt p:last-of-type {
    margin-bottom: 0 !important;
  }
  .arw_frame {
    position: relative;
  }
  .arw_frame:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -60px;
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-top: 30px solid #ffde35;
    z-index: 100;
    transform: translateX(-50%);
  }
  .dotted-bg {
    background: #4abfd7 url(../img/common/dotted-bg.png);
  }
  .arw_r:before {
    border: solid transparent 7px;
    border-left: solid #000 7px;
  }
  .subvisual {
    height: 400px;
  }
  .subvisual-container {
    height: 300px;
  }
  .subvisual-box {
    width: 900px;
  }
  .subvisual-title {
    font-size: 38px;
    background: #4abfd7;
    color: #fff;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 30px;
  }
  .header {
    height: 100px;
    z-index: 100;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 3px solid #000;
  }
  .header-logo {
    width: 210px;
  }
  .header-list {
    width: calc(100% - 210px);
    position: relative;
    gap: 0 30px;
  }
  .header-list-item {
    font-weight: 700;
    line-height: 1;
  }
  .header-list-item .name {
    font-size: 12px;
  }
  .header-list-item .number {
    font-size: 32px;
  }
  .header-list-item .number small {
    font-size: 24px;
  }
  .visual-bg {
    position: relative;
    overflow: hidden;
    background: url(../img/mainvisual/mainvisual-bg-left.png) no-repeat left top, #ffde35 url(../img/mainvisual/mainvisual-bg-right.png) no-repeat right top;
  }
  .visual-img {
    width: calc(100% - 320px);
    background: url(../img/mainvisual/mv_img.png) no-repeat center/cover;
    position: relative;
    z-index: 100;
    margin: 0 auto;
    border-radius: 20px;
    text-align: center;
  }
  .mainvisual {
    height: 800px;
  }
  .mainvisual-container {
    height: 650px;
  }
  .mainvisual-box {
    width: 1080px;
    border-radius: 30px;
    position: relative;
  }
  .mainvisual-list {
    height: 393px;
    padding: 0 100px;
    box-sizing: border-box;
    background: #4abfd7;
    gap: 0;
    margin-top: -15px;
    border-radius: 30px;
  }
  .mainvisual-list-item {
    position: relative;
    width: 33.3333333333%;
  }
  .mainvisual-list .mgt-down {
    bottom: -10px;
  }
  .mainvisual-list .mgt-up {
    top: -60px;
  }
  .mainvisual .c-button-box {
    margin-top: -40px;
  }
  .mainvisual-img {
    position: absolute;
  }
  .mainvisual .left-img {
    left: -90px;
    bottom: 27px;
  }
  .mainvisual .right-img {
    right: -100px;
    bottom: 32px;
  }
  .greeting {
    padding: 40px 0 80px;
    background: #ffde35 url(../img/greeting/about_bg_deco.png) no-repeat right bottom;
  }
  .greeting .inbox {
    width: 960px;
  }
  .greeting .c-title {
    margin-bottom: 20px;
  }
  .greeting .c-title img {
    position: relative;
    right: -50px;
  }
  .greeting .greeting_txt {
    font-size: 22px;
  }
  .trouble {
    padding: 60px 0;
  }
  .trouble .c-title {
    margin-bottom: 40px;
  }
  .trouble-list {
    gap: 30px;
  }
  .trouble-list-item {
    text-align: center;
    background: #fff;
    width: 340px;
    padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 30px;
  }
  .trouble-list .text {
    font-size: 26px;
    margin-top: 10px;
    line-height: 1.4;
  }
  .trouble .solution-txt {
    margin-top: 50px;
  }
  #comic {
    text-align: center;
    padding: 80px 0 70px;
    background: url(../img/comic/manga_bg_left.png) no-repeat left top 50px, #ffde35 url(../img/comic/manga_bg_right.png) no-repeat right top 50px;
  }
  #comic .c-title {
    margin-bottom: 30px;
    text-align: center;
  }
  #comic .c-button-box {
    width: 760px;
    margin-top: 30px;
  }
  .reason {
    padding: 50px 0 100px;
    background: #ffde35;
  }
  .reason .c-title {
    margin-bottom: 40px;
  }
  .reason-list {
    gap: 30px;
    flex-wrap: wrap;
  }
  .reason-list-card {
    width: 340px;
  }
  .reason-list .num {
    width: 70px;
    height: 70px;
    text-align: center;
    background: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    line-height: 70px;
    box-sizing: border-box;
    margin: 0 auto 10px;
  }
  .reason-list .num span {
    position: relative;
    top: -2px;
  }
  .reason-list-img {
    margin-bottom: 15px;
  }
  .reason-list-title {
    text-align: center;
    font-size: 24px;
  }
  .reason-list-text {
    font-size: 16px;
  }
  .feature-contents {
    position: relative;
    height: 650px;
  }
  .feature-contents:nth-of-type(even) .feature-contents-box {
    margin: 0 0 0 auto;
  }
  .feature-contents:nth-of-type(1) .ic {
    right: -150px;
    bottom: 30px;
  }
  .feature-contents:nth-of-type(2) .ic {
    left: -165px;
    bottom: -16px;
  }
  .feature-contents:nth-of-type(3) .ic {
    right: -145px;
    bottom: -15px;
  }
  .feature-contents:nth-of-type(3) .feature-contents-box {
    padding-top: 80px;
  }
  .feature-contents-title {
    font-size: 32px;
    letter-spacing: 0;
    position: absolute;
    left: 0;
    top: -25px;
    text-align: center;
    width: 100%;
    line-height: 1.4;
  }
  .feature-contents .inbox {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .feature-contents-box {
    background: #ffde35;
    position: relative;
    z-index: 10;
    width: 580px;
    border-radius: 50px;
    border: solid 4px #000;
    padding: 50px 40px 50px 50px;
    box-sizing: border-box;
  }
  .feature-contents .ic {
    position: absolute;
    bottom: 0;
  }
  .feature-img {
    position: absolute;
    top: 0;
    width: 63%;
    height: 100%;
  }
  .feature-img01 {
    background: url(../img/feature/other_list_img_01.png) no-repeat center/cover;
    right: 0;
  }
  .feature-img02 {
    background: url(../img/feature/other_list_img_02.png) no-repeat center/cover;
    left: 0;
  }
  .feature-img03 {
    background: url(../img/feature/other_list_img_03.png) no-repeat center/cover;
    right: 0;
  }
  .banner {
    padding: 80px 0;
    text-align: center;
  }
  .banner-text {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-sizing: border-box;
  }
  #contact {
    padding: 80px 0 70px;
    background: url(../img/contact/contact_bg_left.png) no-repeat left top, #ffde35 url(../img/contact/contact_bg_right.png) no-repeat right top;
  }
  #contact .contat_title {
    margin-bottom: 40px;
  }
  #contact .contat_title .sub {
    display: inline-block;
    vertical-align: top;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 28px;
    padding: 10px 25px;
    margin-bottom: 15px;
    position: relative;
  }
  #contact .contat_title .sub:before {
    content: "";
    display: block;
    border: solid 10px transparent;
    border-top: 10px solid #000;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }
  #contact .contat_title .main {
    display: block;
  }
  #contact .contact_frame {
    padding: 60px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 30px;
    border: solid 3px #000;
  }
  #contact .click_button {
    display: block;
    padding: 0;
    margin: 0 auto;
    font-family: "Zen Kaku Gothic New", serif;
    width: 400px;
    border-radius: 8px;
    cursor: pointer;
  }
  #contact .click_button .click_button_box {
    font-size: 18px;
    min-width: initial;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  .form_container {
    font-family: "Zen Kaku Gothic New", serif;
  }
  .form_container .in-dl {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
  }
  .form_container dt {
    width: 300px;
    text-align: left;
  }
  .form_container dt p {
    display: flex;
    justify-content: flex-end;
  }
  .form_container dt label {
    width: calc(100% - 55px);
    display: block;
    padding-right: 20px;
  }
  .form_container dt .badge_txt {
    position: relative;
    height: 23px;
    width: 55px;
    border-radius: 0;
    text-align: center;
    display: block;
    font-size: 16px;
    line-height: 23px;
    top: 8px;
  }
  .form_container dt .require_badge {
    color: #fff;
    background: #e53935;
  }
  .form_container dt .free_badge {
    color: #fff;
    background: #9e9e9e;
  }
  .form_container dd {
    width: calc(100% - 300px);
    box-sizing: border-box;
    padding: 0 20px;
  }
  .form_container dd input,
  .form_container dd select,
  .form_container dd textarea {
    line-height: 1.6;
  }
  .form_container .input_def input,
  .form_container .input_def textarea,
  .form_container .input_def select {
    font-weight: 500;
    font-size: 18px;
    border: solid 2px #e4e4e4;
    padding: 8px;
    box-sizing: border-box;
    font-family: "Zen Kaku Gothic New", serif;
  }
  .form_container .input_def input[type=text],
  .form_container .input_def input[type=tel],
  .form_container .input_def input[type=email],
  .form_container .input_def input[type=url],
  .form_container .input_def textarea {
    width: 100%;
  }
  .form_container .input_def input[type=date] {
    width: 200px;
    color: #000;
  }
  .form_container .input_def .wpcf7-file {
    border: none;
    padding: 0;
    width: 200px;
  }
  .form_container .input_def .wpcf7-file::file-selector-button {
    border: none;
    font-family: "Zen Kaku Gothic New", serif;
    background: #ccc;
    width: 200px;
    padding: 10px 5px;
    display: block;
    cursor: pointer;
    transition: 0.1s all ease-in;
    margin-bottom: 5px;
    color: #000;
  }
  .form_container .input_def .wpcf7-file::file-selector-button:hover {
    opacity: 0.8;
  }
  .form_container .wpcf7-select {
    width: 400px;
  }
  .form_container .wpcf7-textarea {
    height: 185px;
  }
  .form_container .wpcf7-list-item {
    margin-left: 0 !important;
  }
  .form_container .input_radio .wpcf7-radio,
  .form_container .input_radio .wpcf7-checkbox,
  .form_container .input_checkbox .wpcf7-radio,
  .form_container .input_checkbox .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .form_container .input_radio .wpcf7-list-item-label,
  .form_container .input_checkbox .wpcf7-list-item-label {
    margin-left: 8px;
    cursor: pointer;
  }
  .form_container .form_button-container {
    margin-top: 40px !important;
  }
  .form_container .wpcf7-submit {
    display: block;
    background: none !important;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    height: 100%;
    color: #000;
  }
  .form_container .wpcf7-spinner {
    display: none;
  }
  .form_container .arw_r {
    margin-left: 0;
    right: 30px;
  }
  .link {
    padding: 50px 0;
    background: #ffde35;
  }
  .link-img {
    width: 280px;
    height: 504px;
    background: url(../img/link/link-img.png) no-repeat center/cover;
    border-radius: 30px;
  }
  .link .link-list {
    width: calc(100% - 280px);
    box-sizing: border-box;
    padding-left: 50px;
  }
  .link .link-list-item {
    border-top: 1px solid #b4b4b4;
  }
  .link .link-list-item:last-of-type {
    border-bottom: 1px solid #b4b4b4;
  }
  .link .link-list-item a {
    display: block;
    padding: 21px 0;
    font-size: 16px;
    position: relative;
    letter-spacing: 0.05rem;
  }
  .link .link-list-item a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .link .link-list-item a .text span{
    color: #E53935;
  }
  .link .link-list-item a .ic {
    position: absolute;
    right: 0;
    top: calc(50% - 5px);
    transform: translateY(-50%);
  }
  .company {
    padding: 80px 0 60px;
  }
  .company-category {
    margin-bottom: 50px;
  }
  .company-category:last-of-type {
    margin-bottom: 0;
  }
  .company_title {
    width: calc(100% - 725px);
  }
  .company-contents {
    width: 725px;
  }
  .company-listbox {
    display: flex;
    border-bottom: 1px solid #c7c7c7;
  }
  .company-listbox dt {
    width: 215px;
    padding: 25px 0;
  }
  .company-listbox dd {
    width: calc(100% - 215px);
    padding: 25px 0;
  }
  .company .googlemap {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 60px;
  }
  .company .googlemap iframe {
    width: 100%;
    height: 100%;
  }
  #footer {
    background: #ffde35;
    color: #000;
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
  }
  #footer a {
    color: #000;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.1rem;
  }
  .sp-none {
    display: none !important;
  }
  .inbox {
    width: 90%;
  }
  .c-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .c-title.wht-title {
    color: #fff;
  }
  .title02 {
    font-size: 17px;
  }
  .c-button-box .c-button {
    top: -2px;
  }
  .c-button-box.small-button {
    height: 60px;
    width: 250px;
  }
  .c-button-box.large-button {
    width: 90%;
    height: 60px;
  }
  .c-button-box.large-button .text {
    font-size: 18px;
  }
  .com-txt p {
    margin-bottom: 20px;
  }
  .com-txt p:last-of-type {
    margin-bottom: 0 !important;
  }
  .arw_frame {
    position: relative;
  }
  .arw_frame:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -60px;
    width: 0;
    height: 0;
    border: 30px solid transparent;
    border-top: 30px solid #ffde35;
    z-index: 100;
    transform: translateX(-50%);
  }
  .dotted-bg {
    background: #4abfd7 url(../img/common/dotted-bg.png);
  }
  .arw_r:before {
    border: solid transparent 7px;
    border-left: solid #000 7px;
  }
  .subvisual {
    height: 200px;
    box-sizing: border-box;
    padding: 10px;
  }
  .subvisual-container {
    height: 130px;
  }
  .subvisual-box {
    width: 90%;
  }
  .subvisual-title {
    font-size: 18px;
    background: #4abfd7;
    color: #fff;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 15px;
  }
  .header {
    height: 70px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 3px solid #000;
  }
  .header-logo {
    width: 120px;
    margin: 0 auto;
    line-height: 1;
  }
  .header-list {
    height: 80px;
    background: #ffde35;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 0 30px;
    justify-content: center;
    border-top: 2px solid #000;
    z-index: 1000;
  }
  .header-list-item {
    font-weight: 700;
    line-height: 1;
  }
  .header-list-item:nth-of-type(1), .header-list-item:nth-of-type(2) {
    display: none;
  }
  .visual-bg {
    position: relative;
    background: url(../img/mainvisual/mainvisual-bg-left.png) no-repeat left top/40%, #ffde35 url(../img/mainvisual/mainvisual-bg-right.png) no-repeat right top/40%;
  }
  .visual-img {
    width: calc(100% - 10px);
    background: url(../img/mainvisual/mv_img.png) no-repeat center/cover;
    position: relative;
    z-index: 100;
    margin: 0 auto;
    border-radius: 20px;
    text-align: center;
  }
  .mainvisual {
    padding: 20px;
    box-sizing: border-box;
  }
  .mainvisual-container {
    padding: 20px 10px;
    box-sizing: border-box;
  }
  .mainvisual-box {
    width: 100%;
    border-radius: 30px;
    position: relative;
  }
  .mainvisual-catch {
    width: 90%;
    margin: 0 auto;
  }
  .mainvisual-list {
    padding: 20px 0 80px;
    box-sizing: border-box;
    background: #4abfd7;
    gap: 0;
    margin-top: -5px;
    border-radius: 15px;
  }
  .mainvisual-list-item {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 33.3333333333%;
  }
  .mainvisual-list-item img {
    width: auto;
    max-width: initial;
    height: 75px;
  }
  .mainvisual .c-button-box {
    margin-top: -25px;
  }
  .mainvisual-img {
    position: absolute;
  }
  .mainvisual .left-img {
    width: 100px;
    left: 0;
    bottom: 58px;
  }
  .mainvisual .right-img {
    width: 100px;
    right: 0;
    bottom: 60px;
  }
  .greeting {
    padding: 40px 0 60px;
    background: #ffde35 url(../img/greeting/about_bg_deco.png) no-repeat right bottom/30%;
  }
  .greeting .c-title {
    margin-bottom: 20px;
  }
  .greeting .c-title img {
    position: relative;
    right: -50px;
  }
  .greeting .greeting_txt {
    font-size: 18px;
  }
  .trouble {
    padding: 40px 0;
  }
  .trouble .c-title {
    margin-bottom: 40px;
  }
  .trouble-list {
    gap: 20px;
  }
  .trouble-list-item {
    text-align: center;
    background: #fff;
    width: 95%;
    padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 30px;
  }
  .trouble-list-item-img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
  .trouble-list .text {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.4;
  }
  .trouble .solution-txt {
    width: 90%;
    margin: 50px auto 0;
  }
  #comic {
    text-align: center;
    padding: 60px 0;
    background: url(../img/comic/manga_bg_left.png) no-repeat left top 10px/20%, #ffde35 url(../img/comic/manga_bg_right.png) no-repeat right top 10px/20%;
  }
  #comic .c-title {
    margin-bottom: 20px;
    text-align: center;
  }
  #comic .c-button-box {
    width: 100%;
    margin-top: 40px;
  }
  .reason {
    padding: 40px 0 60px;
    background: #ffde35;
  }
  .reason .c-title {
    margin-bottom: 30px;
  }
  .reason-list {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .reason-list-card {
    width: 90%;
  }
  .reason-list .num {
    width: 70px;
    height: 70px;
    text-align: center;
    background: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 70px;
    box-sizing: border-box;
    margin: 0 auto 10px;
  }
  .reason-list .num span {
    position: relative;
    top: -2px;
  }
  .reason-list-img {
    margin-bottom: 15px;
  }
  .reason-list-title {
    text-align: center;
    font-size: 22px;
  }
  .reason-list-text {
    font-size: 16px;
  }
  .feature {
    padding-bottom: 60px;
  }
  .feature-contents {
    position: relative;
    padding-top: 35%;
    margin-bottom: 50px;
  }
  .feature-contents:last-of-type {
    margin-bottom: 0;
  }
  .feature-contents:nth-of-type(even) .feature-contents-box {
    margin: 0 0 0 auto;
  }
  .feature-contents:nth-of-type(1) .ic {
    width: 160px;
    right: -40px;
    bottom: -60px;
  }
  .feature-contents:nth-of-type(2) .ic {
    width: 140px;
    left: -70px;
    bottom: -50px;
  }
  .feature-contents:nth-of-type(3) .ic {
    width: 150px;
    right: -30px;
    bottom: -60px;
  }
  .feature-contents:nth-of-type(3) .feature-contents-box {
    padding-top: 80px;
  }
  .feature-contents-title {
    font-size: 24px;
    letter-spacing: 0;
    position: absolute;
    left: 0;
    top: -18px;
    text-align: center;
    width: 100%;
    line-height: 1.4;
  }
  .feature-contents .inbox {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .feature-contents-box {
    background: #ffde35;
    position: relative;
    z-index: 10;
    width: 94%;
    border-radius: 20px;
    border: solid 4px #000;
    padding: 60px 30px 30px 30px;
    box-sizing: border-box;
  }
  .feature-contents .ic {
    position: absolute;
    bottom: 0;
  }
  .feature-img {
    position: absolute;
    top: 0;
    width: 80%;
    padding-top: 50%;
  }
  .feature-img01 {
    background: url(../img/feature/other_list_img_01.png) no-repeat center/cover;
    right: 0;
  }
  .feature-img02 {
    background: url(../img/feature/other_list_img_02.png) no-repeat center/cover;
    left: 0;
  }
  .feature-img03 {
    background: url(../img/feature/other_list_img_03.png) no-repeat center/cover;
    right: 0;
  }
  .banner {
    padding: 40px 0;
  }
  .banner-text {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-sizing: border-box;
  }
  #contact {
    padding: 60px 0;
    background: url(../img/contact/contact_bg_left.png) no-repeat left top/20%, #ffde35 url(../img/contact/contact_bg_right.png) no-repeat right top/20%;
  }
  #contact .contat_title {
    margin-bottom: 30px;
  }
  #contact .contat_title .sub {
    display: inline-block;
    vertical-align: top;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 20px;
    padding: 10px 25px;
    margin-bottom: 15px;
    position: relative;
  }
  #contact .contat_title .sub:before {
    content: "";
    display: block;
    border: solid 10px transparent;
    border-top: 10px solid #000;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }
  #contact .contat_title .main {
    display: block;
    font-size: 25px;
  }
  #contact .contact_frame {
    padding: 30px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 30px;
    border: solid 3px #000;
  }
  #contact .click_button {
    display: block;
    padding: 0;
    margin: 0 auto;
    font-family: "Zen Kaku Gothic New", serif;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
  }
  #contact .click_button .click_button_box {
    font-size: 18px;
    min-width: initial;
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  .form_container {
    font-family: "Zen Kaku Gothic New", serif;
  }
  .form_container .in-dl {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    flex-wrap: wrap;
  }
  .form_container dt {
    text-align: left;
    margin-bottom: 10px;
  }
  .form_container dt p {
    display: flex;
    justify-content: flex-end;
  }
  .form_container dt label {
    width: calc(100% - 55px);
    display: block;
    padding-right: 20px;
  }
  .form_container dt .badge_txt {
    position: relative;
    height: 23px;
    width: 55px;
    border-radius: 0;
    text-align: center;
    display: block;
    font-size: 13px;
    line-height: 23px;
    top: 8px;
  }
  .form_container dt .require_badge {
    color: #fff;
    background: #e53935;
  }
  .form_container dt .free_badge {
    color: #fff;
    background: #9e9e9e;
  }
  .form_container dd {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  .form_container dd input,
  .form_container dd select,
  .form_container dd textarea {
    line-height: 1.6;
  }
  .form_container .input_def input,
  .form_container .input_def textarea,
  .form_container .input_def select {
    font-weight: 500;
    font-size: 18px;
    border: solid 2px #e4e4e4;
    padding: 8px;
    box-sizing: border-box;
    font-family: "Zen Kaku Gothic New", serif;
  }
  .form_container .input_def input[type=text],
  .form_container .input_def input[type=tel],
  .form_container .input_def input[type=email],
  .form_container .input_def input[type=url],
  .form_container .input_def textarea {
    width: 100%;
  }
  .form_container .input_def input[type=date] {
    width: 200px;
    color: #000;
  }
  .form_container .input_def .wpcf7-file {
    border: none;
    padding: 0;
    width: 200px;
  }
  .form_container .input_def .wpcf7-file::file-selector-button {
    border: none;
    font-family: "Zen Kaku Gothic New", serif;
    background: #ccc;
    width: 200px;
    padding: 10px 5px;
    display: block;
    cursor: pointer;
    transition: 0.1s all ease-in;
    margin-bottom: 5px;
    color: #000;
  }
  .form_container .input_def .wpcf7-file::file-selector-button:hover {
    opacity: 0.8;
  }
  .form_container .wpcf7-select {
    width: 400px;
  }
  .form_container .wpcf7-textarea {
    height: 185px;
  }
  .form_container .wpcf7-list-item {
    margin-left: 0 !important;
  }
  .form_container .input_radio .wpcf7-radio,
  .form_container .input_radio .wpcf7-checkbox,
  .form_container .input_checkbox .wpcf7-radio,
  .form_container .input_checkbox .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .form_container .input_radio .wpcf7-list-item-label,
  .form_container .input_checkbox .wpcf7-list-item-label {
    margin-left: 8px;
    cursor: pointer;
  }
  .form_container .form_button-container {
    margin-top: 40px !important;
  }
  .form_container .wpcf7-submit {
    display: block;
    background: none !important;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    height: 100%;
    color: #000;
  }
  .form_container .wpcf7-spinner {
    display: none;
  }
  .form_container .arw_r {
    margin-left: 0;
    right: 30px;
  }
  .link {
    padding: 40px 0;
    background: #ffde35;
    flex-wrap: wrap;
  }
  .link-img {
    width: 100px;
    background: url(../img/link/link-img.png) no-repeat center/cover;
    border-radius: 15px;
  }
  .link .link-list {
    width: calc(100% - 100px);
    box-sizing: border-box;
    padding-left: 20px;
  }
  .link .link-list-item {
    border-top: 1px solid #b4b4b4;
  }
  .link .link-list-item:last-of-type {
    border-bottom: 1px solid #b4b4b4;
  }
  .link .link-list-item a {
    display: block;
    padding: 10px 15px 10px 0;
    font-size: 12px;
    position: relative;
    letter-spacing: 0.05rem;
    line-height: 1.4;
  }
  .link .link-list-item a .text span{
    color: #E53935;
  }
  .link .link-list-item a .ic {
    width: 10px;
    position: absolute;
    right: 0;
    top: calc(50% - 2px);
    transform: translateY(-50%);
  }
  .company {
    padding: 60px 0;
  }
  .company-container {
    flex-wrap: wrap;
  }
  .company-category {
    width: 100%;
    margin-bottom: 30px;
  }
  .company-category:last-of-type {
    margin-bottom: 0;
  }
  .company_title {
    width: 100%;
  }
  .company-contents {
    width: 725px;
  }
  .company-listbox {
    display: flex;
    border-bottom: 1px solid #c7c7c7;
    font-size: 14px;
  }
  .company-listbox dt {
    width: 100px;
    padding: 15px 0;
  }
  .company-listbox dd {
    width: calc(100% - 100px);
    padding: 15px 0;
  }
  .company .googlemap {
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 40px;
  }
  .company .googlemap iframe {
    width: 100%;
    height: 100%;
  }
  #footer {
    background: #ffde35;
    color: #000;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0;
    padding: 15px 0 110px;
    line-height: 1.2;
  }
  #footer a {
    color: #000;
  }
}/*# sourceMappingURL=style.css.map */