@charset "UTF-8";
:root {
  --main-color: #079D3E;
  --main-color-hover: #09ce51;
  --sub-color: #FEEF34;
  --sub-color-hover: #fef367;
  --link-color: #191919;
  --link-color-hover: #079D3E;
  --text-color: #191919;
  --bg-color: #F4F5F7;
  --gothic: 'Noto Sans JP','Yu Gothic','Hiragino Kaku Gothic ProN','メイリオ','Meiryo',sans-serif;
  --mincyo: 'ヒラギノ明朝 Pro','Hiragino Mincho Pro','Yu Mincho',"ＭＳ Ｐ明朝",serif;
  --din: 'Oswald','Noto Sans JP',sans-serif;
  --roman: 'Georgia','Times New Roman','Times',serif;
  --sp-header-height: 60px;
}

* {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, picture {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html {
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  font-size: 62.5%;
}

body {
  color: var(--text-color);
  font-size: 1.7rem;
  line-height: 1.7;
  font-family: var(--gothic);
  position: relative;
}

ins {
  background-color: var(--main-color);
  color: var(--text-color);
  text-decoration: none;
}

mark {
  background-color: var(--main-color);
  color: var(--text-color);
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

input, select {
  vertical-align: middle;
}

acronym, abbr {
  cursor: help;
}

option {
  padding-right: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: .5s;
}

a:hover {
  color: var(--link-color-hover);
  text-decoration: underline;
}

a.-line {
  text-decoration: underline;
}

a.-line:hover {
  text-decoration: none;
}

form input[type="text"],
form input[type="password"],
form input[type="datetime"],
form input[type="datetime-local"],
form input[type="date"],
form input[type="month"],
form input[type="time"],
form input[type="week"],
form input[type="number"],
form input[type="email"],
form input[type="url"],
form input[type="search"],
form input[type="tel"],
form input[type="color"],
select,
textarea {
  padding: 10px;
  border: 1px solid #aaa;
  font-size: 1.7rem;
  line-height: 1.7;
  font-family: var(--gothic);
  max-width: 100%;
}

form input[type="text"]::-moz-placeholder, form input[type="password"]::-moz-placeholder, form input[type="datetime"]::-moz-placeholder, form input[type="datetime-local"]::-moz-placeholder, form input[type="date"]::-moz-placeholder, form input[type="month"]::-moz-placeholder, form input[type="time"]::-moz-placeholder, form input[type="week"]::-moz-placeholder, form input[type="number"]::-moz-placeholder, form input[type="email"]::-moz-placeholder, form input[type="url"]::-moz-placeholder, form input[type="search"]::-moz-placeholder, form input[type="tel"]::-moz-placeholder, form input[type="color"]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

form input[type="text"]:-ms-input-placeholder, form input[type="password"]:-ms-input-placeholder, form input[type="datetime"]:-ms-input-placeholder, form input[type="datetime-local"]:-ms-input-placeholder, form input[type="date"]:-ms-input-placeholder, form input[type="month"]:-ms-input-placeholder, form input[type="time"]:-ms-input-placeholder, form input[type="week"]:-ms-input-placeholder, form input[type="number"]:-ms-input-placeholder, form input[type="email"]:-ms-input-placeholder, form input[type="url"]:-ms-input-placeholder, form input[type="search"]:-ms-input-placeholder, form input[type="tel"]:-ms-input-placeholder, form input[type="color"]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
}

form input[type="text"]::placeholder,
form input[type="password"]::placeholder,
form input[type="datetime"]::placeholder,
form input[type="datetime-local"]::placeholder,
form input[type="date"]::placeholder,
form input[type="month"]::placeholder,
form input[type="time"]::placeholder,
form input[type="week"]::placeholder,
form input[type="number"]::placeholder,
form input[type="email"]::placeholder,
form input[type="url"]::placeholder,
form input[type="search"]::placeholder,
form input[type="tel"]::placeholder,
form input[type="color"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="datetime"]:focus,
form input[type="datetime-local"]:focus,
form input[type="date"]:focus,
form input[type="month"]:focus,
form input[type="time"]:focus,
form input[type="week"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form input[type="url"]:focus,
form input[type="search"]:focus,
form input[type="tel"]:focus,
form input[type="color"]:focus,
textarea:focus {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
  border: 1px solid #137af3;
  outline: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}

@-webkit-keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes widthIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes widthIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/*
===== Utility ====================================
*/
._cf:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

._cf {
  display: inline-block;
}

._m00 {
  margin: 0 !important;
}

._mt00 {
  margin-top: 0 !important;
}

._mt05 {
  margin-top: 5px !important;
}

._mt10 {
  margin-top: 10px !important;
}

._mt15 {
  margin-top: 15px !important;
}

._mt20 {
  margin-top: 20px !important;
}

._mt25 {
  margin-top: 25px !important;
}

._mt30 {
  margin-top: 30px !important;
}

._mt35 {
  margin-top: 35px !important;
}

._mt40 {
  margin-top: 40px !important;
}

._mt45 {
  margin-top: 45px !important;
}

._mt50 {
  margin-top: 50px !important;
}

._mr00 {
  margin-right: 0 !important;
}

._mr05 {
  margin-right: 5px !important;
}

._mr10 {
  margin-right: 10px !important;
}

._mr15 {
  margin-right: 15px !important;
}

._mr20 {
  margin-right: 20px !important;
}

._mr25 {
  margin-right: 25px !important;
}

._mr30 {
  margin-right: 30px !important;
}

._mr35 {
  margin-right: 35px !important;
}

._mr40 {
  margin-right: 40px !important;
}

._mr45 {
  margin-right: 45px !important;
}

._mr50 {
  margin-right: 50px !important;
}

._mb00 {
  margin-bottom: 0 !important;
}

._mb05 {
  margin-bottom: 5px !important;
}

._mb10 {
  margin-bottom: 10px !important;
}

._mb15 {
  margin-bottom: 15px !important;
}

._mb20 {
  margin-bottom: 20px !important;
}

._mb25 {
  margin-bottom: 25px !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mb35 {
  margin-bottom: 35px !important;
}

._mb40 {
  margin-bottom: 40px !important;
}

._mb45 {
  margin-bottom: 45px !important;
}

._mb50 {
  margin-bottom: 50px !important;
}

._ml00 {
  margin-left: 0 !important;
}

._ml05 {
  margin-left: 5px !important;
}

._ml10 {
  margin-left: 10px !important;
}

._ml15 {
  margin-left: 15px !important;
}

._ml20 {
  margin-left: 20px !important;
}

._ml25 {
  margin-left: 25px !important;
}

._ml30 {
  margin-left: 30px !important;
}

._ml35 {
  margin-left: 35px !important;
}

._ml40 {
  margin-left: 40px !important;
}

._ml45 {
  margin-left: 45px !important;
}

._ml50 {
  margin-left: 50px !important;
}

._p00 {
  padding: 0 !important;
}

._pt00 {
  padding-top: 0 !important;
}

._pt05 {
  padding-top: 5px !important;
}

._pt10 {
  padding-top: 10px !important;
}

._pt15 {
  padding-top: 15px !important;
}

._pt20 {
  padding-top: 20px !important;
}

._pt25 {
  padding-top: 25px !important;
}

._pt30 {
  padding-top: 30px !important;
}

._pt35 {
  padding-top: 35px !important;
}

._pt40 {
  padding-top: 40px !important;
}

._pt45 {
  padding-top: 45px !important;
}

._pt50 {
  padding-top: 50px !important;
}

._pr00 {
  padding-right: 0 !important;
}

._pr05 {
  padding-right: 5px !important;
}

._pr10 {
  padding-right: 10px !important;
}

._pr15 {
  padding-right: 15px !important;
}

._pr20 {
  padding-right: 20px !important;
}

._pr25 {
  padding-right: 25px !important;
}

._pr30 {
  padding-right: 30px !important;
}

._pr35 {
  padding-right: 35px !important;
}

._pr40 {
  padding-right: 40px !important;
}

._pr45 {
  padding-right: 45px !important;
}

._pr50 {
  padding-right: 50px !important;
}

._pb00 {
  padding-bottom: 0 !important;
}

._pb05 {
  padding-bottom: 5px !important;
}

._pb10 {
  padding-bottom: 10px !important;
}

._pb15 {
  padding-bottom: 15px !important;
}

._pb20 {
  padding-bottom: 20px !important;
}

._pb25 {
  padding-bottom: 25px !important;
}

._pb30 {
  padding-bottom: 30px !important;
}

._pb35 {
  padding-bottom: 35px !important;
}

._pb40 {
  padding-bottom: 40px !important;
}

._pb45 {
  padding-bottom: 45px !important;
}

._pb50 {
  padding-bottom: 50px !important;
}

._pl00 {
  padding-left: 0 !important;
}

._pl05 {
  padding-left: 5px !important;
}

._pl10 {
  padding-left: 10px !important;
}

._pl15 {
  padding-left: 15px !important;
}

._pl20 {
  padding-left: 20px !important;
}

._pl25 {
  padding-left: 25px !important;
}

._pl30 {
  padding-left: 30px !important;
}

._pl35 {
  padding-left: 35px !important;
}

._pl40 {
  padding-left: 40px !important;
}

._pl45 {
  padding-left: 45px !important;
}

._pl50 {
  padding-left: 50px !important;
}

._roman {
  font-family: var(--roman);
}

._mincyo {
  font-family: var(--mincyo);
}

._ss {
  font-size: 1rem;
  line-height: 1.7;
}

._s {
  font-size: 1.2rem;
  line-height: 1.7;
}

._m {
  font-size: calc(15px + 1 * (100vw - 320px) / 1180);
  line-height: calc(170% + 3.2 * (100vw - 1500px) / -1180);
}

._l {
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: calc(150% + 3.2 * (100vw - 1500px) / -1180);
}

._ll {
  font-size: calc(16px + 4 * (100vw - 320px) / 1180);
  line-height: calc(140% + 3.2 * (100vw - 1500px) / -1180);
}

._bold {
  font-weight: bold !important;
}

._normal {
  font-weight: normal !important;
}

._tl {
  text-align: left !important;
}

._tr {
  text-align: right !important;
}

._tc {
  text-align: center !important;
}

._vt {
  vertical-align: top !important;
}

._vm {
  vertical-align: middle !important;
}

._vb {
  vertical-align: bottom !important;
}

._mc {
  color: var(--main-color);
}

._sc {
  color: var(--sub-color);
}

._fl {
  padding: 0;
  float: none !important;
}

._fr {
  padding: 0;
  float: none !important;
}

._sp-show.-il {
  display: inline-block;
}

._sp-show.-fl {
  display: flex;
}

._tab-show.-il {
  display: inline-block;
}

._tab-show.-fl {
  display: flex;
}

._pc-show {
  display: none;
}

/*
===== HEADER ==========================================
*/
#site-header {
  padding-top: calc(4px + 8 * (100vw - 320px) / 1180);
  padding-bottom: calc(4px + 8 * (100vw - 320px) / 1180);
}

#site-header .inner {
  padding: 0 15px;
}

#site-header-column {
  display: flex;
  align-items: center;
  height: inherit;
}

#site-header.js-hide {
  top: calc(-1 * var(--sp-header-height));
}

