@charset "UTF-8";
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #454C50;
  line-height: 1.8;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  body {
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  width: 100%;
  height: auto;
}

.section__title {
  font-family: "Tahoma", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .section__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

.section {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 20px;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 40px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.button a {
  display: inline-block;
  width: 147px;
  height: 31px;
  line-height: 31px;
  background: #6E777C;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button a:hover {
  background: #FFFFFF;
  color: #6E777C;
  border: 1px solid #6E777C;
  border-radius: 30px;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

/*====================================
header
=====================================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  height: 75px;
  background: #454C50;
}

@media screen and (max-width: 767px) {
  .header {
    height: 57px;
  }
}

.header__inner {
  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__logo a {
  display: inline-block;
  width: 190px;
  height: 46px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  .header__logo a {
    width: 150px;
    padding: 10px 0;
  }
}

.header__logo a:hover {
  opacity: .7;
}

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

.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav__item:not(:first-child) {
  margin-left: 62px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__nav__item:not(:first-child) {
    margin-left: 42px;
  }
}

.header__nav__item a {
  display: inline-block;
  text-decoration: none;
  color: #FFFFFF;
  line-height: 75px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav__item a:after {
  content: "";
  width: 0;
  height: 2px;
  background: transparent;
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: 18px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav__item a:hover {
  opacity: .7;
}

.header__nav__item a:hover:after, .header__nav__item a.is-active:after {
  background: #FFFFFF;
  width: 100%;
}

/*====================================
hamburger menu
=====================================*/
.hamburger__icon {
  position: fixed;
  width: 26px;
  height: 20px;
  z-index: 200;
  top: 19px;
  right: 15px;
  display: none;
}

@media screen and (max-width: 767px) {
  .hamburger__icon {
    display: block;
  }
}

.hamburger__icon.is-click .hamburger__bar:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger__icon.is-click .hamburger__bar:nth-child(2) {
  display: none;
}

.hamburger__icon.is-click .hamburger__bar:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__bars {
  position: relative;
}

.hamburger__bar {
  width: 26px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 4px;
  position: absolute;
  left: 0;
}

.hamburger__bar:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hamburger__bar:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hamburger__bar:nth-child(3) {
  top: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hamburger__content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100vw;
  height: 100vh;
  background: rgba(69, 76, 80, 0.9);
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hamburger__content.is-click {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger__list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hamburger__list__item {
  text-align: center;
}

.hamburger__list__item:not(:first-child) {
  margin-top: 48px;
}

.hamburger__list__item a {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
}

/*====================================
top visual
=====================================*/
.top__visual-a {
  height: 725px;
  background: url(../img/top1.png) center center/cover;
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .top__visual-a {
    margin-top: 57px;
    background: url(../img/top1.png) -335px center/cover;
  }
}

.top__visual-b {
  height: 725px;
  background: url(../img/top2.png) center center/cover;
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .top__visual-b {
    margin-top: 57px;
  }
}

.top__visual-c {
  height: 725px;
  background: url(../img/top3.png) center center/cover;
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .top__visual-c {
    margin-top: 57px;
  }
}

.top__inner {
  position: relative;
}

.top__content {
  position: absolute;
  left: 0;
  top: 222px;
}

.top__title {
  font-size: 6rem;
  font-family: "Tahoma", sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__title {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .top__title {
    font-size: 3rem;
  }
}

.top__lead {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
  margin-top: 23px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__lead {
    font-size: 2.2rem;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .top__lead {
    font-size: 2rem;
  }
}

.top__button {
  margin-top: 64px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__button {
    margin-top: 44px;
  }
}

@media screen and (max-width: 767px) {
  .top__button {
    margin-top: 34px;
  }
}

/*====================================
swiper
=====================================*/
:root {
  --swiper-navigation-color: #ffffff;
  --swiper-pagination-color: #ffffff;
}

/*====================================
section about
=====================================*/
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .about__content {
    display: block;
  }
}

.about__img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

.about__img a {
  display: block;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

.about__img a:hover {
  opacity: .7;
}

.about__img a img {
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.about__img a img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about__body {
  width: 50%;
  padding: 33px 68px;
  border: 1px splid #707070;
  -webkit-box-shadow: 0 3px 6px #00000029;
          box-shadow: 0 3px 6px #00000029;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__body {
    padding: 12px;
  }
}

@media screen and (max-width: 767px) {
  .about__body {
    width: 100%;
    padding: 20px 6px;
  }
}

.about__body__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.18;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__body__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about__body__title {
    font-size: 2rem;
  }
}

.about__body__text {
  margin-top: 31px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__body__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .about__body__text {
    margin-top: 20px;
  }
}

.about__button {
  text-align: right;
  margin-top: 29px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__button {
    margin-top: 14px;
  }
}

/*====================================
section works
=====================================*/
.works__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .works__items {
    display: block;
  }
}

.works__item {
  width: calc(33.3333% - (60px / 3));
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works__item {
    width: calc(33.3333% - (40px / 3));
  }
}

.works__item:not(:first-child) {
  margin-left: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .works__item:not(:first-child) {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .works__item:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .works__item {
    width: 100%;
  }
}

.works__item a {
  display: inline-block;
  text-decoration: none;
  color: #454C50;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.works__item a:hover {
  opacity: .7;
}

.works__item__img {
  overflow: hidden;
}

.works__item__img img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.works__item__img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.works__item__title {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  margin-top: 25px;
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .works__item__title {
    margin-top: 12px;
  }
}

.works__button {
  margin-top: 45px;
  text-align: center;
}

/*====================================
section service
=====================================*/
.service__items {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .service__items {
    display: block;
  }
}

.service__item {
  width: calc(33.3333% - (40px / 3));
}

@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
}

.service__item:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .service__item:not(:first-child) {
    margin-left: 0;
    margin-top: 25px;
  }
}

.service__item a {
  display: inline-block;
  text-decoration: none;
  color: #454C50;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.service__item a:hover {
  opacity: .7;
}

.service__item__img {
  overflow: hidden;
}

.service__item__img img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.service__item__img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.service__item__body {
  padding: 20px 18px;
  border: 1px solid #707070;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .service__item__body {
    padding: 10px 13px;
  }
}

.service__item__title {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__item__title {
    font-size: 21px;
  }
}

@media screen and (max-width: 767px) {
  .service__item__title {
    font-size: 20px;
  }
}

.service__item__price {
  text-align: center;
  margin-top: 37px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__item__price {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .service__item__price {
    margin-top: 16px;
  }
}

.service__button {
  margin-top: 45px;
  text-align: center;
}

/*====================================
section news
=====================================*/
.news__items {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .news__items {
    display: block;
  }
}

.news__item {
  width: calc(25% - (90px / 4));
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .news__item {
    width: calc(25% - (45px / 4));
  }
}

@media screen and (max-width: 767px) {
  .news__item {
    width: 100%;
  }
}

.news__item:not(:first-child) {
  margin-left: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .news__item:not(:first-child) {
    margin-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .news__item:not(:first-child) {
    margin-left: 0;
    margin-top: 25px;
  }
}

.news__item a {
  display: inline-block;
  text-decoration: none;
  color: #454C50;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news__item a:hover {
  opacity: .7;
}

.news__item__img {
  overflow: hidden;
}

.news__item__img img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news__item__img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news__item__body {
  padding: 11px 8px;
}

.news__item__title {
  font-weight: bold;
}

.news__item__excerpt {
  font-size: 14px;
  line-height: 1.28571;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .news__item__excerpt {
    margin-top: 8px;
  }
}

.news__button {
  margin: 45px 0 53px;
  text-align: center;
}

/*====================================
footer
=====================================*/
.footer {
  background: #454C50;
  padding: 20px 0 23px 0;
  height: 289px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 10px 0 10px 0;
  }
}

.footer__inner {
  height: 100%;
}

.footer__content {
  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: 767px) {
  .footer__content {
    display: block;
  }
}

.footer__logo {
  width: 190px;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    width: 150px;
  }
}

.footer__logo a {
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__logo a:hover {
  opacity: .7;
}

.footer__nav {
  margin-top: 46px;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav__list {
    text-align-last: left;
  }
}

.footer__nav__item {
  margin-top: 11px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__nav__item {
    margin-top: 20px;
  }
}

.footer__nav__item a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  line-height: 1.1875;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__nav__item a:hover {
  opacity: .7;
}

.footer__sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer__sns__list {
    margin-top: 20px;
  }
}

.footer__sns__item {
  width: 50px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 9px;
}

@media screen and (max-width: 767px) {
  .footer__sns__item {
    width: 40px;
    height: 40px;
    padding: 4px;
  }
}

.footer__sns__item:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .footer__sns__item:not(:first-child) {
    margin-left: 10px;
  }
}

.footer__sns__item a {
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__sns__item a:hover {
  opacity: .7;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.footer__copyright {
  color: #FFFFFF;
  font-size: 12px;
  margin-top: 25px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 3px;
  }
}

.to-top {
  position: fixed;
  right: 40px;
  bottom: 50px;
  z-index: 110;
  width: 50px;
  height: 50px;
  background: #6E777C;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .to-top {
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .to-top {
    right: 15px;
    bottom: 36px;
    width: 40px;
    height: 40px;
  }
}

.to-top a {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}

.to-top a img {
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.to-top a img:hover {
  opacity: .7;
}

/*====================================
about page
=====================================*/
/*----------------
about
-------------------*/
.about__page {
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .about__page {
    margin-top: 57px;
  }
}

.about__page__bg__top {
  height: 516px;
  background: url(../img/about-bg1.png) no-repeat center 0px/cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  .about__page__bg__top {
    background: url(../img/about-bg1.png) no-repeat -750px 0px/cover;
  }
}

.about__page__content {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .about__page__content {
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}

.about__page__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about__page__title {
    font-size: 28px;
    margin-top: 25px;
  }
}

.about__page__lead {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 36px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about__page__lead {
    font-size: 16px;
    margin-top: 20px;
  }
}

.about__page__text {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 19px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about__page__text {
    font-size: 16px;
  }
}

.about__page__bg__wrapper {
  height: 650px;
  width: 100%;
}

.about__page__bg__center {
  width: 100%;
  height: 650px;
  background: url(../img/about-bg2.png) no-repeat center center/cover;
  background-attachment: fixed;
}

@media screen and (max-width: 767px) {
  .about__page__bg__center {
    background: url(../img/about-bg2.png) no-repeat -554px center/cover;
  }
}

.about__page__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .about__page__items {
    display: block;
  }
}

.about__page__item {
  width: 33.3333%;
}

@media screen and (max-width: 767px) {
  .about__page__item {
    width: 100%;
  }
}

.about__page__img {
  height: 100%;
}

.about__page__img img {
  height: 100%;
}

/*----------------
company
-------------------*/
.company__head {
  text-align: center;
}

.company__content {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 50px;
}

.company__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 28px;
  border-top: 1px solid #707070;
}

.company__info:nth-child(4) {
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .company__info {
    padding: 17px 18px;
  }
}

.company__info__head {
  font-weight: bold;
  width: 30%;
}

.company__info__body {
  font-weight: bold;
  width: 70%;
}

/*====================================
service page
=====================================*/
/*----------------
service
-------------------*/
.service__page {
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .service__page {
    margin-top: 57px;
  }
}

.service__page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service__page__item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .service__page__item {
    display: block;
  }
}

.service__page__img {
  width: 50%;
}

.service__page__img img {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .service__page__img {
    width: 100%;
  }
}

.service__page__item__body {
  width: 50%;
  border: 1px solid #707070;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 27px 68px 25px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__page__item__body {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .service__page__item__body {
    width: 100%;
    padding: 10px 11px 10px;
  }
}

