@charset "UTF-8";

/* reset */

html,
body,
div,
span,
iframe,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
em,
font,
img,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
label,
table,
caption,
tr,
td {
  text-align: left;
  line-height: 1;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 62px;
}

img,
video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  color: #333;
  font-size: 1.5rem;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo", sans-serif;
  line-height: 1.8;
}

h1 {
  font-weight: 500;
}
strong {
  font-weight: 500;
}

#inner {
  padding: 0 20px;
}

#title {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 60px 0 80px;
}

#title h1 {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.5;
  padding: 20px 0 0;
}

#title h2 {
  font-family: "Roboto";
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.15rem;
  color: #fff;
  padding: 0;
}

/*==================================================

レイアウト

==================================================*/

/* ヘッダー
--------------------------------------------------*/

.l-header {
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* pc */
@media print, only screen and (min-width: 768px) {
  .l-header {
    height: 80px;
  }
  .l-header_inner {
    max-width: 1110px;
    height: 80px;
    margin: 0 auto;
  }
  .l-header_logo {
    padding-top: 14px;
  }
  /* .l-header_logo img{ 8/18の元ロゴ用
		width: 130px;
		height: auto;
		margin-right: 15px;
	} */
  .l-header_logo img {
    width: 230px;
    height: auto;
    margin-right: 15px;
  }
}

/* sp */
@media screen and (max-width: 767px) {
  .l-header {
    height: 10.7vw;
    padding: 0 3vw;
  }
  .l-header_logo {
    padding-top: 2vw;
  }
  .l-header_logo img {
    width: 32vw;
    height: auto;
    margin-right: 0.6rem;
  }
  /* .l-header_logo img{ 8/18の元ロゴ用
		width: 17.3vw;
		height: auto;
		margin-right: 0.6rem;
	} */
}

/* フッター
--------------------------------------------------*/

.l-footer {
  border-top: 2px #000 solid;
}
.l-footer_copy {
  /* font-family: 'Univers LT Bold'; */
  font-weight: bold;
}

/* pc */
@media print, only screen and (min-width: 768px) {
  .l-footer {
    padding: 41px 15px;
  }
  .l-footer_copy {
    font-size: 18px;
    text-align: center;
  }
  .sp {
    display: none;
  }
}

/* sp */
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 2rem 2.5rem;
  }
  .l-footer_copy {
    font-size: 1.4rem;
    line-height: 1.36;
    text-align: center;
  }
  /* SPグローバルナビ */
  #navToggle {
    display: none;
  }
}

/* -----　お問い合わせ　-------------------------- */

#contact {
  text-align: center;
  margin: 100px 0 0;
  padding: 60px 0 20px;
  border-top: 1px solid #17bfac;
}

#contact h1 {
  color: #17bfac;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px;
}

#contact #inner > ul > li {
  text-align: center;
  line-height: 1.6;
  margin: 0 0 40px;
}

#contact #inner > ul > li:nth-child(1) {
  text-align: left;
}

#contact #inner > ul > li > ul > li {
  text-align: center;
  margin: 0 0 40px;
}

#contact #inner > ul > li ul li a,
#contact #inner > ul > li ul li .tel {
  color: #17bfac;
  font-family: "Roboto";
  font-size: 3.4rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.15rem;
  margin: 10px 0;
}

#contact #inner > ul > li ul.mailInq li {
  margin: 10px 0;
}

#contact #inner > ul > li ul.mailInq li a.btContact {
  display: block;
  position: relative;
  width: 310px;
  color: #fff;
  font-size: 1.5rem;
  margin: 10px auto 0;
  padding: 23px 0;
  background: #17bfac url(../../img/newFrame/arrow_w.svg) 95% 45% no-repeat;
}

#contact #inner > ul > li ul.mailInq li a.btContact::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}

#contact #inner > ul > li ul.mailInq li a.btContact:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

section {
  transition: 0.5s ease-in-out;
}
.useSP {
  display: block;
}
.usePC {
  display: none;
}

a {
  color: #0071e3;
  /*修正箇所  */
  /* display: block; */
}

/* pc */
/* ------------------------------------------------------------------pc min 768 */
@media print, only screen and (min-width: 768px) {
  /* アウトライン */

  #inner {
    max-width: 1280px;
    margin: 0 auto;
    min-width: 1100px;
    padding: 0;
  }

  #title {
    height: 400px;
    margin: 100px 0 200px;
  }

  #title h1 {
    font-size: 3.6rem;
    line-height: 2;
    padding: 140px 0 0 60px;
  }

  #title h2 {
    font-size: 2rem;
    padding: 0 0 0 60px;
  }

  #content {
    transition: unset;
  }

  /* -----お問い合わせ-------------------------- */

  #contact {
    margin: 210px 0 0;
    padding: 55px 0;
  }

  #contact #inner > ul {
    display: table;
    width: 880px;
    margin: 0 auto;
  }

  #contact #inner > ul > li {
    display: table-cell;
    text-align: left;
    padding: 0;
  }

  #contact #inner > ul > li:nth-child(1) {
    width: 360px;
    vertical-align: middle;
    padding: 0 60px 0 0;
  }

  #contact #inner > ul > li:nth-child(2) {
    width: 520px;
    vertical-align: top;
  }

  #contact #inner > ul > li h1 {
    font-size: 2.8rem;
    text-align: left;
  }

  #contact #inner > ul > li:nth-child(2) > ul {
    display: table;
    width: 520px;
  }

  #contact #inner > ul > li:nth-child(2) > ul > li {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    padding: 0;
  }

  #contact #inner > ul > li:nth-child(2) > ul:nth-child(1) {
    margin: 0 0 30px;
  }

  #contact #inner > ul > li:nth-child(2) > ul > li:nth-child(1) {
    width: 53.7%;
    padding: 0 7.4% 0 0;
  }

  #contact #inner > ul > li:nth-child(2) > ul > li:nth-child(2) {
    width: 46.3%;
  }

  #contact #inner > ul > li:nth-child(2) > ul.mailInq > li:nth-child(1) {
    width: 40.3%;
    vertical-align: middle;
    line-height: 1;
    padding: 10px 4.7% 10px 0;
  }

  #contact #inner > ul > li:nth-child(2) > ul.mailInq > li:nth-child(2) {
    width: 59.7%;
  }

  #contact #inner > ul > li ul li a,
  #contact #inner > ul > li ul li .tel {
    text-align: left;
  }

  #contact #inner > ul > li ul.mailInq li a.btContact {
    width: 97%;
    text-align: center;
    margin: 0;
    padding: 22px 4.6%;
  }

  section {
    transition: unset;
  }
  .useSP {
    display: none;
  }
  .usePC {
    display: block;
  }
}