#site-header-logo {
  margin: 0 20px 0 0;
  order: -1;
  width: 110px;
}

#site-header-desc {
  margin: 0;
  font-size: calc(12px + 2 * (100vw - 320px) / 1180);
  line-height: calc(150% + 3.2 * (100vw - 1500px) / -1180);
}

/*
===== FOOTER ==========================================
*/
#site-footer {
  padding: 40px 0 140px;
  background: #FFEF07 url(../images/footer-bg@sp.jpg) no-repeat right bottom/375px auto;
  font-size: 1.4rem;
  line-height: 1.7;
}

#site-footer a {
  text-decoration: none;
}

#site-footer-fixed {
  padding-right: 7px;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  position: fixed;
  bottom: -100px;
  left: 0;
  transition: .5s;
}

#site-footer-fixed.js-show {
  bottom: 0;
}

#site-footer-fixed > .contents {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

#site-footer-fixed > .contents > .ttl {
  padding: 0 10px;
  width: 40%;
  text-align: center;
}

#site-footer-fixed > .contents > .group,
#site-footer-fixed > .contents > .line {
  margin: 0 3px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  width: 30%;
}

#site-footer-fixed > .contents > .group img,
#site-footer-fixed > .contents > .line img {
  width: 100%;
}

#site-footer-column {
  display: flex;
  flex-direction: column;
}

