@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 901px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  html {
    min-width: 375px;
  }
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
  padding-top: 86.3px;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 14px;
    padding-top: 68.42px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.l-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .l-inner {
    padding: 0 20px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans JP", sans-serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #F4F4F4;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px 0;
  z-index: 100;
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .logo {
  max-width: 224px;
}
@media screen and (max-width: 900px) {
  .header .flex .logo {
    max-width: 170px;
  }
}
.header .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .logo a:hover {
  opacity: 0.6;
}
.header .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .right ul li {
  margin-right: 40px;
}
.header .right ul li:last-child {
  margin-right: 0;
}
.header .right ul li a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.header .right ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background-color: #000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header .right ul li a:hover::after {
  width: 100%;
}

.drawer-icon {
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 901px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 30px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #000;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer-icon-nav ul li {
  margin-bottom: 50px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #000;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.footer-top {
  padding: 30px 0;
}
.footer-top .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  .footer-top .flex {
    display: block;
  }
}
.footer-top .flex .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .footer-top .flex .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}
.footer-top .flex .sns li {
  width: 35px;
  margin-right: 25px;
}
.footer-top .flex .sns li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-top .flex .sns li a:hover {
  opacity: 0.6;
}
.footer-top .lists {
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .footer-top .lists {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}
.footer-top .lists a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.footer-top .lists a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background-color: #000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer-top .lists a:hover::after {
  width: 100%;
}
.footer-top .copyright {
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .footer-top .copyright {
    text-align: center;
  }
}

.top .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .top .flex1 {
    display: block;
  }
}
.top .flex1 .left {
  width: 57.5%;
}
@media screen and (max-width: 900px) {
  .top .flex1 .left {
    width: 100%;
  }
}
.top .flex1 .left .heading {
  margin-bottom: 3%;
}
@media screen and (max-width: 900px) {
  .top .flex1 .left .heading {
    margin-bottom: 0;
  }
}
.top .flex1 .left .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .top .flex1 .left .bottom {
    display: block;
  }
}
.top .flex1 .left .bottom .img {
  width: 48.5%;
}
@media screen and (max-width: 900px) {
  .top .flex1 .left .bottom .img {
    width: 100%;
  }
}
.top .flex1 .right {
  width: 40.5%;
}
@media screen and (max-width: 900px) {
  .top .flex1 .right {
    width: 100%;
  }
}
.top .flex1 .right .img {
  margin-bottom: 5%;
}
@media screen and (max-width: 900px) {
  .top .flex1 .right .img {
    margin-bottom: 0;
  }
}
.top .img {
  overflow: hidden;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top .img a {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top .img a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top .img a .text {
  font-size: 20px;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #000;
  line-height: 1;
  text-shadow: 0 0 2px white, 0 0 4px white, 0 0 6px white, 0 0 8px white, 0 0 10px white, 0 0 12px white, 0 0 14px white, 0 0 16px white;
}
.top .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-top .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section {
  padding: 80px 0;
}
@media screen and (max-width: 900px) {
  .section {
    padding: 40px 0;
  }
}

@media screen and (max-width: 900px) {
  .top .img {
    margin-bottom: 20px !important;
  }
}
.common-mv .wrap-area {
  background: url(../img/common-mv.jpg) no-repeat center center/cover;
  padding: 150px 0;
  border-radius: 15px;
}
@media screen and (max-width: 900px) {
  .common-mv .wrap-area {
    padding: 40px 0;
  }
}
.common-mv .title {
  text-align: center;
  line-height: 1;
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .common-mv .title {
    font-size: 22px;
  }
}

.footer {
  position: relative;
  padding: 80px 0 120px;
}
.footer .address {
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .footer .address {
    margin-bottom: 20px;
  }
}
.footer .footer-logo {
  max-width: 300px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 900px) {
  .footer .footer-logo {
    max-width: 170px;
    margin-bottom: 20px;
  }
}
.footer .footer-logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .footer-logo a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 40px 0 30px;
  }
}
.footer .bg-img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 900px) {
  .footer .flex {
    display: block;
  }
}
.footer .flex .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .footer .flex .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}
.footer .flex .sns li {
  width: 35px;
  margin-right: 25px;
}
.footer .flex .sns li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .flex .sns li a:hover {
  opacity: 0.6;
}
.footer .lists {
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .footer .lists {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}
.footer .lists a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.footer .lists a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background-color: #000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer .lists a:hover::after {
  width: 100%;
}
.footer .copyright {
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .footer .copyright {
    text-align: center;
  }
}
.footer .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .footer .footer-nav {
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer .footer-nav li {
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .footer .footer-nav li {
    margin-right: 0px;
    width: 50%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer .footer-nav li:last-child {
  margin-right: 0;
}
.footer .footer-nav li a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.footer .footer-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background-color: #000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer .footer-nav li a:hover::after {
  width: 100%;
}

body,
html {
  overflow-x: hidden;
}

.message .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .message .flex {
    display: block;
  }
}
.message .flex .left {
  width: 47%;
}
@media screen and (max-width: 900px) {
  .message .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.message .flex .img {
  width: 47%;
}
@media screen and (max-width: 900px) {
  .message .flex .img {
    width: 100%;
  }
}
@media screen and (min-width: 1350px) {
  .message .flex .img img {
    width: 140%;
  }
}
.message .name {
  text-align: right;
  margin-top: 30px;
  font-family: serif;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .message .name {
    font-size: 15px;
    margin-top: 20px;
  }
}

.section-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .section-title {
    margin-bottom: 10px;
  }
}
.section-title .en {
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .section-title .en {
    margin-bottom: 10px;
  }
}
.section-title .en .wrap {
  display: inline-block;
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .section-title .en .wrap {
    font-size: 20px;
  }
}
.section-title .en .wrap::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 110%;
}
.section-title .ja {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .section-title .ja {
    font-size: 20px;
  }
}