.service__page__item__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.1818;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__page__item__title {
    font-size: 20px;
  }
}

.service__page__item__text {
  margin-top: 14px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__page__item__text {
    font-size: 14px;
    margin-top: 8px;
  }
}

.service__page__price {
  margin-top: 21px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__page__price {
    margin-top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .service__page__price {
    margin-top: 10px;
  }
}

/*----------------
reason
-------------------*/
.reason__head {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .reason__head {
    font-size: 21px;
  }
}

.reason__items {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.reason__item:not(:first-child) {
  margin-top: 28px;
}

.reason__item:nth-child(1) > .reason__title {
  background: #6E777C;
  padding: 18px 0;
  font-weight: bold;
  font-size: 2.4rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.reason__item:nth-child(1) > .reason__title::after {
  content: "01";
  display: inline-block;
  width: 60px;
  background: #454C50;
  padding: 18px 0;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .reason__item:nth-child(1) > .reason__title::after {
    font-size: 16px;
    width: 30px;
  }
}

@media screen and (max-width: 767px) {
  .reason__item:nth-child(1) > .reason__title {
    font-size: 16px;
  }
}

.reason__item:nth-child(2) > .reason__title {
  background: #6E777C;
  padding: 18px 0;
  font-weight: bold;
  font-size: 2.4rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.reason__item:nth-child(2) > .reason__title::after {
  content: "02";
  display: inline-block;
  width: 60px;
  background: #454C50;
  padding: 18px 0;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .reason__item:nth-child(2) > .reason__title::after {
    font-size: 16px;
    width: 30px;
  }
}

@media screen and (max-width: 767px) {
  .reason__item:nth-child(2) > .reason__title {
    font-size: 16px;
  }
}

.reason__item:nth-child(3) > .reason__title {
  background: #6E777C;
  padding: 18px 0;
  font-weight: bold;
  font-size: 2.4rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.reason__item:nth-child(3) > .reason__title::after {
  content: "03";
  display: inline-block;
  width: 60px;
  background: #454C50;
  padding: 18px 0;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .reason__item:nth-child(3) > .reason__title::after {
    font-size: 16px;
    width: 30px;
  }
}

@media screen and (max-width: 767px) {
  .reason__item:nth-child(3) > .reason__title {
    font-size: 16px;
  }
}

.reason__title {
  cursor: pointer;
}

.reason__icon {
  position: absolute;
  top: 24px;
  right: 16px;
  width: 20px;
  height: 20px;
  background: transparent;
}

.reason__icon.is-open .reason__icon__bar:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .reason__icon {
    top: 17px;
    right: 8px;
  }
}

.reason__icon__bars {
  position: relative;
}

.reason__icon__bar:nth-child(1) {
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 4px;
  background: #FFFFFF;
}

.reason__icon__bar:nth-child(2) {
  position: absolute;
  top: 0;
  left: 8px;
  width: 4px;
  height: 20px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reason__text {
  border: 1px solid #707070;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 33px 166px 17px;
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .reason__text {
    padding: 17px 33px;
  }
}

@media screen and (max-width: 767px) {
  .reason__text {
    padding: 10px;
  }
  .reason__text br {
    display: none;
  }
}

.reason__button {
  margin: 41px 0;
  text-align: center;
}

/*====================================
works page
=====================================*/
.works__page {
  margin: 75px 0 67px;
}

.works__page__items {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  row-gap: 20px;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.works__page__item a {
  display: inline-block;
  text-decoration: none;
  color: #454C50;
  font-size: 2rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.works__page__item a:hover {
  opacity: .7;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.works__page__title {
  text-align: center;
  line-height: 1.45;
  margin-top: 16px;
}

/*====================================
contact page
=====================================*/
.contact {
  margin: 75px 0 70px;
}

@media screen and (max-width: 767px) {
  .contact {
    margin: 57px 0;
  }
}

.contact__content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.contact__message__first {
  font-weight: bold;
  line-height: 1.625;
}

.contact__message__second {
  font-weight: bold;
  line-height: 1.625;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .contact__message__second {
    margin-top: 15px;
  }
}

.contact__message__tel {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.625;
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact__message__tel {
    margin-top: 15px;
    font-size: 22px;
  }
}

.contact__list {
  margin-top: 59px;
}

@media screen and (max-width: 767px) {
  .contact__list {
    margin-top: 30px;
  }
}

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__row:not(:first-child) {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .contact__row {
    display: block;
  }
}

.contact__row dt {
  width: 33.3333%;
  font-weight: bold;
  line-height: 1.625;
}

@media screen and (max-width: 767px) {
  .contact__row dt {
    width: 100%;
  }
}

.contact__row dt label:after {
  content: "【必須】";
  display: inline-block;
  color: #F30C43;
  font-size: 14px;
  line-height: 1.5714;
  width: 58px;
  text-align: center;
}

.contact__row dd {
  width: 66.6666%;
}

@media screen and (max-width: 767px) {
  .contact__row dd {
    width: 100%;
    margin-top: 10px;
  }
}

.contact__row [type="text"],
.contact__row [type="email"],
.contact__row [type="tel"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 7px;
  width: 100%;
  height: 46px;
  background: #F5F5F5;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.contact__row textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 7px;
  width: 100%;
  height: 100px;
  background: #F5F5F5;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.submit__button {
  text-align: center;
  margin-top: 56px;
}

.submit__button [type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline-block;
  width: 147px;
  height: 31px;
  line-height: 31px;
  background: #6E777C;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.submit__button [type="submit"]:hover {
  background: #FFFFFF;
  color: #6E777C;
  border: 1px solid #6E777C;
  border-radius: 30px;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

@media screen and (max-width: 767px) {
  .submit__button {
    margin-top: 28px;
  }
}