#site-footer-logo {
  text-align: center;
  order: 3;
}

#site-footer-nav {
  order: 2;
}

#site-footer-nav > .nav {
  display: flex;
  flex-wrap: wrap;
}

#site-footer-nav > .nav > li {
  margin: 0 0 10px;
  text-align: center;
  width: 50%;
}

#site-footer-nav > .nav > li:last-child {
  border: none;
}

#site-footer .copyright {
  padding-top: calc(10px + 20 * (100vw - 320px) / 1180);
  display: block;
  font-size: calc(10px + 2 * (100vw - 320px) / 1180);
  line-height: calc(170% + 3.2 * (100vw - 1500px) / -1180);
}

/*
#page-scroll {
    margin: 0;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;

    > .totop {
        background: var(--main-color);
        border-radius: 50%;
        color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
        width: 40px;
        height: 40px;
        text-decoration: none;
		position: relative;
		
		&::before {
			margin: -4px 0 0 -5px;
			content: "";
			display: block;
			width: 8px;
			height: 8px;
			border-top: 2px solid #fff;
			border-right: 2px solid #fff;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: rotate(-45deg);
		}
		
    }
}
*/
/*
===== MAIN CONTENT ====================================
*/
.inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1140px;
  min-width: 320px;
}

#main-content {
  -webkit-animation: fadeIn 1s forwards;
  animation: fadeIn 1s forwards;
  font-size: calc(15px + 2 * (100vw - 320px) / 1180);
  line-height: calc(170% + 3.2 * (100vw - 1500px) / -1180);
  overflow: hidden;
  text-align: center;
}

/*
===== 共通　Style ====================================
*/
h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "pkna";
}

h1, .h1 {
  margin-bottom: 1.4em;
  font-size: calc(20px + 8 * (100vw - 320px) / 1180);
  line-height: calc(140% + 3.2 * (100vw - 1500px) / -1180);
}

h2, .h2 {
  margin-bottom: 1.4em;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: calc(140% + 3.2 * (100vw - 1500px) / -1180);
}

h3, .h3 {
  margin-bottom: 1.5em;
  font-size: calc(16px + 4 * (100vw - 320px) / 1180);
  line-height: calc(150% + 3.2 * (100vw - 1500px) / -1180);
}

h4, .h4 {
  margin-bottom: 1.5em;
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: calc(150% + 3.2 * (100vw - 1500px) / -1180);
}

h5, .h5 {
  margin-bottom: 1.5em;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: calc(170% + 3.2 * (100vw - 1500px) / -1180);
}

p {
  margin: 0 auto 1.5em;
}

figure {
  margin: 0 auto 1em;
}

figcaption {
  margin-top: .5em;
}

table {
  margin: 1.5em auto;
  font-size: 1.4rem;
  line-height: 1.7;
}

table th, table td {
  padding: .8em 1em;
  text-align: left;
}

table.-stripe tr {
  background: #fff;
}

table.-stripe tr:nth-child(odd) {
  background: #F3F3F3;
}

table.-stripe th {
  width: 25%;
}

table.-sp-block th {
  padding: 15px 15px 10px;
  display: block;
}

table.-sp-block td {
  padding: 0 15px 15px;
  display: block;
}

ul {
  margin: 0 auto 1.5em;
  list-style: none;
  text-align: left;
}

ol {
  margin: 0 0 1.5em 1.5em;
  text-align: left;
}

dl {
  text-align: left;
}

.gmap-res {
  line-height: 1;
}

.gmap-res > iframe {
  width: 100%;
}

.yt-res {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.yt-res > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
===== TOP ====================================
*/
#main-visual {
  margin-bottom: calc(5px + 45 * (100vw - 320px) / 1180);
  padding: 20px 0 0;
  background: url(../images/mv-bg@sp.jpg) no-repeat center top/contain;
  position: relative;
}

#main-visual > img {
  max-width: 531px;
}

.ttl-wave {
  margin-bottom: calc(15px + 15 * (100vw - 320px) / 1180);
  padding: 0 0 15px;
  background: url(../images/wave-line.svg) no-repeat center bottom;
  display: inline-block;
  font-size: calc(20px + 16 * (100vw - 320px) / 1180);
  line-height: calc(120% + 3.2 * (100vw - 1500px) / -1180);
}

.ttl-wave > .l {
  font-size: calc(28px + 28 * (100vw - 320px) / 1180);
  line-height: calc(100% + 3.2 * (100vw - 1500px) / -1180);
}

.ttl-wave > .s {
  font-size: calc(18px + 14 * (100vw - 320px) / 1180);
  line-height: calc(110% + 3.2 * (100vw - 1500px) / -1180);
}

.ttl-mp {
  margin: 0 10px 1.4em;
  padding: 0 5px;
  display: inline-block;
  font-size: calc(16px + 13 * (100vw - 320px) / 1180);
  line-height: calc(130% + 3.2 * (100vw - 1500px) / -1180);
  position: relative;
}

.ttl-mp::before, .ttl-mp::after {
  content: "";
  background: #333;
  border-radius: 2px;
  display: inline-block;
  height: 3em;
  width: 3px;
  position: absolute;
  top: 50%;
}