.red {
  color: #EA5514;
}

@media screen and (min-width: 901px) {
  .profile .area {
    padding: 0 40px;
  }
}
.profile .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 40px;
  border-top: 0.5px solid #1CB0E7;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .profile .row {
    padding: 7px 0;
    display: block;
  }
}
.profile .row:last-child {
  border-bottom: 0.5px solid #1CB0E7;
}
.profile .row .dt {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .profile .row .dt {
    width: 100%;
    margin-bottom: 3px;
  }
}
.profile .row .dd {
  width: calc(100% - 220px);
}
@media screen and (max-width: 900px) {
  .profile .row .dd {
    width: 100%;
  }
}

.map-area .wrap2 {
  width: 100%;
  padding-top: 70%;
  position: relative;
}
.map-area .wrap2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta .box {
  background: url(../img/cta-pc.png) no-repeat center center/cover;
  border-radius: 20px;
  border: 4px solid #1CB0E7;
  padding: 60px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .cta .box {
    display: block;
    padding: 30px 15px;
  }
}
.cta .box .left {
  font-size: 24px;
  font-weight: 500;
  text-shadow: 0 0 2px white, 0 0 4px white, 0 0 6px white, 0 0 8px white, 0 0 10px white, 0 0 12px white, 0 0 14px white, 0 0 16px white;
}
.cta .box .left .red {
  color: #EA5514;
}
@media screen and (max-width: 900px) {
  .cta .box .left {
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (min-width: 901px) {
  .cta .box .btn {
    margin-left: 10px;
  }
}
@media screen and (max-width: 900px) {
  .cta .box .btn {
    margin-top: 20px;
    text-align: center;
  }
}
.cta .box .btn a {
  background: #EA5514;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  display: block;
  padding: 15px;
  min-width: 385px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #EA5514;
  background: #EA5514;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
}
.cta .box .btn a::after {
  position: absolute;
  top: 52%;
  content: "";
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: inline-block;
  width: 8px;
  height: 8px;
  right: 30px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  /* ← ここで角度変更！ */
}
.cta .box .btn a:hover {
  background: #fff;
  color: #EA5514;
}
.cta .box .btn a:hover::after {
  border-right: 1px solid #EA5514;
  border-bottom: 1px solid #EA5514;
}
@media screen and (max-width: 900px) {
  .cta .box .btn a {
    max-width: 385px;
    min-width: initial;
    font-size: 20px;
  }
}

.apply ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .apply ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.apply ul li {
  width: 200px;
  height: 200px;
  position: relative;
  border: 2px solid #1CB0E7;
  border-radius: 50%;
}
.apply ul li::after {
  position: absolute;
  top: 50%;
  right: -22%;
  content: "";
  background: url(../img/arrow.png) no-repeat center center/cover;
  width: 20.02px;
  height: 19.06px;
}
@media screen and (max-width: 1100px) {
  .apply ul li::after {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .apply ul li {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .apply ul li:last-child {
    margin-bottom: 0;
  }
}
.apply ul li:last-child::after {
  display: none;
}
.apply ul li .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.apply ul .num {
  font-weight: 700;
  position: absolute;
  top: 10%;
  left: 2%;
  color: #fff;
  background: #1CB0E7;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
@media screen and (max-width: 900px) {
  .apply ul .num {
    top: 7%;
  }
}
.apply ul .num .num-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.apply .btn {
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .apply .btn {
    margin-top: 30px;
  }
}

.section-btn {
  text-align: center;
}
.section-btn a {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  padding: 15px 80px;
  border-radius: 20px;
  border: 1px solid #1CB0E7;
  background: #1CB0E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .section-btn a {
    padding: 15px 20px;
    width: 100%;
  }
}
.section-btn a::after {
  position: absolute;
  top: 52%;
  content: "";
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: inline-block;
  width: 8px;
  height: 8px;
  right: 30px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  /* ← ここで角度変更！ */
}
.section-btn a:hover {
  background: #fff;
  color: #1CB0E7;
}
.section-btn a:hover::after {
  border-right: 1px solid #1CB0E7;
  border-bottom: 1px solid #1CB0E7;
}
@media screen and (max-width: 900px) {
  .section-btn a {
    max-width: 385px;
    min-width: initial;
    font-size: 20px;
  }
}

.section-lead {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  .section-lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  .section-lead {
    font-size: 18px;
  }
}

.lead-section {
  padding-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .lead-section {
    padding-bottom: 0;
  }
}

.service ul li {
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .service ul li {
    margin-bottom: 40px;
  }
}
.service ul li:last-child {
  margin-bottom: 0;
}
.service ul li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .service ul li .flex {
    display: block;
  }
}
.service ul li:nth-child(2n) .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.service ul li .contents {
  width: 48%;
}
@media screen and (max-width: 900px) {
  .service ul li .contents {
    width: 100%;
    margin-bottom: 15px;
  }
}
.service ul li .img {
  width: 48%;
}
@media screen and (max-width: 900px) {
  .service ul li .img {
    width: 100%;
  }
}

.qa .row {
  display: block;
}
.qa .dt {
  width: 100% !important;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 901px) {
  .qa .dt:hover {
    opacity: 0.6;
  }
}
.qa .dt::after {
  position: absolute;
  content: "";
  background: url(../img/q-arrow.png) no-repeat center center/cover;
  width: 20.88px;
  height: 11px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.qa .dt.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.qa .dt.active::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.qa .dd {
  width: 100% !important;
  padding: 10px 0;
  display: none;
}
.qa .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.qa .flex .icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1CB0E7;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  top: -3px;
  line-height: 1;
}
.qa .flex .icon .q-wrap {
  position: absolute;
  top: 44%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  line-height: 1;
}
.qa .flex p {
  width: calc(100% - 50px);
}

.works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .works ul {
    display: block;
  }
}
.works ul a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
}
.works ul a:hover .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works ul a:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 901px) {
  .works ul li {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
  }
  .works ul li:nth-child(3n) {
    margin-right: 0;
  }
  .works ul li:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 900px) {
  .works ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .works ul li:last-child {
    margin-bottom: 0;
  }
}
.works ul li .img {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works ul li .img .wrap {
  position: relative;
  padding-top: 65%;
}
.works ul li .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works ul li h3 {
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1300px) {
  .works ul li h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  .works ul li h3 {
    text-align: left;
    font-size: 16px;
  }
}

.single-section h1 {
  font-size: 36px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .single-section h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.single-section .img {
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .single-section .img {
    margin-bottom: 20px;
  }
}
.single-section .img img {
  border-radius: 20px;
}
.single-section h2, .single-section h3, .single-section h4, .single-section h5, .single-section h6 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .single-section h2, .single-section h3, .single-section h4, .single-section h5, .single-section h6 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.contact .lead {
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .contact .lead {
    margin-bottom: 30px;
  }
}

.required {
  background: #AA4242;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 1px 10px;
}

.contact-wrap .dt .required {
  margin-left: 20px;
}
.contact-wrap .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .contact-wrap .row {
    display: block;
    margin-bottom: 20px;
  }
}
.contact-wrap .row .dt {
  width: 40%;
}
@media screen and (max-width: 900px) {
  .contact-wrap .row .dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
.contact-wrap .row .dd {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .contact-wrap .row .dd {
    width: 100%;
  }
}
.contact-wrap .textarea-row {
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}
@media screen and (min-width: 901px) {
  .contact-wrap .textarea-row .dt {
    padding-top: 10px;
  }
}
.contact-wrap textarea {
  resize: none;
  height: 150px;
}

.row-checkbox {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .row-checkbox {
    margin-bottom: 20px;
  }
}
.row-checkbox a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
}
.row-checkbox a:hover {
  opacity: 0.6;
}

.submit {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 900px) {
  .submit {
    margin-top: 50px;
  }
}
.submit .design {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  padding: 15px 80px;
  border-radius: 20px;
  border: 1px solid #1CB0E7;
  background: #1CB0E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
  display: inline-block;
  width: initial;
}
@media screen and (max-width: 900px) {
  .submit .design {
    padding: 15px 20px;
    width: 100%;
  }
}
.submit .design::after {
  position: absolute;
  top: 52%;
  content: "";
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: inline-block;
  width: 8px;
  height: 8px;
  right: 30px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  /* ← ここで角度変更！ */
}
.submit .design:hover {
  background: #fff;
  color: #1CB0E7;
}
.submit .design:hover::after {
  border-right: 1px solid #1CB0E7;
  border-bottom: 1px solid #1CB0E7;
}
@media screen and (max-width: 900px) {
  .submit .design {
    max-width: 385px;
    min-width: initial;
    font-size: 20px;
  }
}
.submit input {
  max-width: 300px;
  position: absolute;
  left: -1000%;
  opacity: 0;
}

.pagination {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination .prev {
  display: none;
}
.pagination .next {
  display: none;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 10px;
  margin: 0 5px;
  font-family: "futura-pt", sans-serif;
  -webkit-box-shadow: 0 2px 4px rgba(62, 62, 62, 0.2);
          box-shadow: 0 2px 4px rgba(62, 62, 62, 0.2);
  border-radius: 4px;
}
.pagination span {
  background: #1CB0E7;
  color: #fff;
}
.pagination a {
  border: 1px solid #1CB0E7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination a:hover {
  opacity: 0.6;
}

.single-section img {
  height: auto;
}