.ttl-mp::before {
  transform: rotate(-30deg) translate(0, -50%);
  left: 0;
}

.ttl-mp::after {
  transform: rotate(30deg) translate(0, -50%);
  right: 0;
}

.ttl-mp .l {
  font-size: calc(18px + 18 * (100vw - 320px) / 1180);
  line-height: calc(130% + 3.2 * (100vw - 1500px) / -1180);
}

.ttl-balloon {
  margin-bottom: 30px;
  padding: calc(12px + 8 * (100vw - 320px) / 1180);
  background: var(--sub-color);
  font-size: calc(16px + 20 * (100vw - 320px) / 1180);
  line-height: calc(130% + 3.2 * (100vw - 1500px) / -1180);
  position: relative;
}

.ttl-balloon::before {
  content: "";
  border-top: 15px solid var(--sub-color);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translate(-50%, 0);
}

.half-line {
  background: linear-gradient(180deg, transparent 70%, var(--sub-color) 70%);
  display: inline;
  font-weight: bold;
}

.sign-up {
  margin: auto;
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 0 20px;
  max-width: 630px;
}

.btn-list {
  margin-bottom: calc(20px + 40 * (100vw - 320px) / 1180);
}

.btn-list .btn {
  padding-top: calc(10px + 5 * (100vw - 320px) / 1180);
  padding-bottom: calc(10px + 5 * (100vw - 320px) / 1180);
  padding-left: calc(20px + 10 * (100vw - 320px) / 1180);
  padding-right: calc(25px + 15 * (100vw - 320px) / 1180);
  font-size: calc(22px + 15 * (100vw - 320px) / 1180);
  line-height: calc(130% + 3.2 * (100vw - 1500px) / -1180);
  background: var(--main-color);
  border-radius: 40px;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.2);
  color: #fff;
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  position: relative;
}

.btn-list .btn::before {
  margin-top: -5px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  right: calc(20px + 20 * (100vw - 320px) / 1180);
  top: 50%;
  transform: rotate(45deg);
}

.btn-list .line {
  margin-top: calc(10px + 15 * (100vw - 320px) / 1180);
}

.btn-list .line > .btn {
  background: #98CC36;
}
.between23{
  width: 560px;
  height:55.6px;
}
.worries-bg {
  padding-top: calc(40px + 30 * (100vw - 320px) / 1180);
  padding-bottom: 5px;
  background: #D8D9DB url(../images/worries-bg@sp.jpg) no-repeat center top/100% auto;
}

.worries-ttl {
  margin-bottom: calc(15px + 15 * (100vw - 320px) / 1180);
  font-size: calc(24px + 23 * (100vw - 320px) / 1180);
  line-height: calc(110% + 3.2 * (100vw - 1500px) / -1180);
}

.worries-ttl > .s {
  font-size: calc(20px + 20 * (100vw - 320px) / 1180);
  line-height: calc(110% + 3.2 * (100vw - 1500px) / -1180);
}

.worries-list {
  margin: 0 auto;
  padding: 0 10px;
  font-size: calc(16px + 9 * (100vw - 320px) / 1180);
  line-height: calc(130% + 3.2 * (100vw - 1500px) / -1180);
  position: relative;
  width: clamp(340px, 75vw, 810px);
}

.worries-list > li {
  margin-bottom: calc(8px + 12 * (100vw - 320px) / 1180);
  padding: 2px 2px 2px 40px;
  background: #fff url(../images/icon-check.svg) no-repeat 14px 10px/15px auto;
}

.worries .arrow {
  margin-top: calc(25px + 10 * (100vw - 320px) / 1180);
  margin-bottom: calc(25px + 10 * (100vw - 320px) / 1180);
  width: 30px;
  line-height: 1;
}

.worries .solve {
  padding: 30px 20px 20px;
  background: var(--sub-color);
  position: relative;
}

.worries .solve::before, .worries .solve::after {
  margin: 2px 0 0;
  content: "";
  border-top: 15vw solid transparent;
  border-bottom: 15vw solid var(--sub-color);
  position: absolute;
  top: -30vw;
}

.worries .solve::before {
  border-left: 50vw solid var(--sub-color);
  border-right: 50vw solid transparent;
  right: 50%;
}

.worries .solve::after {
  border-left: 50vw solid transparent;
  border-right: 50vw solid var(--sub-color);
  left: 50%;
}

.worries .solve > .ttl {
  margin-bottom: 10px;
  position: relative;
}

.worries .solve > .ttl::before {
  content: "";
  background: url(../images/solve-bg.svg) no-repeat left top/cover;
  position: absolute;
  left: 70%;
  top: -20px;
  width: 126px;
  height: 117px;
}

.about {
  background: url(../images/about-bg@sp.jpg) no-repeat left 42px/100% auto;
  position: relative;
}

.about .w100 {
  width: 100%;
}

.about-ttl {
  padding: 5px;
  background: url(../images/about-ttl@sp.png) no-repeat center center/cover;
  color: #fff;
  font-size: calc(24px + 18 * (100vw - 320px) / 1180);
  line-height: calc(120% + 3.2 * (100vw - 1500px) / -1180);
  position: relative;
}

.about-ttl::after {
  margin: -23px 0 0 10px;
  content: "";
  background: url(../images/icon-hatena.svg) no-repeat center center/cover;
  display: inline-block;
  width: 32px;
  height: 45px;
  position: absolute;
  top: 50%;
}

.about .kuchikomi {
  margin: 50px 0 0;
  margin-right: calc(20px + 20 * (100vw - 320px) / 1180);
  position: relative;
}

.about .kuchikomi > img {
  width: 70%;
}

.about .sports {
  display: none;
}

.about-lead {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 0 20px;
  font-size: calc(16px + 8 * (100vw - 320px) / 1180);
  line-height: calc(140% + 3.2 * (100vw - 1500px) / -1180);
  font-weight: bold;
}

.about-lead .half-line {
  font-size: calc(18px + 8 * (100vw - 320px) / 1180);
  line-height: calc(140% + 3.2 * (100vw - 1500px) / -1180);
}

.about-service-ttl {
  margin: 0 auto 20px;
  font-size: calc(15px + 11 * (100vw - 320px) / 1180);
  line-height: calc(150% + 3.2 * (100vw - 1500px) / -1180);
  max-width: 850px;
  position: relative;
}

.about-service-ttl::before {
  content: "";
  background: #000;
  height: 5px;
  width: 94%;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translate(0, -50%);
}

.about-service-ttl > span {
  padding: 5px;
  padding-left: calc(15px + 15 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 15 * (100vw - 320px) / 1180);
  background: #000;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  position: relative;
}

.about-team {
  margin-top: calc(-1px + -69 * (100vw - 320px) / 1180);
  position: relative;
}

.about-team::after, .about-team::before {
  content: '';
  position: absolute;
  left: calc(50% - 50vw);
  top: -4%;
  width: 100vw;
  height: 112%;
}

.about-team::before {
  background: linear-gradient(90deg, #079d3e 0%, #006000 50%, #079d3e 100%);
  transform: skewY(10deg);
  z-index: 0;
}

.about-team::after {
  background: var(--main-color);
  transform: skewY(-10deg);
}

.about-team-contents {
  position: relative;
  z-index: 3;
}

.about-team-ttl {
  margin-bottom: calc(25px + 15 * (100vw - 320px) / 1180);
  padding: 10px 30px 0;
}

.about-reason {
  padding-bottom: 10px;
  padding-top: calc(60px + 50 * (100vw - 320px) / 1180);
  position: relative;
}

.about-reason > .inner {
  padding: 0;
  max-width: 1200px;
}

.about-reason::before {
  content: '';
  background: var(--bg-color);
  position: absolute;
  left: 0;
  top: -150px;
  height: 120%;
  width: 100vw;
  z-index: -2;
}

.about-reason-ttl {
  padding: 0 40px;
  margin-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
}

.about-reason-box {
  margin-bottom: calc(10px + 20 * (100vw - 320px) / 1180);
  position: relative;
}

.about-reason-box .top,
.about-reason-box .bottom {
  line-height: 1;
}

.about-reason-box .bg {
  padding-left: calc(30px + 70 * (100vw - 320px) / 1180);
  padding-right: calc(30px + 70 * (100vw - 320px) / 1180);
  background: url(../images/reason-bg.png) repeat-y left top/100% auto;
}

.about-reason-box .num {
  margin: 0;
  position: absolute;
  color: var(--main-color);
  font-size: calc(48px + 52 * (100vw - 320px) / 1180);
  line-height: calc(100% + 3.2 * (100vw - 1500px) / -1180);
  font-family: var(--din);
  top: 0;
  transform: translate(0, -30%);
}

.about-reason-box .num.-l {
  left: calc(30px + 80 * (100vw - 320px) / 1180);
}

.about-reason-box .num.-r {
  right: calc(30px + 80 * (100vw - 320px) / 1180);
}

.about-reason-box .bg-line {
  background: #FEF698;
  display: inline;
  font-weight: bold;
}

.about-reason-box .img-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-reason-box .img-column.-row {
  flex-direction: row;
}

.about-reason-box .img-column > .item {
  flex: 1;
}

.about-reason-box .img-column > .img {
  margin: 20px 0 10px;
}

.about-reason-box .img-column > .txtarea {
  text-align: left;
}

.about-reason-box .img-column .ttl {
  margin-bottom: calc(10px + 10 * (100vw - 320px) / 1180);
  font-size: calc(24px + 16 * (100vw - 320px) / 1180);
  line-height: calc(120% + 3.2 * (100vw - 1500px) / -1180);
}

.about-reason-box .img-column .ttl > .l {
  font-size: calc(30px + 29 * (100vw - 320px) / 1180);
  line-height: calc(120% + 3.2 * (100vw - 1500px) / -1180);
}

.about-reason-box.reason01 .img-column .ttl {
  margin-bottom: calc(10px + 10 * (100vw - 320px) / 1180);
  font-size: calc(20px + 15 * (100vw - 320px) / 1180);
  line-height: calc(120% + 3.2 * (100vw - 1500px) / -1180);
}

.about-reason-box.reason02 .img-column {
  margin: 0 auto 20px;
  max-width: 640px;
}

.about-reason-box.reason02 .img-column > .img {
  display: none;
}

.about-reason-box.reason02 .img-column > .txtarea > .sp-flex {
  padding: 20px 0 10px;
  display: flex;
  align-items: center;
}

.about-reason-box.reason02 .img-column > .txtarea > .sp-flex > .sp-img {
  margin: 0 10px 0 0;
  width: 30%;
}

.about-reason-box.reason04 {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
}

.about-reason .arrow {
  width: 30px;
}

.about-others {
  background: var(--bg-color);
  position: relative;
}

.about-others .inner {
  padding: 0 10px;
}

.about-others-ttl {
  position: relative;
}

.about-others-ttl::before, .about-others-ttl::after {
  content: "";
  background: #fff;
  height: 100%;
  width: 3px;
  position: absolute;
  top: 30%;
  z-index: 2;
}

.about-others-ttl::before {
  left: 0;
}

.about-others-ttl::after {
  right: 0;
}

.about-others-ttl > .ttl {
  margin: 0;
  font-size: calc(11px + 17 * (100vw - 320px) / 1180);
  line-height: calc(130% + 3.2 * (100vw - 1500px) / -1180);
}

.about-others-ttl > .ttl::before {
  content: "";
  background: #fff;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 30%;
  left: 0;
}

.about-others-ttl > .ttl > span {
  padding-left: calc(10px + 30 * (100vw - 320px) / 1180);
  padding-right: calc(10px + 30 * (100vw - 320px) / 1180);
  background: var(--bg-color);
  display: inline-block;
  position: relative;
  max-width: 90%;
}

.about-others .img-column {
  padding-top: calc(20px + 20 * (100vw - 320px) / 1180);
  padding-left: calc(5px + 45 * (100vw - 320px) / 1180);
  padding-right: calc(5px + 45 * (100vw - 320px) / 1180);
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  display: flex;
  align-items: center;
}

.about-others .img-column > .img {
  margin: 0;
  width: 75%;
  position: relative;
}

.about-others .img-column > .img::before {
  content: "";
  border-left: 30vw solid transparent;
  border-right: 30vw solid transparent;
  border-bottom: 30px solid rgba(255, 255, 255, 0.5);
  border-top: 30px solid transparent;
  position: absolute;
  bottom: 0;
}

.about-others .img-column > .img > span {
  position: relative;
}

.about-others .img-column > .txtarea {
  flex: 1;
  text-align: left;
}

.about-others .img-column > .txtarea > .ttl {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1180);
  margin-bottom: calc(10px + 10 * (100vw - 320px) / 1180);
  font-size: calc(20px + 11 * (100vw - 320px) / 1180);
  line-height: calc(130% + 3.2 * (100vw - 1500px) / -1180);
  letter-spacing: -1px;
}

.about-others .img-column.-l > .txtarea {
  margin-left: -10%;
}

.about-others .img-column.-l > .img {
  margin-left: -15%;
}

.about-others .img-column.-l > .img::before {
  border-left-color: rgba(255, 255, 255, 0.5);
  right: 10%;
}

.about-others .img-column.-r > .txtarea {
  margin-right: -10%;
  order: -1;
}

.about-others .img-column.-r > .img {
  margin-right: -15%;
}

.about-others .img-column.-r > .img::before {
  border-right-color: rgba(255, 255, 255, 0.5);
  left: 0;
}

.about-others .img-column.-end {
  padding-bottom: calc(20px + 10 * (100vw - 320px) / 1180);
  border-bottom: 3px solid #fff;
}

.about-others .img-column.-end > .img {
  margin-left: -25%;
}

.about-others .img-column.-end > .txtarea {
  margin-left: 0;
}

.sign-up-bg {
  padding-top: calc(30px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(70px + 70 * (100vw - 320px) / 1180);
  background: var(--bg-color);
}

.faqs {
  position: relative;
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
}

.faqs-ttl {
  margin-top: calc(-50px + -50 * (100vw - 320px) / 1180);
  font-size: calc(24px + 16 * (100vw - 320px) / 1180);
  line-height: calc(120% + 3.2 * (100vw - 1500px) / -1180);
  color: var(--main-color);
}

.faqs-ttl > .en {
  margin: 0 auto 20px;
  display: block;
  width: 50%;
}

.faqs > .arrow {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translate(-50%, 0);
  width: 30px;
}

.faqs-list {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
}

.acr-plus > .trigger-ne {
  margin-bottom: calc(10px + 10 * (100vw - 320px) / 1180);
  padding: 15px;
  padding-left: calc(40px + 60 * (100vw - 320px) / 1180);
  padding-right: calc(40px + 20 * (100vw - 320px) / 1180);
  background: var(--bg-color) url(../images/icon-q.svg) no-repeat 15px center/20px auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: calc(15px + 7 * (100vw - 320px) / 1180);
  line-height: calc(140% + 3.2 * (100vw - 1500px) / -1180);
  font-weight: bold;
  position: relative;
}

.acr-plus > .trigger-ne::before, .acr-plus > .trigger-ne::after {
  content: '';
  background: var(--main-color);
  transition: 0.5s;
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
}

.acr-plus > .trigger-ne::after {
  height: 3px;
  width: 28px;
  right: calc(15px + 6 * (100vw - 320px) / 1180);
}

.acr-plus > .trigger-ne::before {
  height: 31px;
  width: 3px;
  right: calc(27px + 6 * (100vw - 320px) / 1180);
}

.acr-plus > .trigger-ne > .en {
  margin-right: 20px;
  color: var(--main-color);
  font-family: var(--din);
  font-size: calc(40px + 20 * (100vw - 320px) / 1180);
  line-height: calc(100% + 3.2 * (100vw - 1500px) / -1180);
}

.acr-plus > .trigger-ne.js-active::after {
  transform: rotate(180deg);
}

.acr-plus > .trigger-ne.js-active::before {
  transform: translate(0, -50%) rotate(-90deg);
  background: #fff;
}

.acr-plus > .content {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1180);
  padding: 10px;
  padding-left: calc(40px + 60 * (100vw - 320px) / 1180);
  padding-right: calc(20px + 40 * (100vw - 320px) / 1180);
  background: url(../images/icon-a.svg) no-repeat 15px 10px/20px auto;
}

.recruit {
  padding-top: calc(50px + 50 * (100vw - 320px) / 1180);
  padding-bottom: 10px;
  background: var(--bg-color);
}

.recruit-ttl {
  margin: 0;
  padding: 0 20px;
}

.recruit .sign-up {
  margin-top: 0;
}

@media (min-width: 600px) {
  body {
    margin: 0;
  }
  ._sp-show {
    display: none;
  }
  #site-footer-fixed > .contents {
    padding: 12px 0;
    height: auto;
  }
  #site-footer-fixed > .contents > .ttl {
    width: auto;
  }
  #site-footer-fixed > .contents > .group,
  #site-footer-fixed > .contents > .line {
    width: auto;
  }
  #main-visual {
    background: #FFD828 url(../images/mv-bg.jpg) no-repeat center center/cover;
  }
  .ttl-mp::before, .ttl-mp::after {
    width: 5px;
  }
  .worries .solve > .ttl::before {
    left: 80%;
  }
  .about .kuchikomi {
    margin-top: 0;
  }
  .about-others-ttl::before, .about-others-ttl::after {
    top: 50%;
    width: 5px;
  }
  .about-others-ttl > .ttl::before {
    top: 50%;
    height: 5px;
  }
  .about-others .img-column {
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
  }
  .about-others .img-column > .img {
    width: 45%;
  }
  .about-others .img-column > .img::before {
    border-bottom: 130px solid rgba(255, 255, 255, 0.5);
    border-top: 130px solid transparent;
  }
  .about-others .img-column.-l > .txtarea {
    margin: 0;
  }
  .about-others .img-column.-l > .img {
    margin: 0;
  }
  .about-others .img-column.-r > .txtarea {
    margin: 0;
  }
  .about-others .img-column.-r > .img {
    margin: 0;
  }
  .about-others .img-column.-end {
    border-bottom: 5px solid #fff;
  }
  .about-others .img-column.-end > .img {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  body {
    margin: 0;
  }
  ._fl {
    padding: 0 20px 10px 0;
    float: left !important;
  }
  ._fr {
    padding: 0 0 10px 20px;
    float: right !important;
  }
  ._tab-show {
    display: none;
  }
  ._pc-show {
    display: block;
  }
  ._pc-show.-il {
    display: inline-block;
  }
  ._pc-show.-fl {
    display: flex;
  }
  ._no-link {
    pointer-events: none;
  }
  #site-header {
    position: relative;
    height: auto;
  }
  #site-header-logo {
    width: auto;
  }
  #site-footer {
    padding: 70px 0;
    background: #FFD828 url(../images/footer-bg.jpg) no-repeat right bottom;
    height: 375px;
  }
  #site-footer-column {
    flex-direction: row;
  }
  #site-footer-logo {
    order: 1;
  }
  #site-footer-nav {
    width: 46em;
  }
  #site-footer-nav > .nav {
    margin: 0 0 0 1em;
  }
  #site-footer-nav > .nav > li {
    padding: 0 15px 0 11px;
    border-right: 1px solid #191919;
    display: inline-block;
    width: auto;
  }
  table.-sp-block th, table.-sp-block td {
    padding: .8em 1em;
    display: table-cell;
  }
  #main-visual {
    padding: 0;
    height: 600px;
  }
  #main-visual > img {
    max-width: 100%;
  }
  .worries-bg {
    background: #D8D9DB url(../images/worries-bg.jpg) no-repeat center top/cover;
  }
  .worries-list > li {
    padding: 10px 10px 10px 65px;
    background-position: 30px 20px;
    background-size: 24px auto;
  }
  .worries .arrow {
    width: auto;
  }
  .worries .solve > .ttl::before {
    left: calc(50% + 283px);
    width: 253px;
    height: 235px;
  }
  .about {
    background: url(../images/about-bg.jpg) no-repeat left top/100% auto;
  }
  .about .w100 {
    width: auto;
  }
  .about-ttl {
    background-image: url(../images/about-ttl.png);
  }
  .about-ttl::after {
    margin-top: -45px;
    width: 63px;
    height: 89px;
  }
  .about .kuchikomi > img {
    width: auto;
  }
  .about .sports {
    display: block;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
  }
  .about-team::after, .about-team::before {
    top: -12%;
    height: 120%;
  }
  .about-team::before {
    z-index: -1;
  }
  .about-team-ttl {
    padding: 0;
  }
  .about-reason-box .img-column {
    flex-direction: row;
  }
  .about-reason-box .img-column > .img {
    margin: 0;
  }
  .about-reason-box .img-column > .txtarea {
    padding-left: 40px;
  }
  .about-reason-box.reason02 .img-column > .img {
    display: block;
    flex: none;
    width: 30%;
    max-width: 170px;
  }
  .about-reason-box.reason02 .img-column > .txtarea > .sp-flex {
    padding: 0;
    display: block;
  }
  .about-reason-box.reason02 .img-column > .txtarea > .sp-flex > .sp-img {
    display: none;
  }
  .about-reason-box.reason04 .img-column > .txtarea {
    order: -1;
  }
  .about-reason .arrow {
    width: auto;
  }
  .about-others .img-column.-l > .txtarea {
    padding: 0 0 0 40px;
  }
  .about-others .img-column.-l > .img::before {
    right: 0;
  }
  .about-others .img-column.-r > .txtarea {
    padding: 0 40px 0 0;
  }
  .faqs-ttl > .en {
    width: auto;
  }
  .faqs > .arrow {
    bottom: -70px;
    width: auto;
  }
  .acr-plus > .trigger-ne {
    background: var(--bg-color) url(../images/icon-q.svg) no-repeat 40px center/35px auto;
  }
  .acr-plus > .content {
    background: url(../images/icon-a.svg) no-repeat 40px 10px/34px auto;
  }
}

@media (min-width: 1280px) {
  body {
    margin: 0;
  }
}

@media (min-width: 1500px) {
  ._m {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  ._l {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  ._ll {
    font-size: 2rem;
    line-height: 1.4;
  }
  #site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  #site-header-desc {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  #site-footer .copyright {
    padding-top: 30px;
  }
  #site-footer .copyright {
    font-size: 1.2rem;
    line-height: 1.7;
  }
  #main-content {
    font-size: 1.7rem;
    line-height: 1.7;
  }
  h1, .h1 {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  h2, .h2 {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  h3, .h3 {
    font-size: 2rem;
    line-height: 1.5;
  }
  h4, .h4 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  h5, .h5 {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  #main-visual {
    margin-bottom: 50px;
  }
  .ttl-wave {
    margin-bottom: 30px;
  }
  .ttl-wave {
    font-size: 3.6rem;
    line-height: 1.2;
  }
  .ttl-wave > .l {
    font-size: 5.6rem;
    line-height: 1;
  }
  .ttl-wave > .s {
    font-size: 3.2rem;
    line-height: 1.1;
  }
  .ttl-mp {
    font-size: 2.9rem;
    line-height: 1.3;
  }
  .ttl-mp .l {
    font-size: 3.6rem;
    line-height: 1.3;
  }
  .ttl-balloon {
    padding: 20px;
  }
  .ttl-balloon {
    font-size: 3.6rem;
    line-height: 1.3;
  }
  .sign-up {
    margin-bottom: 50px;
  }
  .btn-list {
    margin-bottom: 60px;
  }
  .btn-list .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .btn-list .btn {
    padding-left: 30px;
  }
  .btn-list .btn {
    padding-right: 40px;
  }
  .btn-list .btn {
    font-size: 3.7rem;
    line-height: 1.3;
  }
  .btn-list .btn::before {
    right: 40px;
  }
  .btn-list .line {
    margin-top: 25px;
  }
  .worries-bg {
    padding-top: 70px;
  }
  .worries-ttl {
    margin-bottom: 30px;
  }
  .worries-ttl {
    font-size: 4.7rem;
    line-height: 1.1;
  }
  .worries-ttl > .s {
    font-size: 4rem;
    line-height: 1.1;
  }
  .worries-list {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .worries-list > li {
    margin-bottom: 20px;
  }
  .worries .arrow {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .about-ttl {
    font-size: 4.2rem;
    line-height: 1.2;
  }
  .about .kuchikomi {
    margin-right: 40px;
  }
  .about-lead {
    margin-bottom: 50px;
  }
  .about-lead {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .about-lead .half-line {
    font-size: 2.6rem;
    line-height: 1.4;
  }
  .about-service-ttl {
    font-size: 2.6rem;
    line-height: 1.5;
  }
  .about-service-ttl > span {
    padding-left: 30px;
    padding-right: 30px;
  }
  .about-team {
    margin-top: -70px;
  }
  .about-team-ttl {
    margin-bottom: 40px;
  }
  .about-reason {
    padding-top: 110px;
  }
  .about-reason-ttl {
    margin-bottom: 70px;
  }
  .about-reason-box {
    margin-bottom: 30px;
  }
  .about-reason-box .bg {
    padding-left: 100px;
    padding-right: 100px;
  }
  .about-reason-box .num {
    font-size: 10rem;
    line-height: 1;
  }
  .about-reason-box .num.-l {
    left: 110px;
  }
  .about-reason-box .num.-r {
    right: 110px;
  }
  .about-reason-box .img-column .ttl {
    margin-bottom: 20px;
  }
  .about-reason-box .img-column .ttl {
    font-size: 4rem;
    line-height: 1.2;
  }
  .about-reason-box .img-column .ttl > .l {
    font-size: 5.9rem;
    line-height: 1.2;
  }
  .about-reason-box.reason01 .img-column .ttl {
    margin-bottom: 20px;
  }
  .about-reason-box.reason01 .img-column .ttl {
    font-size: 3.5rem;
    line-height: 1.2;
  }
  .about-reason-box.reason04 {
    margin-bottom: 50px;
  }
  .about-others-ttl > .ttl {
    font-size: 2.8rem;
    line-height: 1.3;
  }
  .about-others-ttl > .ttl > span {
    padding-left: 40px;
    padding-right: 40px;
  }
  .about-others .img-column {
    padding-top: 40px;
  }
  .about-others .img-column {
    padding-left: 50px;
    padding-right: 50px;
  }
  .about-others .img-column > .txtarea > .ttl {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .about-others .img-column > .txtarea > .ttl {
    font-size: 3.1rem;
    line-height: 1.3;
  }
  .about-others .img-column.-end {
    padding-bottom: 30px;
  }
  .sign-up-bg {
    padding-top: 60px;
  }
  .sign-up-bg {
    padding-bottom: 140px;
  }
  .faqs {
    padding-bottom: 70px;
  }
  .faqs-ttl {
    margin-top: -100px;
  }
  .faqs-ttl {
    font-size: 4rem;
    line-height: 1.2;
  }
  .faqs-list {
    margin-bottom: 50px;
  }
  .acr-plus > .trigger-ne {
    margin-bottom: 20px;
  }
  .acr-plus > .trigger-ne {
    padding-left: 100px;
  }
  .acr-plus > .trigger-ne {
    padding-right: 60px;
  }
  .acr-plus > .trigger-ne {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .acr-plus > .trigger-ne::after {
    right: 21px;
  }
  .acr-plus > .trigger-ne::before {
    right: 33px;
  }
  .acr-plus > .trigger-ne > .en {
    font-size: 6rem;
    line-height: 1;
  }
  .acr-plus > .content {
    margin-bottom: 40px;
  }
  .acr-plus > .content {
    padding-left: 100px;
  }
  .acr-plus > .content {
    padding-right: 60px;
  }
  .recruit {
    padding-top: 100px;
  }
}

@media (any-hover: hover) {
  .btn-list .btn:hover {
    background: var(--main-color-hover);
  }
  .btn-list .line > .btn:hover {
    background: #add65f;
  }
}

@media (any-hover: none) {
  .btn-list .btn:active {
    background: var(--main-color-hover);
  }
  .btn-list .line > .btn:active {
    background: #add65f;
  }
}
.company {
  width: 80%;
  }
  
  .company th,.company td {
  border: 1px solid #ccc;
  padding: 20px;
  }
  
  .company th {
  font-weight: bold;
  background-color: #f5f4f4; 
  }
  
  @media screen and (max-width: 479px) {
  .company,.company tr,.company td,
  .company th {display:block;}
  .company th {width:auto;}
  }
  
  .team_counts{
    margin-bottom: 15px;
  }
 .team_text{
   margin-right:20px;
   font-size:large;
 }
 .int{
   font-size:38px;
   font-weight: bolder;
 }
 .subject{
   padding-left:3px;
 }

 .main_img_sp{
  display: none;
  margin-bottom: 20px;
}


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

  .main_img_sp{
      display: block;
  }
}

.main_img_pc,.main_img_sp{
  width:100%;
  margin-bottom: 10px;
}
.mockup{
  width:80%;
  margin:0 auto;
}